An Attachmentdocumenttype
Name | Type | Description | Notes |
---|---|---|---|
e_attachment_documenttype | FieldEAttachmentDocumenttype | ||
a_obj_attachment | List[CustomAttachmentResponse] |
from eZmaxApi.models.custom_attachmentdocumenttype_response import CustomAttachmentdocumenttypeResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CustomAttachmentdocumenttypeResponse from a JSON string
custom_attachmentdocumenttype_response_instance = CustomAttachmentdocumenttypeResponse.from_json(json)
# print the JSON string representation of the object
print(CustomAttachmentdocumenttypeResponse.to_json())
# convert the object into a dict
custom_attachmentdocumenttype_response_dict = custom_attachmentdocumenttype_response_instance.to_dict()
# create an instance of CustomAttachmentdocumenttypeResponse from a dict
custom_attachmentdocumenttype_response_form_dict = custom_attachmentdocumenttype_response.from_dict(custom_attachmentdocumenttype_response_dict)