WorkflowVersionMeta

Properties

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

Example

from hatchet_sdk.clients.rest.models.workflow_version_meta import WorkflowVersionMeta
 
# TODO update the JSON string below
json = "{}"
# create an instance of WorkflowVersionMeta from a JSON string
workflow_version_meta_instance = WorkflowVersionMeta.from_json(json)
# print the JSON string representation of the object
print WorkflowVersionMeta.to_json()
 
# convert the object into a dict
workflow_version_meta_dict = workflow_version_meta_instance.to_dict()
# create an instance of WorkflowVersionMeta from a dict
workflow_version_meta_form_dict = workflow_version_meta.from_dict(workflow_version_meta_dict)

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