Class: Stripe::PaymentIntent::TriggerActionParams::ScanQrCode
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntent::TriggerActionParams::ScanQrCode
- Defined in:
- lib/stripe/resources/payment_intent.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.
13283 13284 13285 |
# File 'lib/stripe/resources/payment_intent.rb', line 13283 def initialize(result: nil) @result = result end |
Instance Attribute Details
#result ⇒ Object
Whether the QR Code scan’s payment should succeed or fail.
13281 13282 13283 |
# File 'lib/stripe/resources/payment_intent.rb', line 13281 def result @result end |