Class: Stripe::V2::Billing::IntentService::CommitParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Billing::IntentService::CommitParams
- Defined in:
- lib/stripe/services/v2/billing/intent_service.rb
Instance Attribute Summary collapse
-
#payment_intent ⇒ Object
ID of the PaymentIntent associated with this commit.
Instance Method Summary collapse
-
#initialize(payment_intent: nil) ⇒ CommitParams
constructor
A new instance of CommitParams.
Methods inherited from RequestParams
Constructor Details
#initialize(payment_intent: nil) ⇒ CommitParams
Returns a new instance of CommitParams.
378 379 380 |
# File 'lib/stripe/services/v2/billing/intent_service.rb', line 378 def initialize(payment_intent: nil) @payment_intent = payment_intent end |
Instance Attribute Details
#payment_intent ⇒ Object
ID of the PaymentIntent associated with this commit.
376 377 378 |
# File 'lib/stripe/services/v2/billing/intent_service.rb', line 376 def payment_intent @payment_intent end |