Class: Stripe::SetupIntentService::CreateParams::PaymentMethodOptions::Paypal
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::SetupIntentService::CreateParams::PaymentMethodOptions::Paypal
- Defined in:
- lib/stripe/services/setup_intent_service.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.
911 912 913 |
# File 'lib/stripe/services/setup_intent_service.rb', line 911 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.
909 910 911 |
# File 'lib/stripe/services/setup_intent_service.rb', line 909 def billing_agreement_id @billing_agreement_id end |