Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.7 KB

PhoneResponseCompound.md

File metadata and controls

35 lines (26 loc) · 1.7 KB

PhoneResponseCompound

A Phone Object and children to create a complete structure

Properties

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]
b_phone_international bool Indicate the phone number is an international phone number. [optional]

Example

from eZmaxApi.models.phone_response_compound import PhoneResponseCompound

# TODO update the JSON string below
json = "{}"
# create an instance of PhoneResponseCompound from a JSON string
phone_response_compound_instance = PhoneResponseCompound.from_json(json)
# print the JSON string representation of the object
print(PhoneResponseCompound.to_json())

# convert the object into a dict
phone_response_compound_dict = phone_response_compound_instance.to_dict()
# create an instance of PhoneResponseCompound from a dict
phone_response_compound_form_dict = phone_response_compound.from_dict(phone_response_compound_dict)

[Back to Model list] [Back to API list] [Back to README]