from moonsdk.models.fiat_currency import FiatCurrency# TODO update the JSON string belowjson ="{}"# create an instance of FiatCurrency from a JSON stringfiat_currency_instance = FiatCurrency.from_json(json)# print the JSON string representation of the objectprint(FiatCurrency.to_json())# convert the object into a dictfiat_currency_dict = fiat_currency_instance.to_dict()# create an instance of FiatCurrency from a dictfiat_currency_form_dict = fiat_currency.from_dict(fiat_currency_dict)