@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
27 lines (26 loc) • 860 B
text/typescript
export interface ValidateBeneficiaryRequest {
/**
* Maximum payout amount to validate, in units of the currency defined in `sender_currency`. Decimal.
*/
amount: number;
/**
* String starting with **beneficiary_** or the object describing the beneficiary.
*/
beneficiary: `beneficiary_${string}`;
/**
* The `type` of the payout method. Set to value included in response to [List Payout Method Types](ref:list-payout-method-types).
*/
payout_method_type: string;
/**
* Country of the sender. Two-letter ISO 3166-1 ALPHA-2 code. Uppercase.
*/
sender_country: string;
/**
* Currency that the sender is paying with. Three-letter ISO 4217 code. Uppercase.
*/
sender_currency: string;
/**
* Type of entity for the sender. One of the following: **individual**, **company**
*/
sender_entity_type: string;
};