/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface Pagination */ export interface Pagination { /** * Index start from 1, let null to get all * @type {number} * @memberof Pagination */ page?: number; /** * Default 20, let it null if no pagination * @type {number} * @memberof Pagination */ limit?: number; } /** * Check if a given object implements the Pagination interface. */ export declare function instanceOfPagination(value: object): boolean; export declare function PaginationFromJSON(json: any): Pagination; export declare function PaginationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Pagination; export declare function PaginationToJSON(value?: Pagination | null): any;