Java class for Contact complex type.
| name | data type | description |
|---|---|---|
| address | string | Address. |
| city | string | City. |
| contactTimeFrom | string | Contect time from. |
| contactTimeTo | string | Contact time to. |
| contactType | string | Contact type. |
| country | string | Country. |
| emailAddress | string | Email address. |
| firstName | string | First name. |
| lastName | string | Last name. |
| phone | array of Phone | |
| preferredLanguage | string | Preferred language. |
| stateOrProvince | string | State or province information. |
| title | string | Title. |
| zipOrPostalCode | string | Zip or postal code. |
Example
{
"contact" : {
"address" : "...",
"city" : "...",
"contactTimeFrom" : "...",
"contactTimeTo" : "...",
"contactType" : "...",
"country" : "...",
"emailAddress" : "...",
"firstName" : "...",
"lastName" : "...",
"phone" : [ {
"phoneType" : "...",
"phoneNumber" : "..."
}, {
"phoneType" : "...",
"phoneNumber" : "..."
} ],
"preferredLanguage" : "...",
"stateOrProvince" : "...",
"title" : "...",
"zipOrPostalCode" : "..."
}
}