You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Type of the object found by an auto-complete search.
type
str
Name of the object found by an auto-complete search.
Example
fromfirefly_iii_client.models.autocomplete_transaction_typeimportAutocompleteTransactionType# TODO update the JSON string belowjson="{}"# create an instance of AutocompleteTransactionType from a JSON stringautocomplete_transaction_type_instance=AutocompleteTransactionType.from_json(json)
# print the JSON string representation of the objectprint(AutocompleteTransactionType.to_json())
# convert the object into a dictautocomplete_transaction_type_dict=autocomplete_transaction_type_instance.to_dict()
# create an instance of AutocompleteTransactionType from a dictautocomplete_transaction_type_form_dict=autocomplete_transaction_type.from_dict(autocomplete_transaction_type_dict)