Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.07 KB

AutocompleteCurrency.md

File metadata and controls

33 lines (24 loc) · 1.07 KB

AutocompleteCurrency

Properties

Name Type Description Notes
code str Currency code.
decimal_places int
id str
name str Currency name.
symbol str

Example

from firefly_iii_client.models.autocomplete_currency import AutocompleteCurrency

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

# convert the object into a dict
autocomplete_currency_dict = autocomplete_currency_instance.to_dict()
# create an instance of AutocompleteCurrency from a dict
autocomplete_currency_form_dict = autocomplete_currency.from_dict(autocomplete_currency_dict)

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