Sha256: 8c095322ff519a0f44a23de9105f7e260c793e3a4f707982afa88a8b90eec5cf
Contents?: true
Size: 550 Bytes
Versions: 10
Compression:
Stored size: 550 Bytes
Contents
# frozen_string_literal: true require "openapi3_parser/node/object" module Openapi3Parser module Node # @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#externalDocumentationObject class ExternalDocumentation < Node::Object # @return [String, nil] def description self["description"] end # @return [String, nil] def description_html render_markdown(description) end # @return [String] def url self["url"] end end end end
Version data entries
10 entries across 10 versions & 2 rubygems