from moonsdk.models.solana_transaction_input import SolanaTransactionInput# TODO update the JSON string belowjson ="{}"# create an instance of SolanaTransactionInput from a JSON stringsolana_transaction_input_instance = SolanaTransactionInput.from_json(json)# print the JSON string representation of the objectprint(SolanaTransactionInput.to_json())# convert the object into a dictsolana_transaction_input_dict = solana_transaction_input_instance.to_dict()# create an instance of SolanaTransactionInput from a dictsolana_transaction_input_form_dict = solana_transaction_input.from_dict(solana_transaction_input_dict)