Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 880 Bytes

File metadata and controls

29 lines (21 loc) · 880 Bytes

CurrencyInfo

Properties

Name Type Description Notes
code str
symbol str

Example

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)

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