Class: Stripe::PaymentIntentUpdateParams::PaymentMethodOptions::Upi

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_update_params.rb

Defined Under Namespace

Classes: MandateOptions

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(mandate_options: nil, setup_future_usage: nil) ⇒ Upi

Returns a new instance of Upi.



5164
5165
5166
5167
# File 'lib/stripe/params/payment_intent_update_params.rb', line 5164

def initialize(mandate_options: nil, setup_future_usage: nil)
  @mandate_options = mandate_options
  @setup_future_usage = setup_future_usage
end

Instance Attribute Details

#mandate_optionsObject

Configuration options for setting up an eMandate



5160
5161
5162
# File 'lib/stripe/params/payment_intent_update_params.rb', line 5160

def mandate_options
  @mandate_options
end

#setup_future_usageObject

Attribute for param field setup_future_usage



5162
5163
5164
# File 'lib/stripe/params/payment_intent_update_params.rb', line 5162

def setup_future_usage
  @setup_future_usage
end