Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 998 Bytes

AttachmentUpdate.md

File metadata and controls

31 lines (22 loc) · 998 Bytes

AttachmentUpdate

Properties

Name Type Description Notes
filename str [optional]
notes str [optional]
title str [optional]

Example

from firefly_iii_client.models.attachment_update import AttachmentUpdate

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

# convert the object into a dict
attachment_update_dict = attachment_update_instance.to_dict()
# create an instance of AttachmentUpdate from a dict
attachment_update_form_dict = attachment_update.from_dict(attachment_update_dict)

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