Class: Stripe::CustomerPaymentSourceVerifyParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::CustomerPaymentSourceVerifyParams
- Defined in:
- lib/stripe/params/customer_payment_source_verify_params.rb
Instance Attribute Summary collapse
-
#amounts ⇒ Object
Two positive integers, in cents, equal to the values of the microdeposits sent to the bank account.
-
#expand ⇒ Object
Specifies which fields in the response should be expanded.
Instance Method Summary collapse
-
#initialize(amounts: nil, expand: nil) ⇒ CustomerPaymentSourceVerifyParams
constructor
A new instance of CustomerPaymentSourceVerifyParams.
Methods inherited from RequestParams
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 = end |
Instance Attribute Details
#amounts ⇒ Object
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 |
#expand ⇒ Object
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 end |