class Openapi3Parser::Node::OauthFlows

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

Public Instance Methods

authorization_code() click to toggle source

@return [OauthFlow, nil]

# File lib/openapi3_parser/node/oauth_flows.rb, line 25
def authorization_code
  self["authorizationCode"]
end
client_credentials() click to toggle source

@return [OauthFlow, nil]

# File lib/openapi3_parser/node/oauth_flows.rb, line 20
def client_credentials
  self["clientCredentials"]
end
implicit() click to toggle source

@return [OauthFlow, nil]

# File lib/openapi3_parser/node/oauth_flows.rb, line 10
def implicit
  self["implicit"]
end
password() click to toggle source

@return [OauthFlow, nil]

# File lib/openapi3_parser/node/oauth_flows.rb, line 15
def password
  self["password"]
end