Skip to content

Latest commit

History

History
35 lines (26 loc) · 1.18 KB

File metadata and controls

35 lines (26 loc) · 1.18 KB

ProcessActivityEntry

Properties

NameTypeDescriptionNotes
argsList[str][optional]
child_seqidint
eventsList[ReportEvent][optional]
exit_codeint[optional]
exit_code_strstr[optional]
namestr
pidint

Example

fromrevengai.models.process_activity_entryimportProcessActivityEntry# TODO update the JSON string belowjson="{}"# create an instance of ProcessActivityEntry from a JSON stringprocess_activity_entry_instance=ProcessActivityEntry.from_json(json)
# print the JSON string representation of the objectprint(ProcessActivityEntry.to_json())
# convert the object into a dictprocess_activity_entry_dict=process_activity_entry_instance.to_dict()
# create an instance of ProcessActivityEntry from a dictprocess_activity_entry_from_dict=ProcessActivityEntry.from_dict(process_activity_entry_dict)

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