Class: Stripe::SetupIntent::ConfirmParams::PaymentMethodOptions::Paypal
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::SetupIntent::ConfirmParams::PaymentMethodOptions::Paypal
- Defined in:
- lib/stripe/resources/setup_intent.rb
Instance Attribute Summary collapse
-
#billing_agreement_id ⇒ Object
The PayPal Billing Agreement ID (BAID).
Instance Method Summary collapse
-
#initialize(billing_agreement_id: nil) ⇒ Paypal
constructor
A new instance of Paypal.
Methods inherited from RequestParams
Constructor Details
#initialize(billing_agreement_id: nil) ⇒ Paypal
Returns a new instance of Paypal.
3263 3264 3265 |
# File 'lib/stripe/resources/setup_intent.rb', line 3263 def initialize(billing_agreement_id: nil) @billing_agreement_id = billing_agreement_id end |
Instance Attribute Details
#billing_agreement_id ⇒ Object
The PayPal Billing Agreement ID (BAID). This is an ID generated by PayPal which represents the mandate between the merchant and the customer.
3261 3262 3263 |
# File 'lib/stripe/resources/setup_intent.rb', line 3261 def billing_agreement_id @billing_agreement_id end |