Skip to content

Latest commit

History

History
32 lines (23 loc) · 1.04 KB

File metadata and controls

32 lines (23 loc) · 1.04 KB

ProgressMessage

Properties

NameTypeDescriptionNotes
levelstrSeverity level
stepstrStep name when the message was emitted
textstrMessage text
timestampdatetimeWhen the message was emitted

Example

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]