Class: Stripe::CustomerPaymentSourceVerifyParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/customer_payment_source_verify_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(amounts: nil, expand: nil) ⇒ CustomerPaymentSourceVerifyParams

Returns a new instance of CustomerPaymentSourceVerifyParams.



11
12
13
14
# File 'lib/stripe/params/customer_payment_source_verify_params.rb', line 11

def initialize(amounts: nil, expand: nil)
  @amounts = amounts
  @expand = expand
end

Instance Attribute Details

#amountsObject

Two positive integers, in cents, equal to the values of the microdeposits sent to the bank account.



7
8
9
# File 'lib/stripe/params/customer_payment_source_verify_params.rb', line 7

def amounts
  @amounts
end

#expandObject

Specifies which fields in the response should be expanded.



9
10
11
# File 'lib/stripe/params/customer_payment_source_verify_params.rb', line 9

def expand
  @expand
end