/** * Billingual API * REST API for invoice management, customer management, and accounting operations. Features include cursor-based pagination for efficient data navigation, flexible JSON querying with MongoDB-style operators, full-text search across multiple fields, and comprehensive metadata support for custom tracking. * * The version of the OpenAPI document: 1.0.0 * Contact: api@billingual.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Pagination metadata including cursors and result counts * @export * @interface PaginationMetadata */ export interface PaginationMetadata { /** * Total number of items available in the collection * @type {number} * @memberof PaginationMetadata */ total: number; /** * Cursor for fetching the next page. Null if no more results available. * @type {string} * @memberof PaginationMetadata */ next_cursor: string | null; /** * Cursor for fetching the previous page. Null if at the first page. * @type {string} * @memberof PaginationMetadata */ prev_cursor: string | null; /** * Indicates whether more results are available after the current page * @type {boolean} * @memberof PaginationMetadata */ has_more: boolean; } /** * Check if a given object implements the PaginationMetadata interface. */ export declare function instanceOfPaginationMetadata(value: object): value is PaginationMetadata; export declare function PaginationMetadataFromJSON(json: any): PaginationMetadata; export declare function PaginationMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginationMetadata; export declare function PaginationMetadataToJSON(value?: PaginationMetadata | null): any; //# sourceMappingURL=PaginationMetadata.d.ts.map