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

Version Path
openapi3_parser-0.9.2 lib/openapi3_parser/node/oauth_flow.rb
mountapi-0.11.1 vendor/bundle/ruby/2.7.0/gems/openapi3_parser-0.9.1/lib/openapi3_parser/node/oauth_flow.rb
openapi3_parser-0.9.1 lib/openapi3_parser/node/oauth_flow.rb
openapi3_parser-0.9.0 lib/openapi3_parser/node/oauth_flow.rb
openapi3_parser-0.8.2 lib/openapi3_parser/node/oauth_flow.rb
openapi3_parser-0.8.1 lib/openapi3_parser/node/oauth_flow.rb
openapi3_parser-0.8.0 lib/openapi3_parser/node/oauth_flow.rb
openapi3_parser-0.7.0 lib/openapi3_parser/node/oauth_flow.rb
openapi3_parser-0.6.1 lib/openapi3_parser/node/oauth_flow.rb
openapi3_parser-0.6.0 lib/openapi3_parser/node/oauth_flow.rb