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