PaginatedQueryResult

Next Link

Previous Link

interface PaginatedQueryResult<T> {
    @nextLink: string;
    @previousLink: string;
    count: number;
    total: number;
    value: T[];
}

Type Parameters

  • T

Properties

@nextLink: string
@previousLink: string
count: number
total: number
value: T[]

Generated using TypeDoc