Class: Stripe::Checkout::SessionCreateParams::PaymentMethodOptions::Swish
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Checkout::SessionCreateParams::PaymentMethodOptions::Swish
- Defined in:
- lib/stripe/params/checkout/session_create_params.rb
Instance Attribute Summary collapse
-
#reference ⇒ Object
The order reference that will be displayed to customers in the Swish application.
Instance Method Summary collapse
-
#initialize(reference: nil) ⇒ Swish
constructor
A new instance of Swish.
Methods inherited from RequestParams
Constructor Details
#initialize(reference: nil) ⇒ Swish
Returns a new instance of Swish.
1604 1605 1606 |
# File 'lib/stripe/params/checkout/session_create_params.rb', line 1604 def initialize(reference: nil) @reference = reference end |
Instance Attribute Details
#reference ⇒ Object
The order reference that will be displayed to customers in the Swish application. Defaults to the ‘id` of the Payment Intent.
1602 1603 1604 |
# File 'lib/stripe/params/checkout/session_create_params.rb', line 1602 def reference @reference end |