Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.97 KB

File metadata and controls

34 lines (25 loc) · 1.97 KB

ContactinformationsRequestV2

A Contactinformations Object

Properties

Name Type Description Notes
e_contactinformations_type FieldEContactinformationsType
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.

Example

from eZmaxApi.models.contactinformations_request_v2 import ContactinformationsRequestV2

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

# convert the object into a dict
contactinformations_request_v2_dict = contactinformations_request_v2_instance.to_dict()
# create an instance of ContactinformationsRequestV2 from a dict
contactinformations_request_v2_from_dict = ContactinformationsRequestV2.from_dict(contactinformations_request_v2_dict)

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