@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
51 lines (50 loc) • 1.22 kB
text/typescript
export interface CreateAddressRequest {
/**
* The name of a contact person or an "in care of" person at this address.
*/
name: string;
/**
* Line 1 of the address, such as a building number and street name.
*/
line_1: string;
/**
* Line 2 of the address, such as a suite or apartment number, or the name of a named building.
*/
line_2?: string;
/**
* Line 3 of the address.
*/
line_3?: string;
/**
* City name portion of the address. Required for issuance of a card to an eWallet contact.
*/
city?: string;
/**
* Name of the district administrative subdivision, as used in banking.
*/
district?: string;
/**
* Name of the canton administrative subdivision, as used in banking.
*/
canton?: string;
/**
* State or province portion of the address.
*/
state?: string;
/**
* Two-letter ISO 3166-1 ALPHA-2 code for the country. Uppercase.
*/
country?: string;
/**
* Postal code portion of the address.
*/
zip?: string;
/**
* Phone number associated with this specific address in E.164 format. Must be unique.
*/
phone_number?: string;
/**
* A JSON object defined by the client.
*/
metadata?: object;
};