@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
27 lines (26 loc) • 606 B
text/typescript
export interface ListInvoiceItemsRequest {
/**
* Date of creation of the invoice items.
*/
created?: string;
/**
* ID of the customer.
*/
customer?: string;
/**
* The ID of the invoice item created after the last invoice item you want to retrieve.
*/
ending_before?: string;
/**
* ID of the invoice.
*/
invoice?: string;
/**
* The maximum number of invoice items to return. Range: 1-100. Default is 10.
*/
limit?: string;
/**
* The ID of the invoice item created before the first invoice item you want to retrieve.
*/
starting_after?: string;
};