Class: A2A::PasswordOAuthFlow
- Inherits:
-
ProtocolStruct
- Object
- Dry::Struct
- ProtocolStruct
- A2A::PasswordOAuthFlow
- Defined in:
- lib/a2a/types/password_oauth_flow.rb
Overview
Defines configuration details for the OAuth 2.0 Resource Owner Password flow.
Instance Method Summary collapse
-
#refresh_url ⇒ URI?
The URL to be used for obtaining refresh tokens.
-
#scopes ⇒ Hash
The available scopes for the OAuth2 security scheme.
-
#token_url ⇒ URI
The token URL to be used for this flow.
Methods included from Extensions::CaseTransformation
Instance Method Details
#refresh_url ⇒ URI?
10 |
# File 'lib/a2a/types/password_oauth_flow.rb', line 10 attribute? :refresh_url, Types::URI.optional |
#scopes ⇒ Hash
14 |
# File 'lib/a2a/types/password_oauth_flow.rb', line 14 attribute :scopes, Types::Hash.map(Types::String, Types::String) |
#token_url ⇒ URI
7 |
# File 'lib/a2a/types/password_oauth_flow.rb', line 7 attribute :token_url, Types::URI |