Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

AutocompleteObjectGroup.md

File metadata and controls

31 lines (22 loc) · 1.15 KB

AutocompleteObjectGroup

Properties

Name Type Description Notes
id str
name str Title of the object group found by an auto-complete search.
title str Title of the object group found by an auto-complete search.

Example

from firefly_iii_client.models.autocomplete_object_group import AutocompleteObjectGroup

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

# convert the object into a dict
autocomplete_object_group_dict = autocomplete_object_group_instance.to_dict()
# create an instance of AutocompleteObjectGroup from a dict
autocomplete_object_group_form_dict = autocomplete_object_group.from_dict(autocomplete_object_group_dict)

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