WorkflowVersion

Properties

NameTypeDescriptionNotes
metadataAPIResourceMeta
versionstrThe version of the workflow.
orderint
workflow_idstr
workflowWorkflow[optional]
triggersWorkflowTriggers[optional]
jobsList[Job][optional]

Example

from hatchet_sdk.clients.rest.models.workflow_version import WorkflowVersion
 
# TODO update the JSON string below
json = "{}"
# create an instance of WorkflowVersion from a JSON string
workflow_version_instance = WorkflowVersion.from_json(json)
# print the JSON string representation of the object
print WorkflowVersion.to_json()
 
# convert the object into a dict
workflow_version_dict = workflow_version_instance.to_dict()
# create an instance of WorkflowVersion from a dict
workflow_version_form_dict = workflow_version.from_dict(workflow_version_dict)

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