UNPKG

sc-cobre-facil

Version:

Biblioteca TypeScript para consumir a API da Cobre Fácil

16 lines 675 B
/** * Parameters for listing plans with optional filtering, sorting, and pagination. * @property {string} [status] - Filter by plan status (e.g., 'actived', 'paused'). * @property {string} [sort_by] - Field to sort by (default is 'created_at'). * @property {'asc' | 'desc'} [order_by] - Sort order (default is 'desc'). * @property {number} [limit] - Maximum number of records (default is 100). * @property {number} [offset] - Number of records to skip (default is 0). */ export interface ListPlansParams { status?: string; sort_by?: string; order_by?: "asc" | "desc"; limit?: number; offset?: number; } //# sourceMappingURL=ListPlansParams.d.ts.map