WorkflowTriggerEventRef
Properties
Name | Type | Description | Notes |
---|---|---|---|
parent_id | str | [optional] | |
event_key | str | [optional] |
Example
from hatchet_sdk.clients.rest.models.workflow_trigger_event_ref import WorkflowTriggerEventRef
# TODO update the JSON string below
json = "{}"
# create an instance of WorkflowTriggerEventRef from a JSON string
workflow_trigger_event_ref_instance = WorkflowTriggerEventRef.from_json(json)
# print the JSON string representation of the object
print WorkflowTriggerEventRef.to_json()
# convert the object into a dict
workflow_trigger_event_ref_dict = workflow_trigger_event_ref_instance.to_dict()
# create an instance of WorkflowTriggerEventRef from a dict
workflow_trigger_event_ref_form_dict = workflow_trigger_event_ref.from_dict(workflow_trigger_event_ref_dict)