Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 938 Bytes

AttachmentData.md

File metadata and controls

29 lines (20 loc) · 938 Bytes

AttachmentData

Properties

Name Type Description Notes
attachment_token str Uploaded attachment token. [optional]

Example

from fattureincloud_python_sdk.models.attachment_data import AttachmentData

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

# convert the object into a dict
attachment_data_dict = attachment_data_instance.to_dict()
# create an instance of AttachmentData from a dict
attachment_data_from_dict = AttachmentData.from_dict(attachment_data_dict)

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