Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 941 Bytes

AttachmentSingle.md

File metadata and controls

29 lines (20 loc) · 941 Bytes

AttachmentSingle

Properties

Name Type Description Notes
data AttachmentRead

Example

from firefly_iii_client.models.attachment_single import AttachmentSingle

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

# convert the object into a dict
attachment_single_dict = attachment_single_instance.to_dict()
# create an instance of AttachmentSingle from a dict
attachment_single_form_dict = attachment_single.from_dict(attachment_single_dict)

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