Name |
Type |
Description |
Notes |
attachment_token |
str |
Uploaded attachment token. |
[optional] |
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]