/** * 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 */ export type GetWebhooksParams = { /** * Number of results per request. * @minimum 1 * @maximum 100 */ limit?: number; /** * Opaque cursor to fetch the next page of results. Reuse only with the same effective ordering. Use the value from pagination.next_cursor in the previous response. */ next_cursor?: string; /** * Opaque cursor to fetch the previous page of results. Reuse only with the same effective ordering. Use the value from pagination.prev_cursor in the previous response. */ prev_cursor?: string; /** * Whether to include the total count of items in `pagination.total`. Default is `true`. When `false`, `pagination.total` returns -1 for better performance. */ include_total_count?: boolean; }; //# sourceMappingURL=getWebhooksParams.d.ts.map