Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.38 KB

CustomCommunicationattachmentRequest.md

File metadata and controls

31 lines (22 loc) · 1.38 KB

CustomCommunicationattachmentRequest

A Custom Communicationattachment Object

Properties

Name Type Description Notes
obj_communicationattachment CommunicationattachmentRequestCompound [optional]
obj_communicationexternalattachment CommonFile [optional]

Example

from eZmaxApi.models.custom_communicationattachment_request import CustomCommunicationattachmentRequest

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

# convert the object into a dict
custom_communicationattachment_request_dict = custom_communicationattachment_request_instance.to_dict()
# create an instance of CustomCommunicationattachmentRequest from a dict
custom_communicationattachment_request_form_dict = custom_communicationattachment_request.from_dict(custom_communicationattachment_request_dict)

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