A Custom Communicationattachment Object
Name | Type | Description | Notes |
---|---|---|---|
obj_communicationattachment | CommunicationattachmentRequestCompound | [optional] | |
obj_communicationexternalattachment | CommonFile | [optional] |
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_from_dict = CustomCommunicationattachmentRequest.from_dict(custom_communicationattachment_request_dict)