Class: A2A::AuthorizationCodeOAuthFlow
- Inherits:
-
ProtocolStruct
- Object
- Dry::Struct
- ProtocolStruct
- A2A::AuthorizationCodeOAuthFlow
- Defined in:
- lib/a2a/types/authorization_code_oauth_flow.rb
Overview
Defines configuration details for the OAuth 2.0 Authorization Code flow.
Instance Method Summary collapse
-
#authorization_url ⇒ URI
The authorization URL to be used for this flow.
-
#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
#authorization_url ⇒ URI
8 |
# File 'lib/a2a/types/authorization_code_oauth_flow.rb', line 8 attribute :authorization_url, Types::URI |
#refresh_url ⇒ URI?
16 |
# File 'lib/a2a/types/authorization_code_oauth_flow.rb', line 16 attribute? :refresh_url, Types::URI.optional |
#scopes ⇒ Hash
20 |
# File 'lib/a2a/types/authorization_code_oauth_flow.rb', line 20 attribute :scopes, Types::Hash.map(Types::String, Types::String) |
#token_url ⇒ URI
12 |
# File 'lib/a2a/types/authorization_code_oauth_flow.rb', line 12 attribute :token_url, Types::URI |