Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.06 KB

CommunicationRequest.md

File metadata and controls

39 lines (30 loc) · 2.06 KB

CommunicationRequest

Request for POST /1/object/communication

Properties

Name Type Description Notes
pki_communication_id int The unique ID of the Communication. [optional]
e_communication_importance FieldECommunicationImportance [optional]
e_communication_type FieldECommunicationType
obj_communicationsender CustomCommunicationsenderRequest [optional]
s_communication_subject str The subject of the Communication [optional]
t_communication_body str The Body of the Communication
b_communication_private bool Whether the Communication is private or not
e_communication_attachmenttype str How the attachment should be included in the email. Only used if eCommunicationType is Email [optional]
i_communication_attachmentlinkexpiration int The number of days before the attachment link expired. Only used if eCommunicationType is Email and eCommunicationattachmentType is Link [optional]
b_communication_readreceipt bool Whether we ask for a read receipt or not. [optional]

Example

from eZmaxApi.models.communication_request import CommunicationRequest

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

# convert the object into a dict
communication_request_dict = communication_request_instance.to_dict()
# create an instance of CommunicationRequest from a dict
communication_request_form_dict = communication_request.from_dict(communication_request_dict)

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