Class: Stripe::PaymentIntentService::TriggerActionParams::ScanQrCode
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentService::TriggerActionParams::ScanQrCode
- Defined in:
- lib/stripe/services/payment_intent_service.rb
Instance Attribute Summary collapse
-
#result ⇒ Object
Whether the QR Code scan’s payment should succeed or fail.
Instance Method Summary collapse
-
#initialize(result: nil) ⇒ ScanQrCode
constructor
A new instance of ScanQrCode.
Methods inherited from RequestParams
Constructor Details
#initialize(result: nil) ⇒ ScanQrCode
Returns a new instance of ScanQrCode.
12544 12545 12546 |
# File 'lib/stripe/services/payment_intent_service.rb', line 12544 def initialize(result: nil) @result = result end |
Instance Attribute Details
#result ⇒ Object
Whether the QR Code scan’s payment should succeed or fail.
12542 12543 12544 |
# File 'lib/stripe/services/payment_intent_service.rb', line 12542 def result @result end |