/** * 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 ResourcesMetaPageSchema */ export interface ResourcesMetaPageSchema { /** * Legacy alias for nextCursor. New clients should use nextCursor; this field is kept so existing callers don't break. * @type {string} * @memberof ResourcesMetaPageSchema */ 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 ResourcesMetaPageSchema */ 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 ResourcesMetaPageSchema */ prevCursor?: string | null; /** * * @type {number} * @memberof ResourcesMetaPageSchema */ size?: number; /** * * @type {number} * @memberof ResourcesMetaPageSchema */ number?: number; /** * * @type {number} * @memberof ResourcesMetaPageSchema */ 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 ResourcesMetaPageSchema */ totalItemsCapped?: boolean; /** * * @type {number} * @memberof ResourcesMetaPageSchema */ totalPages?: number; } /** * Check if a given object implements the ResourcesMetaPageSchema interface. */ export declare function instanceOfResourcesMetaPageSchema(value: object): value is ResourcesMetaPageSchema; export declare function ResourcesMetaPageSchemaFromJSON(json: any): ResourcesMetaPageSchema; export declare function ResourcesMetaPageSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourcesMetaPageSchema; export declare function ResourcesMetaPageSchemaToJSON(json: any): ResourcesMetaPageSchema; export declare function ResourcesMetaPageSchemaToJSONTyped(value?: ResourcesMetaPageSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ResourcesMetaPageSchema.d.ts.map