Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1022 Bytes

Currency.md

File metadata and controls

32 lines (23 loc) · 1022 Bytes

Currency

Properties

Name Type Description Notes
id str Currency code [optional]
symbol str Currency symbol [optional]
exchange_rate str Currency exchange rate (EUR to this) [optional]
html_symbol str Currency html code [optional]

Example

from fattureincloud_python_sdk.models.currency import Currency

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

# convert the object into a dict
currency_dict = currency_instance.to_dict()
# create an instance of Currency from a dict
currency_from_dict = Currency.from_dict(currency_dict)

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