struct Swagger::OAuth2Flow
- Swagger::OAuth2Flow
- Struct
- Value
- Object
Overview
OAuth2 Flow Object
Defined in:
swagger/oauth2_flow.crConstant Summary
-
GRANT_TYPES =
["authorizationCode", "implicit", "password", "clientCredentials"] of ::String
Constructors
Instance Method Summary
- #authorization_url : String?
- #authorization_url=(authorization_url)
- #name : String
- #name=(name)
- #refresh_url : String?
- #refresh_url=(refresh_url)
- #scopes : Hash(String, String)?
- #scopes=(scopes)
- #token_url : String?
- #token_url=(token_url)
Constructor Detail
def self.new(name : String, authorization_url : String? = nil, token_url : String? = nil, refresh_url : String? = nil, scopes : Hash(String, String)? = nil)
#