WorkflowRun

Properties

NameTypeDescriptionNotes
metadataAPIResourceMeta
tenant_idstr
workflow_version_idstr
workflow_versionWorkflowVersion[optional]
statusWorkflowRunStatus
display_namestr[optional]
job_runsList[JobRun][optional]
triggered_byWorkflowRunTriggeredBy
inputDict[str, object][optional]
errorstr[optional]
started_atdatetime[optional]
finished_atdatetime[optional]

Example

from hatchet_sdk.clients.rest.models.workflow_run import WorkflowRun
 
# TODO update the JSON string below
json = "{}"
# create an instance of WorkflowRun from a JSON string
workflow_run_instance = WorkflowRun.from_json(json)
# print the JSON string representation of the object
print WorkflowRun.to_json()
 
# convert the object into a dict
workflow_run_dict = workflow_run_instance.to_dict()
# create an instance of WorkflowRun from a dict
workflow_run_form_dict = workflow_run.from_dict(workflow_run_dict)

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