Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

DispatchWorkflowOption

DispatchWorkflowOption options when dispatching a workflow

Properties

Name Type Description Notes
inputs Dict[str, str] Input keys and values configured in the workflow file. [optional]
ref str Git reference for the workflow
return_run_info bool Flag to return the run info [optional] [default to False]

Example

from openapi_client.models.dispatch_workflow_option import DispatchWorkflowOption

# TODO update the JSON string below
json = "{}"
# create an instance of DispatchWorkflowOption from a JSON string
dispatch_workflow_option_instance = DispatchWorkflowOption.from_json(json)
# print the JSON string representation of the object
print(DispatchWorkflowOption.to_json())

# convert the object into a dict
dispatch_workflow_option_dict = dispatch_workflow_option_instance.to_dict()
# create an instance of DispatchWorkflowOption from a dict
dispatch_workflow_option_from_dict = DispatchWorkflowOption.from_dict(dispatch_workflow_option_dict)

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