UNPKG

@bebapps/rapyd-sdk

Version:

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

43 lines (42 loc) 1.51 kB
export interface ListPayoutsRequest { /** * Filters according to the beneficiary ID. String starting with **beneficiary_**. */ beneficiary?: `beneficiary_${string}`; /** * The ID of a payout in the list. The list ends with the payout that was created before the payout with this ID. Use this filter to get the previous page of results. String starting with **payout_**. */ ending_before?: `payout_${string}`; /** * Filters according to the wallet ID. String starting with **ewallet_**. */ ewallet?: `ewallet_${string}`; /** * Filters according to the invoice. String starting with **invoice_**. */ invoice?: `invoice_${string}`; /** * The maximum number of payouts to return. Range: 1-100. Default is 10. */ limit?: string; /** * Filters according to the merchant reference ID. */ merchant_reference_id?: string; /** * Filters according to the type of payout method. */ payout_method_type?: string; /** * Filters according to the sender ID. String starting with **sender_**. */ sender?: `sender_${string}`; /** * The ID of a payout in the list. The list begins with the payout that was created next after the payout with this ID. Use this filter to get the next page of results. Relevant when `ending_before` is not used. String starting with **payout_**. */ starting_after?: `payout_${string}`; /** * Filters according to the subscription ID. String starting with **sub_**. */ subscription?: `sub_${string}`; };