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