/** * Generated by orval v8.5.3 🍺 * Do not edit manually. * Space Invoices 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. * OpenAPI spec version: 1.0.0 */ /** * Pagination metadata including cursors and result counts */ export interface PaginationMetadata { /** Total number of items available in the collection */ total: number; /** * Opaque cursor for fetching the next page. It encodes the resolved sort tuple for the current result set, so reuse it only with the same effective ordering. Null if no more results are available. * @nullable */ next_cursor: string | null; /** * Opaque cursor for fetching the previous page. It encodes the resolved sort tuple for the current result set, so reuse it only with the same effective ordering. Null if at the first page. * @nullable */ prev_cursor: string | null; /** Indicates whether more results are available after the current page */ has_more: boolean; } //# sourceMappingURL=paginationMetadata.d.ts.map