from moonsdk.models.supported_payment_types_currency_response import SupportedPaymentTypesCurrencyResponse# TODO update the JSON string belowjson ="{}"# create an instance of SupportedPaymentTypesCurrencyResponse from a JSON stringsupported_payment_types_currency_response_instance = SupportedPaymentTypesCurrencyResponse.from_json(json)# print the JSON string representation of the objectprint(SupportedPaymentTypesCurrencyResponse.to_json())# convert the object into a dictsupported_payment_types_currency_response_dict = supported_payment_types_currency_response_instance.to_dict()# create an instance of SupportedPaymentTypesCurrencyResponse from a dictsupported_payment_types_currency_response_form_dict = supported_payment_types_currency_response.from_dict(supported_payment_types_currency_response_dict)