A Phone Object
Name | Type | Description | Notes |
---|---|---|---|
pki_phone_id | int | The unique ID of the Phone. | |
fki_phonetype_id | int | The unique ID of the Phonetype. Valid values: | Value |
e_phone_type | FieldEPhoneType | [optional] | |
s_phone_e164 | str | A phone number in E.164 Format | [optional] |
s_phone_extension | str | The extension of the phone number. The extension is the "123" section in this sample phone number: (514) 990-1516 x123. It can also be used with international phone numbers | [optional] |
from eZmaxApi.models.phone_response import PhoneResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PhoneResponse from a JSON string
phone_response_instance = PhoneResponse.from_json(json)
# print the JSON string representation of the object
print(PhoneResponse.to_json())
# convert the object into a dict
phone_response_dict = phone_response_instance.to_dict()
# create an instance of PhoneResponse from a dict
phone_response_form_dict = phone_response.from_dict(phone_response_dict)