class Openapi3Parser::Node::OauthFlow

@see github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#oauthFlowObject

Public Instance Methods

authorization_url() click to toggle source

@return [String, nil]

# File lib/openapi3_parser/node/oauth_flow.rb, line 10
def authorization_url
  self["authorizationUrl"]
end
refresh_url() click to toggle source

@return [String, nil]

# File lib/openapi3_parser/node/oauth_flow.rb, line 20
def refresh_url
  self["refreshUrl"]
end
scopes() click to toggle source

@return [Map<String, String>]

# File lib/openapi3_parser/node/oauth_flow.rb, line 25
def scopes
  self["scopes"]
end
token_url() click to toggle source

@return [String, nil]

# File lib/openapi3_parser/node/oauth_flow.rb, line 15
def token_url
  self["tokenUrl"]
end