A Contactinformations Object and children to create a complete structure
| Name | Type | Description | Notes |
|---|---|---|---|
| i_address_default | int | The index in the a_objAddress array (zero based index) representing the Address object that should become the default one. You can leave the value to 0 if the array is empty. | |
| i_phone_default | int | The index in the a_objPhone array (zero based index) representing the Phone object that should become the default one. You can leave the value to 0 if the array is empty. | |
| i_email_default | int | The index in the a_objEmail array (zero based index) representing the Email object that should become the default one. You can leave the value to 0 if the array is empty. | |
| i_website_default | int | The index in the a_objWebsite array (zero based index) representing the Website object that should become the default one. You can leave the value to 0 if the array is empty. | |
| a_obj_address | List[AddressRequestCompound] | ||
| a_obj_phone | List[PhoneRequestCompound] | ||
| a_obj_email | List[EmailRequestCompound] | ||
| a_obj_website | List[WebsiteRequestCompound] |
from eZmaxApi.models.contactinformations_request_compound import ContactinformationsRequestCompound
# TODO update the JSON string below
json = "{}"
# create an instance of ContactinformationsRequestCompound from a JSON string
contactinformations_request_compound_instance = ContactinformationsRequestCompound.from_json(json)
# print the JSON string representation of the object
print(ContactinformationsRequestCompound.to_json())
# convert the object into a dict
contactinformations_request_compound_dict = contactinformations_request_compound_instance.to_dict()
# create an instance of ContactinformationsRequestCompound from a dict
contactinformations_request_compound_from_dict = ContactinformationsRequestCompound.from_dict(contactinformations_request_compound_dict)