from moonsdk.models.transaction_input_supported_params_theme import TransactionInputSupportedParamsTheme# TODO update the JSON string belowjson ="{}"# create an instance of TransactionInputSupportedParamsTheme from a JSON stringtransaction_input_supported_params_theme_instance = TransactionInputSupportedParamsTheme.from_json(json)# print the JSON string representation of the objectprint(TransactionInputSupportedParamsTheme.to_json())# convert the object into a dicttransaction_input_supported_params_theme_dict = transaction_input_supported_params_theme_instance.to_dict()# create an instance of TransactionInputSupportedParamsTheme from a dicttransaction_input_supported_params_theme_form_dict = transaction_input_supported_params_theme.from_dict(transaction_input_supported_params_theme_dict)