UNPKG

@bebapps/rapyd-sdk

Version:

An un-official [Rapyd](https://rapyd.net) SDK for Node.js.

31 lines (30 loc) 829 B
export interface ListInvoicesRequest { /** * The ID of the invoice created before the first invoice you want to retrieve. */ starting_after?: string; /** * The ID of the invoice created after the last invoice you want to retrieve. */ ending_before?: string; /** * The maximum number of invoices to return. Range: 1-100. Default is 10. */ limit?: string; /** * ID of the customer. */ customer?: string; /** * Date that the invoice was created. */ date?: string; /** * The date payment is due on this invoice. This value is calculated from the date the invoice is created, plus the number of days specified in the `days_until_due` field. Format is in [*Unix time*](ref:glossary). */ due_date?: number; /** * ID of the subscription. */ subscription?: string; };