| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| deleted | bool | [optional] | |
| rate | str | [optional] |
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)