Skip to content

Latest commit

History

History
30 lines (21 loc) · 966 Bytes

File metadata and controls

30 lines (21 loc) · 966 Bytes

ConsoleOutputEntry

Properties

NameTypeDescriptionNotes
outputstr
process_seqidint

Example

fromrevengai.models.console_output_entryimportConsoleOutputEntry# TODO update the JSON string belowjson="{}"# create an instance of ConsoleOutputEntry from a JSON stringconsole_output_entry_instance=ConsoleOutputEntry.from_json(json)
# print the JSON string representation of the objectprint(ConsoleOutputEntry.to_json())
# convert the object into a dictconsole_output_entry_dict=console_output_entry_instance.to_dict()
# create an instance of ConsoleOutputEntry from a dictconsole_output_entry_from_dict=ConsoleOutputEntry.from_dict(console_output_entry_dict)

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