UNPKG

@bebapps/rapyd-sdk

Version:

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

35 lines (34 loc) 943 B
export interface CreateSenderRequest { /** * Name of the sender company. Relevant when `entity_type` is **company**. */ company_name?: string; /** * Country of the sender. Two-letter ISO 3166-1 ALPHA-2 code. Uppercase. */ country: string; /** * Currency that the sender is paying with. Three-letter ISO 4217 code. Uppercase. */ currency: string; /** * Type of entity for the sender. One of the following: **individual**, **company** */ entity_type: string; /** * First name of the sender. Relevant when `entity_type` is **individual**. */ first_name?: string; /** * Type of identification document for the sender. */ identification_type: string; /** * Identification number on the document mentioned in `identification_type`. */ identification_value: string; /** * Last name of the sender. Relevant when `entity_type` is **individual**. */ last_name?: string; };