Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 960 Bytes

PipelineAutoRunResp.md

File metadata and controls

29 lines (20 loc) · 960 Bytes

PipelineAutoRunResp

Properties

Name Type Description Notes
auto_run bool

Example

from openapi_client.models.pipeline_auto_run_resp import PipelineAutoRunResp

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

# convert the object into a dict
pipeline_auto_run_resp_dict = pipeline_auto_run_resp_instance.to_dict()
# create an instance of PipelineAutoRunResp from a dict
pipeline_auto_run_resp_from_dict = PipelineAutoRunResp.from_dict(pipeline_auto_run_resp_dict)

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