A Contactinformations Object
Name | Type | Description | Notes |
---|---|---|---|
pki_contactinformations_id | int | The unique ID of the Contactinformations | |
fki_address_id_default | int | The unique ID of the Address | [optional] |
fki_phone_id_default | int | The unique ID of the Phone. | [optional] |
fki_email_id_default | int | The unique ID of the Email | [optional] |
fki_website_id_default | int | The unique ID of the Website Default | [optional] |
e_contactinformations_type | FieldEContactinformationsType | ||
s_contactinformations_url | str | The url of the Contactinformations | [optional] |
obj_address_default | AddressResponseCompound | [optional] | |
obj_phone_default | PhoneResponseCompound | [optional] | |
obj_email_default | EmailResponseCompound | [optional] | |
obj_website_default | WebsiteResponseCompound | [optional] | |
a_obj_address | List[AddressResponseCompound] | ||
a_obj_phone | List[PhoneResponseCompound] | ||
a_obj_email | List[EmailResponseCompound] | ||
a_obj_website | List[WebsiteResponseCompound] |
from eZmaxApi.models.contactinformations_response_compound import ContactinformationsResponseCompound
# TODO update the JSON string below
json = "{}"
# create an instance of ContactinformationsResponseCompound from a JSON string
contactinformations_response_compound_instance = ContactinformationsResponseCompound.from_json(json)
# print the JSON string representation of the object
print(ContactinformationsResponseCompound.to_json())
# convert the object into a dict
contactinformations_response_compound_dict = contactinformations_response_compound_instance.to_dict()
# create an instance of ContactinformationsResponseCompound from a dict
contactinformations_response_compound_from_dict = ContactinformationsResponseCompound.from_dict(contactinformations_response_compound_dict)