from moonsdk.models.supported_currencies_response import SupportedCurrenciesResponse# TODO update the JSON string belowjson ="{}"# create an instance of SupportedCurrenciesResponse from a JSON stringsupported_currencies_response_instance = SupportedCurrenciesResponse.from_json(json)# print the JSON string representation of the objectprint(SupportedCurrenciesResponse.to_json())# convert the object into a dictsupported_currencies_response_dict = supported_currencies_response_instance.to_dict()# create an instance of SupportedCurrenciesResponse from a dictsupported_currencies_response_form_dict = supported_currencies_response.from_dict(supported_currencies_response_dict)