Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 993 Bytes

ObjectGroupArray.md

File metadata and controls

30 lines (21 loc) · 993 Bytes

ObjectGroupArray

Properties

Name Type Description Notes
data List[ObjectGroupRead]
meta Meta

Example

from firefly_iii_client.models.object_group_array import ObjectGroupArray

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

# convert the object into a dict
object_group_array_dict = object_group_array_instance.to_dict()
# create an instance of ObjectGroupArray from a dict
object_group_array_form_dict = object_group_array.from_dict(object_group_array_dict)

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