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