| Name | Type | Description | Notes |
|---|
| level | str | Severity level | |
| step | str | Step name when the message was emitted | |
| text | str | Message text | |
| timestamp | datetime | When the message was emitted | |
fromrevengai.models.progress_messageimportProgressMessage# TODO update the JSON string belowjson="{}"# create an instance of ProgressMessage from a JSON stringprogress_message_instance=ProgressMessage.from_json(json)
# print the JSON string representation of the objectprint(ProgressMessage.to_json())
# convert the object into a dictprogress_message_dict=progress_message_instance.to_dict()
# create an instance of ProgressMessage from a dictprogress_message_from_dict=ProgressMessage.from_dict(progress_message_dict)[Back to Model list][Back to API list][Back to README]