UNPKG

@bebapps/rapyd-sdk

Version:

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

27 lines (26 loc) 965 B
export interface ListSubscriptionsRequest { /** * Method of billing. One of the following: **pay_automatically**, **send_invoice**. */ billing?: string; /** * ID of the customer. String starting with **cus_**. */ customer?: `cus_${string}`; /** * The ID of a record in the list. The list ends with the last record that was created before the record with this ID. Use this filter to get the previous page of results. */ ending_before?: string; /** * The maximum number of subscriptions to return. Range: 1-100. Default is 10. */ limit?: string; /** * The ID of a record in the list. The list begins with the record that was created next after the record with this ID. Use this filter to get the next page of results. Relevant when `ending_before` is not used. */ starting_after?: string; /** * Status of the subscription. One of the following: **active**, **canceled**, **trialing** */ status?: string; };