WorkflowTriggers
Properties
Name | Type | Description | Notes |
---|---|---|---|
metadata | APIResourceMeta | [optional] | |
workflow_version_id | str | [optional] | |
tenant_id | str | [optional] | |
events | List[WorkflowTriggerEventRef] | [optional] | |
crons | List[WorkflowTriggerCronRef] | [optional] |
Example
from hatchet_sdk.clients.rest.models.workflow_triggers import WorkflowTriggers
# TODO update the JSON string below
json = "{}"
# create an instance of WorkflowTriggers from a JSON string
workflow_triggers_instance = WorkflowTriggers.from_json(json)
# print the JSON string representation of the object
print WorkflowTriggers.to_json()
# convert the object into a dict
workflow_triggers_dict = workflow_triggers_instance.to_dict()
# create an instance of WorkflowTriggers from a dict
workflow_triggers_form_dict = workflow_triggers.from_dict(workflow_triggers_dict)