Class: A2A::PushNotificationAuthenticationInfo
- Inherits:
-
ProtocolStruct
- Object
- Dry::Struct
- ProtocolStruct
- A2A::PushNotificationAuthenticationInfo
- Defined in:
- lib/a2a/types/push_notification_authentication_info.rb
Overview
Defines authentication details for a push notification endpoint.
Instance Method Summary collapse
-
#credentials ⇒ String?
Optional credentials required by the push notification endpoint.
-
#schemes ⇒ Array<String>
A list of supported authentication schemes (e.g., ‘Basic’, ‘Bearer’).
Methods included from Extensions::CaseTransformation
Instance Method Details
#credentials ⇒ String?
Returns Optional credentials required by the push notification endpoint.
10 |
# File 'lib/a2a/types/push_notification_authentication_info.rb', line 10 attribute? :credentials, Types::String.optional |
#schemes ⇒ Array<String>
Returns A list of supported authentication schemes (e.g., ‘Basic’, ‘Bearer’).
7 |
# File 'lib/a2a/types/push_notification_authentication_info.rb', line 7 attribute :schemes, Types::Array.of(Types::String) |