Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.48 KB

File metadata and controls

32 lines (23 loc) · 1.48 KB

CustomAttachmentPrepareFilesTransferResponse

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
e_attachment_action str Returns the action required for the attachment

Example

from eZmaxApi.models.custom_attachment_prepare_files_transfer_response import CustomAttachmentPrepareFilesTransferResponse

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

# convert the object into a dict
custom_attachment_prepare_files_transfer_response_dict = custom_attachment_prepare_files_transfer_response_instance.to_dict()
# create an instance of CustomAttachmentPrepareFilesTransferResponse from a dict
custom_attachment_prepare_files_transfer_response_from_dict = CustomAttachmentPrepareFilesTransferResponse.from_dict(custom_attachment_prepare_files_transfer_response_dict)

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