UNPKG

@bebapps/rapyd-sdk

Version:

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

15 lines (14 loc) 369 B
export interface ListPlansRequest { /** * The ID of the plan created after the last plan you want to retrieve. */ ending_before?: string; /** * The maximum number of plans to return. Range: 1-100. Default is 10. */ limit?: string; /** * The ID of the plan created before the first plan you want to retrieve. */ starting_after?: string; };