Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.23 KB

UploadIssuedDocumentAttachmentResponse.md

File metadata and controls

29 lines (20 loc) · 1.23 KB

UploadIssuedDocumentAttachmentResponse

Properties

Name Type Description Notes
data AttachmentData [optional]

Example

from fattureincloud_python_sdk.models.upload_issued_document_attachment_response import UploadIssuedDocumentAttachmentResponse

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

# convert the object into a dict
upload_issued_document_attachment_response_dict = upload_issued_document_attachment_response_instance.to_dict()
# create an instance of UploadIssuedDocumentAttachmentResponse from a dict
upload_issued_document_attachment_response_from_dict = UploadIssuedDocumentAttachmentResponse.from_dict(upload_issued_document_attachment_response_dict)

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