| Name | Type | Description | Notes |
|---|---|---|---|
| code | str | ||
| symbol | str |
from docspace_api_sdk.models.currency_info import CurrencyInfo
# TODO update the JSON string below
json = "{}"
# create an instance of CurrencyInfo from a JSON string
currency_info_instance = CurrencyInfo.from_json(json)
# print the JSON string representation of the object
print(CurrencyInfo.to_json())
# convert the object into a dict
currency_info_dict = currency_info_instance.to_dict()
# create an instance of CurrencyInfo from a dict
currency_info_from_dict = CurrencyInfo.from_dict(currency_info_dict)