Contract encapsulating parameters for the pages batch.

interface WikiPagesBatchRequest {
    continuationToken?: string;
    pageViewsForDays?: number;
    top?: number;
}

Properties

continuationToken?: string

If the list of page data returned is not complete, a continuation token to query next batch of pages is included in the response header as "x-ms-continuationtoken". Omit this parameter to get the first batch of Wiki Page Data.

pageViewsForDays?: number

last N days from the current day for which page views is to be returned. It's inclusive of current day.

top?: number

Total count of pages on a wiki to return.