wallee
Version:
TypeScript/JavaScript client for wallee
75 lines (74 loc) • 1.68 kB
TypeScript
declare class SpaceAddress {
/**
* The city, town or village.
*/
'city'?: string;
/**
* The two-letter country code (ISO 3166 format).
*/
'country'?: string;
/**
* The dependent locality which is a sub-division of the state.
*/
'dependentLocality'?: string;
/**
* The email address used for communication with clients.
*/
'emailAddress'?: string;
/**
* The family or last name.
*/
'familyName'?: string;
/**
* The given or first name.
*/
'givenName'?: string;
/**
* The phone number of a mobile phone.
*/
'mobilePhoneNumber'?: string;
/**
* The organization's name.
*/
'organizationName'?: string;
/**
* The phone number.
*/
'phoneNumber'?: string;
/**
* The name of the region, typically a state, county, province or prefecture.
*/
'postalState'?: string;
/**
* The postal code, also known as ZIP, postcode, etc.
*/
'postcode'?: string;
/**
* The sales tax number of the organization.
*/
'salesTaxNumber'?: string;
/**
* The salutation e.g. Mrs, Mr, Dr.
*/
'salutation'?: string;
/**
* The sorting code identifying the post office where the PO Box is located.
*/
'sortingCode'?: string;
/**
* The street or PO Box.
*/
'street'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { SpaceAddress };