Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
30 lines (22 loc) · 881 Bytes

File metadata and controls

30 lines (22 loc) · 881 Bytes

Currency

Properties

Name Type Description Notes
id str [optional]
deleted bool [optional]
rate str [optional]

Example

from clientapi_atrocore.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_form_dict = currency.from_dict(currency_dict)

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