Alokai

Address

Address object Address

export interface Address {
	'cellphone'?: string;
	'city'?: City;
	'cityDistrict'?: District;
	'companyName'?: string;
	'country'?: Country;
	'defaultAddress'?: boolean;
	'district'?: string;
	'email'?: string;
	'firstName': string;
	'formattedAddress'?: string;
	'id'?: string;
	'lastName': string;
	'line1': string;
	'line2'?: string;
	'phone'?: string;
	'postalCode': string;
	'region'?: Region;
	'shippingAddress'?: boolean;
	'title'?: string;
	'titleCode': string;
	'town': string;
	'visibleInAddressBook'?: boolean;
}

Properties

NameRequiredTypeDescription
cellphoneOptionalstringCellphone number {string} Address
cityOptionalCity{City} Address
cityDistrictOptionalDistrict{District} Address
companyNameOptionalstringCompany Name {string} Address
countryOptionalCountry{Country} Address
defaultAddressOptionalbooleanBoolean flag if address is default {boolean} Address
districtOptionalstringDistrict name {string} Address
emailOptionalstringEmail address {string} Address
firstNameRequiredstringFirst name of the address person {string} Address
formattedAddressOptionalstringBoolean flag if address is formatted {string} Address
idOptionalstringUnique id value of the address which is optional while creating new address. While performing other address operations this value is the key {string} Address
lastNameRequiredstringLast name of the address person {string} Address
line1RequiredstringFirst line of the address {string} Address
line2OptionalstringSecond line of the address {string} Address
phoneOptionalstringPhone number {string} Address
postalCodeRequiredstringPostal code of the address {string} Address
regionOptionalRegion{Region} Address
shippingAddressOptionalbooleanBoolean flag if address is for shipping {boolean} Address
titleOptionalstringTitle of the address person {string} Address
titleCodeRequiredstringCode of the title {string} Address
townRequiredstringTown, field required {string} Address
visibleInAddressBookOptionalbooleanBoolean flag if address is visible in the Address Book {boolean} Address

Referenced Types

On this page