| Name | Type | Description | Notes |
|---|---|---|---|
| args | List[str] | [optional] | |
| child_seqid | int | ||
| events | List[ReportEvent] | [optional] | |
| exit_code | int | [optional] | |
| exit_code_str | str | [optional] | |
| name | str | ||
| pid | int |
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)