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; } //# sourceMappingURL=ListUsageRecordsRequest.d.ts.map