WorkflowRunTriggeredBy

Properties

NameTypeDescriptionNotes
metadataAPIResourceMeta
parent_idstr
event_idstr[optional]
eventEvent[optional]
cron_parent_idstr[optional]
cron_schedulestr[optional]

Example

from hatchet_sdk.clients.rest.models.workflow_run_triggered_by import WorkflowRunTriggeredBy
 
# TODO update the JSON string below
json = "{}"
# create an instance of WorkflowRunTriggeredBy from a JSON string
workflow_run_triggered_by_instance = WorkflowRunTriggeredBy.from_json(json)
# print the JSON string representation of the object
print WorkflowRunTriggeredBy.to_json()
 
# convert the object into a dict
workflow_run_triggered_by_dict = workflow_run_triggered_by_instance.to_dict()
# create an instance of WorkflowRunTriggeredBy from a dict
workflow_run_triggered_by_form_dict = workflow_run_triggered_by.from_dict(workflow_run_triggered_by_dict)

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