PipelineBundle
Properties
Example
from libica.openapi.v3.models.pipeline_bundle import PipelineBundle
# TODO update the JSON string below
json = "{}"
# create an instance of PipelineBundle from a JSON string
pipeline_bundle_instance = PipelineBundle.from_json(json)
# print the JSON string representation of the object
print(PipelineBundle.to_json())
# convert the object into a dict
pipeline_bundle_dict = pipeline_bundle_instance.to_dict()
# create an instance of PipelineBundle from a dict
pipeline_bundle_from_dict = PipelineBundle.from_dict(pipeline_bundle_dict)
[Back to Model list] [Back to API list] [Back to README]