Class: Stripe::TestHelpers::Issuing::AuthorizationRespondParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::TestHelpers::Issuing::AuthorizationRespondParams
- Defined in:
- lib/stripe/params/test_helpers/issuing/authorization_respond_params.rb
Instance Attribute Summary collapse
-
#confirmed ⇒ Object
Whether to simulate the user confirming that the transaction was legitimate (true) or telling Stripe that it was fraudulent (false).
-
#expand ⇒ Object
Specifies which fields in the response should be expanded.
Instance Method Summary collapse
-
#initialize(confirmed: nil, expand: nil) ⇒ AuthorizationRespondParams
constructor
A new instance of AuthorizationRespondParams.
Methods inherited from RequestParams
Constructor Details
#initialize(confirmed: nil, expand: nil) ⇒ AuthorizationRespondParams
Returns a new instance of AuthorizationRespondParams.
13 14 15 16 |
# File 'lib/stripe/params/test_helpers/issuing/authorization_respond_params.rb', line 13 def initialize(confirmed: nil, expand: nil) @confirmed = confirmed = end |
Instance Attribute Details
#confirmed ⇒ Object
Whether to simulate the user confirming that the transaction was legitimate (true) or telling Stripe that it was fraudulent (false).
9 10 11 |
# File 'lib/stripe/params/test_helpers/issuing/authorization_respond_params.rb', line 9 def confirmed @confirmed end |
#expand ⇒ Object
Specifies which fields in the response should be expanded.
11 12 13 |
# File 'lib/stripe/params/test_helpers/issuing/authorization_respond_params.rb', line 11 def end |