sc-cobre-facil
Version:
Biblioteca TypeScript para consumir a API da Cobre Fácil
17 lines • 677 B
TypeScript
/**
* Parameters for listing product services.
*
* @property status - Filter by status. Can be "actived" or "inactived".
* @property sort_by - Field to be used for sorting. Defaults to "created_at".
* @property order_by - Defines the sorting order. Can be "asc" or "desc". Defaults to "desc".
* @property limit - Maximum number of records to retrieve. Defaults to 100.
* @property offset - Number of records to skip. Defaults to 0.
*/
export interface ListProductServicesParams {
status?: "actived" | "inactived";
sort_by?: string;
order_by?: "asc" | "desc";
limit?: number;
offset?: number;
}
//# sourceMappingURL=ListProductServicesParams.d.ts.map