@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
19 lines (18 loc) • 567 B
text/typescript
export interface ListUsageRecordsRequest {
/**
* ID of the subscription item. String starting with **subi_**.
*/
subscription_item: `subi_${string}`;
/**
* The maximum number of usage records that are returned. Range: 1-100. Default is 10.
*/
limit?: number;
/**
* The latest date and time of the returned usage records. Format is in [*Unix time*](ref:glossary).
*/
ending_before?: number;
/**
* The earliest date and time of the returned usage records. Format is in [*Unix time*](ref:glossary).
*/
starting_after?: number;
};