A set of repositories returned from the source provider.

interface SourceRepositories {
    continuationToken?: string;
    pageLength?: number;
    repositories?: SourceRepository[];
    totalPageCount?: number;
}

Properties

continuationToken?: string

A token used to continue this paged request; 'null' if the request is complete

pageLength?: number

The number of repositories requested for each page

repositories?: SourceRepository[]

A list of repositories

totalPageCount?: number

The total number of pages, or '-1' if unknown