Class: CheckoutSdk::AgenticCommerce::DelegatedPaymentRiskSignal
- Inherits:
-
Object
- Object
- CheckoutSdk::AgenticCommerce::DelegatedPaymentRiskSignal
- Defined in:
- lib/checkout_sdk/agentic_commerce/delegated_payment_risk_signal.rb
Overview
Risk signal attached to a delegated payment request. Mirrors swagger ‘DelegatedPaymentRiskSignal`. All three fields are required per spec.
Instance Attribute Summary collapse
-
#action ⇒ String
Action taken based on the risk assessment.
-
#score ⇒ Integer
Risk score.
-
#type ⇒ String
Risk signal type.
Instance Attribute Details
#action ⇒ String
Returns Action taken based on the risk assessment. [Required].
14 15 16 17 18 |
# File 'lib/checkout_sdk/agentic_commerce/delegated_payment_risk_signal.rb', line 14 class DelegatedPaymentRiskSignal attr_accessor :type, :score, :action end |
#score ⇒ Integer
Returns Risk score. [Required].
14 15 16 17 18 |
# File 'lib/checkout_sdk/agentic_commerce/delegated_payment_risk_signal.rb', line 14 class DelegatedPaymentRiskSignal attr_accessor :type, :score, :action end |
#type ⇒ String
Returns Risk signal type. [Required].
14 15 16 17 18 |
# File 'lib/checkout_sdk/agentic_commerce/delegated_payment_risk_signal.rb', line 14 class DelegatedPaymentRiskSignal attr_accessor :type, :score, :action end |