Class: Stripe::SetupIntentVerifyMicrodepositsParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::SetupIntentVerifyMicrodepositsParams
- Defined in:
- lib/stripe/params/setup_intent_verify_microdeposits_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.
-
#descriptor_code ⇒ Object
A six-character code starting with SM present in the microdeposit sent to the bank account.
-
#expand ⇒ Object
Specifies which fields in the response should be expanded.
Instance Method Summary collapse
-
#initialize(amounts: nil, descriptor_code: nil, expand: nil) ⇒ SetupIntentVerifyMicrodepositsParams
constructor
A new instance of SetupIntentVerifyMicrodepositsParams.
Methods inherited from RequestParams
Constructor Details
#initialize(amounts: nil, descriptor_code: nil, expand: nil) ⇒ SetupIntentVerifyMicrodepositsParams
Returns a new instance of SetupIntentVerifyMicrodepositsParams.
13 14 15 16 17 |
# File 'lib/stripe/params/setup_intent_verify_microdeposits_params.rb', line 13 def initialize(amounts: nil, descriptor_code: nil, expand: nil) @amounts = amounts @descriptor_code = descriptor_code = 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/setup_intent_verify_microdeposits_params.rb', line 7 def amounts @amounts end |
#descriptor_code ⇒ Object
A six-character code starting with SM present in the microdeposit sent to the bank account.
9 10 11 |
# File 'lib/stripe/params/setup_intent_verify_microdeposits_params.rb', line 9 def descriptor_code @descriptor_code end |
#expand ⇒ Object
Specifies which fields in the response should be expanded.
11 12 13 |
# File 'lib/stripe/params/setup_intent_verify_microdeposits_params.rb', line 11 def end |