# Phone With Type The phone information. ## Structure `PhoneWithType` ## Fields | Name | Type | Tags | Description | Getter | Setter | | --- | --- | --- | --- | --- | --- | | `phoneType` | [`?string(PhoneType)`](../../doc/models/phone-type.md) | Optional | The phone type. | getPhoneType(): ?string | setPhoneType(?string phoneType): void | | `phoneNumber` | [`PhoneNumber`](../../doc/models/phone-number.md) | Required | The phone number in its canonical international [E.164 numbering plan format](https://www.itu.int/rec/T-REC-E.164/en). | getPhoneNumber(): PhoneNumber | setPhoneNumber(PhoneNumber phoneNumber): void | ## Example (as JSON) ```json { "phone_type": "PAGER", "phone_number": { "national_number": "national_number6" } } ```