Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1012 Bytes

ObjectGroup.md

File metadata and controls

32 lines (23 loc) · 1012 Bytes

ObjectGroup

Properties

Name Type Description Notes
created_at datetime [optional] [readonly]
order int Order of the object group
title str
updated_at datetime [optional] [readonly]

Example

from firefly_iii_client.models.object_group import ObjectGroup

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

# convert the object into a dict
object_group_dict = object_group_instance.to_dict()
# create an instance of ObjectGroup from a dict
object_group_form_dict = object_group.from_dict(object_group_dict)

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