Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.68 KB

ContactRequestCompound.md

File metadata and controls

36 lines (27 loc) · 1.68 KB

ContactRequestCompound

A Contact Object and children to create a complete structure

Properties

Name Type Description Notes
fki_contacttitle_id int The unique ID of the Contacttitle. Valid values: Value
fki_language_id int The unique ID of the Language. Valid values: Value
s_contact_firstname str The First name of the contact
s_contact_lastname str The Last name of the contact
s_contact_company str The Company name of the contact
dt_contact_birthdate str The Birth Date of the contact [optional]
obj_contactinformations ContactinformationsRequestCompound

Example

from eZmaxApi.models.contact_request_compound import ContactRequestCompound

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

# convert the object into a dict
contact_request_compound_dict = contact_request_compound_instance.to_dict()
# create an instance of ContactRequestCompound from a dict
contact_request_compound_form_dict = contact_request_compound.from_dict(contact_request_compound_dict)

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