ReservationHolder
Structure
Field | Type | Required | Description |
---|---|---|---|
id | int | false | Reservation Holder Id. |
profileId | int | false | Profile Id. |
documentNumber | int | false | Document (Id, Passport...) number. |
prefixName | string | false | Prefix name of the holder. |
givenName | string | false | Name of the holder. |
secondSurName | string | false | Second surname of the holder. |
surName | string | false | Surname of the holder. |
street | string | false | Street of the address of the holder. |
city | string | false | City of the holder. |
stateProvName | string | false | Name of the stateProv. |
stateProvCode | String | false | Code of the stateProv. ISO 3166-2 |
postalCode | string | false | Postal code of the address of the holder. |
countryCode | String | false | Country of the address of the holder. ISO 3166-1 alpha-2 |
string | false | Email of the holder. | |
phoneNumber | string | false | Telephone number to contact the holder. |
language | Language | false | Language that is used by the holder. |
documentType | DocumentType | false | Type of document that the holder gave to register. |
JSON representation
{ "id": 15, "profileId": 25, "documentNumber": "111222333L", "prefixName": "Mrs", "givenName": "Kathryn", "secondSurName": "Léonie", "surName": "Jordan", "street": null, "city": null, "stateProvName": "Barcelona", "stateProvCode": "ES-B", "postalCode": null, "countryCode": "ES", "email": null, "phoneNumber": "+34 678505050", "language": { "id": 1, "code": "ES", "name": "Spanish" }, "documentType": { "id": 1, "createdDate": "2018-04-12T18:13:50.710Z", "code": "1", "name": "Visa" } }