class Openapi3Parser::Node::ExternalDocumentation
@see github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#externalDocumentationObject
Public Instance Methods
description()
click to toggle source
@return [String, nil]
# File lib/openapi3_parser/node/external_documentation.rb, line 10 def description self["description"] end
description_html()
click to toggle source
@return [String, nil]
# File lib/openapi3_parser/node/external_documentation.rb, line 15 def description_html render_markdown(description) end
url()
click to toggle source
@return [String]
# File lib/openapi3_parser/node/external_documentation.rb, line 20 def url self["url"] end