Name |
Type |
Description |
Notes |
created_at |
datetime |
|
[optional] [readonly] |
order |
int |
Order of the object group |
|
title |
str |
|
|
updated_at |
datetime |
|
[optional] [readonly] |
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]