export interface ListOrdersRequest { /** * The ID of the order created after the last order you want to retrieve. */ ending_before?: string; /** * The maximum number of orders to return. Range: 1-100. Default is 10. */ limit?: string; /** * The ID of the order created before the first order you want to retrieve. */ starting_after?: string; } //# sourceMappingURL=ListOrdersRequest.d.ts.map