TravelAgentPhone

Structure

FieldTypeRequiredDescription
idIntegertrueUnique identifier for the

CompanyPhone.

primaryBooleanfalseSets if it is primary or not.

phoneLocationType

PhoneLocationTypetrueGives more information about that phone
phoneTechTypePhoneTechTypetrueGives more information about that phone

countryAccessCode

StringfalseThe code used in a country to access a phone number.

areaCityCode

StringfalseThe code used in a city to access a phone number.

phoneNumber

StringtrueThe phone number itself.

extension

StringfalseExtension of the number.
remarkStringfalsePossible remarks about this phone.

JSON representation

{
	"id": 1,
	"primary": true,
	"phoneLocationType": {
         "id": 1,
         "code": "1",
         "name": "Brand reservations office"
	},
	"phoneTechType": {
         "id": 1,
         "code": "1",
         "name": "Voice"
     },
	"countryAccessCode": "+34",
	"areaCityCode": null,
	"phoneNumber": "93345768",
	"extension": null,
	"remark": null
}