@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
55 lines (54 loc) • 1.31 kB
text/typescript
export interface UpdateAddressRequest {
/**
* ID of the 'address' object. String starting with **address_**.
*/
address: `address_${string}`;
/**
* 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 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;
/**
* The 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.
*/
phone_number?: string;
/**
* A JSON object defined by the client.
*/
metadata?: object;
};