Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.4 KB

CurrencyUpdate.md

File metadata and controls

34 lines (25 loc) · 1.4 KB

CurrencyUpdate

Properties

Name Type Description Notes
code str The currency code [optional]
decimal_places int How many decimals to use when displaying this currency. Between 0 and 16. [optional]
default bool If the currency must be the default for the user. You can only submit TRUE. Submitting FALSE will not drop this currency as the default currency, because then the system would be without one. [optional]
enabled bool If the currency is enabled [optional]
name str The currency name [optional]
symbol str The currency symbol [optional]

Example

from firefly_iii_client.models.currency_update import CurrencyUpdate

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

# convert the object into a dict
currency_update_dict = currency_update_instance.to_dict()
# create an instance of CurrencyUpdate from a dict
currency_update_form_dict = currency_update.from_dict(currency_update_dict)

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