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.



5700
5701
5702
5703
# File 'lib/stripe/params/payment_intent_update_params.rb', line 5700

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



5696
5697
5698
# File 'lib/stripe/params/payment_intent_update_params.rb', line 5696

def mandate_options
  @mandate_options
end

#setup_future_usageObject

Attribute for param field setup_future_usage



5698
5699
5700
# File 'lib/stripe/params/payment_intent_update_params.rb', line 5698

def setup_future_usage
  @setup_future_usage
end