Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 982 Bytes

File metadata and controls

30 lines (21 loc) · 982 Bytes

Attachment

Properties

Name Type Description Notes
filename str Attachment file name [optional]
attachment bytes Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] [optional]

Example

from fattureincloud_python_sdk.models.attachment import Attachment

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

# convert the object into a dict
attachment_dict = attachment_instance.to_dict()
# create an instance of Attachment from a dict
attachment_from_dict = Attachment.from_dict(attachment_dict)

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