Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 932 Bytes

PreferredCurrency.md

File metadata and controls

29 lines (20 loc) · 932 Bytes

PreferredCurrency

Preferred currency of the user

Properties

Name Type Description Notes

Example

from onelens_backend_client.models.preferred_currency import PreferredCurrency

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

# convert the object into a dict
preferred_currency_dict = preferred_currency_instance.to_dict()
# create an instance of PreferredCurrency from a dict
preferred_currency_form_dict = preferred_currency.from_dict(preferred_currency_dict)

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