from moonsdk.models.message import Message# TODO update the JSON string belowjson ="{}"# create an instance of Message from a JSON stringmessage_instance = Message.from_json(json)# print the JSON string representation of the objectprint(Message.to_json())# convert the object into a dictmessage_dict = message_instance.to_dict()# create an instance of Message from a dictmessage_form_dict = message.from_dict(message_dict)