Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.38 KB

File metadata and controls

31 lines (22 loc) · 1.38 KB

CustomAttachmentPrepareFilesTransferRequest

A AttachmentPrepareFilesTransfer object

Properties

Name Type Description Notes
s_attachment_name str The name of the Attachment
s_attachment_md5 str The MD5 of the Attachment

Example

from eZmaxApi.models.custom_attachment_prepare_files_transfer_request import CustomAttachmentPrepareFilesTransferRequest

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

# convert the object into a dict
custom_attachment_prepare_files_transfer_request_dict = custom_attachment_prepare_files_transfer_request_instance.to_dict()
# create an instance of CustomAttachmentPrepareFilesTransferRequest from a dict
custom_attachment_prepare_files_transfer_request_from_dict = CustomAttachmentPrepareFilesTransferRequest.from_dict(custom_attachment_prepare_files_transfer_request_dict)

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