@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
39 lines (38 loc) • 779 B
TypeScript
/**
* @export
* @class PaginationResponse
*/
export declare class PaginationResponse<T> {
/**
* @type {number}
* @memberof PaginationResponse
*/
totalCount?: number;
/**
* @type {number}
* @memberof PaginationResponse
*/
offset?: number;
/**
* @type {number}
* @memberof PaginationResponse
*/
limit?: number;
/**
* @type {string}
* @memberof PaginationResponse
*/
previous?: string;
/**
* @type {string}
* @memberof PaginationResponse
*/
next?: string;
/**
* @type {T[]}
* @memberof PaginationResponse
*/
items?: T[];
constructor(obj?: Partial<PaginationResponse<T>>, type?: new (obj: any) => T);
}
export default PaginationResponse;