from moonsdk.models.sign_typed_data import SignTypedData# TODO update the JSON string belowjson ="{}"# create an instance of SignTypedData from a JSON stringsign_typed_data_instance = SignTypedData.from_json(json)# print the JSON string representation of the objectprint(SignTypedData.to_json())# convert the object into a dictsign_typed_data_dict = sign_typed_data_instance.to_dict()# create an instance of SignTypedData from a dictsign_typed_data_form_dict = sign_typed_data.from_dict(sign_typed_data_dict)