| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | Human-readable status message |
fromrevengai.models.message_bodyimportMessageBody# TODO update the JSON string belowjson="{}"# create an instance of MessageBody from a JSON stringmessage_body_instance=MessageBody.from_json(json)
# print the JSON string representation of the objectprint(MessageBody.to_json())
# convert the object into a dictmessage_body_dict=message_body_instance.to_dict()
# create an instance of MessageBody from a dictmessage_body_from_dict=MessageBody.from_dict(message_body_dict)