Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 992 Bytes

ObjectGroupUpdate.md

File metadata and controls

30 lines (21 loc) · 992 Bytes

ObjectGroupUpdate

Properties

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

Example

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]