Sha256: 2c450bf38d6bb8e67ad43340897e2a1013f5df9d58eb33644cbffa4048ab3634
Contents?: true
Size: 627 Bytes
Versions: 10
Compression:
Stored size: 627 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#oauthFlowObject class OauthFlow < Node::Object # @return [String, nil] def authorization_url self["authorizationUrl"] end # @return [String, nil] def token_url self["tokenUrl"] end # @return [String, nil] def refresh_url self["refreshUrl"] end # @return [Map<String, String>] def scopes self["scopes"] end end end end
Version data entries
10 entries across 10 versions & 2 rubygems