from moonsdk.models.transaction_input_supported_params import TransactionInputSupportedParams# TODO update the JSON string belowjson ="{}"# create an instance of TransactionInputSupportedParams from a JSON stringtransaction_input_supported_params_instance = TransactionInputSupportedParams.from_json(json)# print the JSON string representation of the objectprint(TransactionInputSupportedParams.to_json())# convert the object into a dicttransaction_input_supported_params_dict = transaction_input_supported_params_instance.to_dict()# create an instance of TransactionInputSupportedParams from a dicttransaction_input_supported_params_form_dict = transaction_input_supported_params.from_dict(transaction_input_supported_params_dict)