new module:model/AddressInformation()
- Source:
Constructs a new AddressInformation
.
Contains address information.
Members
(inner) address1 :String
- Source:
First Line of the address. Maximum length: 100 characters.
Type:
- String
(inner) address2 :String
- Source:
Second Line of the address. Maximum length: 100 characters.
Type:
- String
(inner) city :String
- Source:
The city associated with the address.
Type:
- String
(inner) country :String
- Source:
Specifies the country associated with the address.
Type:
- String
(inner) fax :String
- Source:
A Fax number associated with the address if one is available.
Type:
- String
(inner) phone :String
- Source:
A phone number associated with the address.
Type:
- String
(inner) postalCode :String
- Source:
Type:
- String
(inner) stateOrProvince :String
- Source:
Type:
- String
(inner) zipPlus4 :String
- Source:
Type:
- String
Methods
(static) constructFromObject(data, obj) → {module:model/AddressInformation}
- Source:
Constructs a AddressInformation
from a plain JavaScript object, optionally creating a new instance.
Copies all relevant properties from data
to obj
if supplied or a new instance if not.
Parameters:
Name | Type | Description |
---|---|---|
data |
Object | The plain JavaScript object bearing properties of interest. |
obj |
module:model/AddressInformation | Optional instance to populate. |
Returns:
The populated AddressInformation
instance.