Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2.1 KB

ContactResponseCompound.md

File metadata and controls

42 lines (33 loc) · 2.1 KB

ContactResponseCompound

A Contact Object

Properties

Name Type Description Notes
pki_contact_id int The unique ID of the Contact
fki_language_id int The unique ID of the Language. Valid values: Value
fki_contacttitle_id int The unique ID of the Contacttitle. Valid values: Value
fki_contactinformations_id int The unique ID of the Contactinformations
dt_contact_birthdate str The Birth Date of the contact [optional]
e_contact_type FieldEContactType
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 [optional]
s_contact_occupation str The occupation of the Contact [optional]
t_contact_note str The note of the Contact [optional]
b_contact_isactive bool Whether the contact is active or not
obj_contactinformations ContactinformationsResponseCompound

Example

from eZmaxApi.models.contact_response_compound import ContactResponseCompound

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

# convert the object into a dict
contact_response_compound_dict = contact_response_compound_instance.to_dict()
# create an instance of ContactResponseCompound from a dict
contact_response_compound_from_dict = ContactResponseCompound.from_dict(contact_response_compound_dict)

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