Class: Stripe::V2::Billing::IntentCommitParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Billing::IntentCommitParams
- Defined in:
- lib/stripe/params/v2/billing/intent_commit_params.rb
Instance Attribute Summary collapse
-
#payment_intent ⇒ Object
ID of the PaymentIntent associated with this commit.
Instance Method Summary collapse
-
#initialize(payment_intent: nil) ⇒ IntentCommitParams
constructor
A new instance of IntentCommitParams.
Methods inherited from RequestParams
Constructor Details
#initialize(payment_intent: nil) ⇒ IntentCommitParams
Returns a new instance of IntentCommitParams.
11 12 13 |
# File 'lib/stripe/params/v2/billing/intent_commit_params.rb', line 11 def initialize(payment_intent: nil) @payment_intent = payment_intent end |
Instance Attribute Details
#payment_intent ⇒ Object
ID of the PaymentIntent associated with this commit.
9 10 11 |
# File 'lib/stripe/params/v2/billing/intent_commit_params.rb', line 9 def payment_intent @payment_intent end |