/** * TTLock * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v3.1.9 * * * 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 PagedResponse */ export interface PagedResponse { /** * * @type {number} * @memberof PagedResponse */ pageNo: number; /** * * @type {number} * @memberof PagedResponse */ pageSize: number; /** * * @type {number} * @memberof PagedResponse */ total: number; } /** * Check if a given object implements the PagedResponse interface. */ export declare function instanceOfPagedResponse(value: object): boolean; export declare function PagedResponseFromJSON(json: any): PagedResponse; export declare function PagedResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PagedResponse; export declare function PagedResponseToJSON(value?: PagedResponse | null): any; //# sourceMappingURL=PagedResponse.d.ts.map