/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 TenantsMetaPageSchema */ export interface TenantsMetaPageSchema { /** * Legacy alias for nextCursor. New clients should use nextCursor; this field is kept so existing callers don't break. * @type {string} * @memberof TenantsMetaPageSchema */ cursor?: string | null; /** * Opaque cursor for the next page. Pass verbatim as the pageAfter query param. Null on the last page. Equivalent to the cursor embedded in links.next. * @type {string} * @memberof TenantsMetaPageSchema */ nextCursor?: string | null; /** * Opaque cursor for the previous page. Pass verbatim as the pageBefore query param. Null on the first page. Equivalent to the cursor embedded in links.prev. * @type {string} * @memberof TenantsMetaPageSchema */ prevCursor?: string | null; /** * * @type {number} * @memberof TenantsMetaPageSchema */ size?: number; /** * * @type {number} * @memberof TenantsMetaPageSchema */ number?: number; /** * * @type {number} * @memberof TenantsMetaPageSchema */ totalItems?: number; /** * When true, totalItems was capped (the real count is at least totalItems but could be higher). Frontends should render `+` instead of an exact number. Cap is configured per resource type and exists to bound the cost of the count query on large folders. * @type {boolean} * @memberof TenantsMetaPageSchema */ totalItemsCapped?: boolean; /** * * @type {number} * @memberof TenantsMetaPageSchema */ totalPages?: number; } /** * Check if a given object implements the TenantsMetaPageSchema interface. */ export declare function instanceOfTenantsMetaPageSchema(value: object): value is TenantsMetaPageSchema; export declare function TenantsMetaPageSchemaFromJSON(json: any): TenantsMetaPageSchema; export declare function TenantsMetaPageSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantsMetaPageSchema; export declare function TenantsMetaPageSchemaToJSON(json: any): TenantsMetaPageSchema; export declare function TenantsMetaPageSchemaToJSONTyped(value?: TenantsMetaPageSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantsMetaPageSchema.d.ts.map