A Communicationrecipient Object and children
Name | Type | Description | Notes |
---|---|---|---|
pki_communicationrecipient_id | int | The unique ID of the Communicationrecipient. | [optional] |
fki_agent_id | int | The unique ID of the Agent. | [optional] |
fki_broker_id | int | The unique ID of the Broker. | [optional] |
fki_contact_id | int | The unique ID of the Contact | [optional] |
fki_customer_id | int | The unique ID of the Customer. | [optional] |
fki_employee_id | int | The unique ID of the Employee. | [optional] |
fki_assistant_id | int | The unique ID of the Assistant. | [optional] |
fki_externalbroker_id | int | The unique ID of the Externalbroker. | [optional] |
fki_ezsignsigner_id | int | The unique ID of the Ezsignsigner | [optional] |
fki_notary_id | int | The unique ID of the Notary. | [optional] |
fki_supplier_id | int | The unique ID of the Supplier. | [optional] |
fki_user_id | int | The unique ID of the User | [optional] |
fki_mailboxshared_id | int | The unique ID of the Mailboxshared | [optional] |
fki_phonelineshared_id | int | The unique ID of the Phonelineshared | [optional] |
e_communicationrecipient_type | FieldECommunicationrecipientType | [optional] |
from eZmaxApi.models.communicationrecipient_request_compound import CommunicationrecipientRequestCompound
# TODO update the JSON string below
json = "{}"
# create an instance of CommunicationrecipientRequestCompound from a JSON string
communicationrecipient_request_compound_instance = CommunicationrecipientRequestCompound.from_json(json)
# print the JSON string representation of the object
print(CommunicationrecipientRequestCompound.to_json())
# convert the object into a dict
communicationrecipient_request_compound_dict = communicationrecipient_request_compound_instance.to_dict()
# create an instance of CommunicationrecipientRequestCompound from a dict
communicationrecipient_request_compound_from_dict = CommunicationrecipientRequestCompound.from_dict(communicationrecipient_request_compound_dict)