from moonsdk.models.transaction_input_wallet import TransactionInputWallet# TODO update the JSON string belowjson ="{}"# create an instance of TransactionInputWallet from a JSON stringtransaction_input_wallet_instance = TransactionInputWallet.from_json(json)# print the JSON string representation of the objectprint(TransactionInputWallet.to_json())# convert the object into a dicttransaction_input_wallet_dict = transaction_input_wallet_instance.to_dict()# create an instance of TransactionInputWallet from a dicttransaction_input_wallet_form_dict = transaction_input_wallet.from_dict(transaction_input_wallet_dict)