Skip to content

Latest commit

History

History
29 lines (20 loc) · 865 Bytes

File metadata and controls

29 lines (20 loc) · 865 Bytes

MessageBody

Properties

NameTypeDescriptionNotes
messagestrHuman-readable status message

Example

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)

[Back to Model list][Back to API list][Back to README]