Name |
Type |
Description |
Notes |
order |
int |
Order of the object group |
[optional] |
title |
str |
|
|
from firefly_iii_client.models.object_group_update import ObjectGroupUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of ObjectGroupUpdate from a JSON string
object_group_update_instance = ObjectGroupUpdate.from_json(json)
# print the JSON string representation of the object
print(ObjectGroupUpdate.to_json())
# convert the object into a dict
object_group_update_dict = object_group_update_instance.to_dict()
# create an instance of ObjectGroupUpdate from a dict
object_group_update_form_dict = object_group_update.from_dict(object_group_update_dict)
[Back to Model list] [Back to API list] [Back to README]