Skip to content

PipelineHtmlDocumentation

Properties

Name Type Description Notes
content str The content of the HTML documentation

Example

from libica.openapi.v3.models.pipeline_html_documentation import PipelineHtmlDocumentation

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

# convert the object into a dict
pipeline_html_documentation_dict = pipeline_html_documentation_instance.to_dict()
# create an instance of PipelineHtmlDocumentation from a dict
pipeline_html_documentation_from_dict = PipelineHtmlDocumentation.from_dict(pipeline_html_documentation_dict)

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