Skip to content

PipelineTag

Properties

Name Type Description Notes
technical_tags List[str] Technical tags

Example

from libica.openapi.v3.models.pipeline_tag import PipelineTag

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

# convert the object into a dict
pipeline_tag_dict = pipeline_tag_instance.to_dict()
# create an instance of PipelineTag from a dict
pipeline_tag_from_dict = PipelineTag.from_dict(pipeline_tag_dict)

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