Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 971 Bytes

AttachmentArray.md

File metadata and controls

30 lines (21 loc) · 971 Bytes

AttachmentArray

Properties

Name Type Description Notes
data List[AttachmentRead]
meta Meta

Example

from firefly_iii_client.models.attachment_array import AttachmentArray

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

# convert the object into a dict
attachment_array_dict = attachment_array_instance.to_dict()
# create an instance of AttachmentArray from a dict
attachment_array_form_dict = attachment_array.from_dict(attachment_array_dict)

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