Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 963 Bytes

ObjectGroupSingle.md

File metadata and controls

29 lines (20 loc) · 963 Bytes

ObjectGroupSingle

Properties

Name Type Description Notes
data ObjectGroupRead

Example

from firefly_iii_client.models.object_group_single import ObjectGroupSingle

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

# convert the object into a dict
object_group_single_dict = object_group_single_instance.to_dict()
# create an instance of ObjectGroupSingle from a dict
object_group_single_form_dict = object_group_single.from_dict(object_group_single_dict)

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