Class: Stripe::Issuing::Authorization::RespondParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::Authorization::RespondParams
- Defined in:
- lib/stripe/resources/issuing/authorization.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) ⇒ RespondParams
constructor
A new instance of RespondParams.
Methods inherited from RequestParams
Constructor Details
#initialize(confirmed: nil, expand: nil) ⇒ RespondParams
Returns a new instance of RespondParams.
1034 1035 1036 1037 |
# File 'lib/stripe/resources/issuing/authorization.rb', line 1034 def initialize(confirmed: nil, expand: nil) @confirmed = confirmed @expand = 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).
1030 1031 1032 |
# File 'lib/stripe/resources/issuing/authorization.rb', line 1030 def confirmed @confirmed end |
#expand ⇒ Object
Specifies which fields in the response should be expanded.
1032 1033 1034 |
# File 'lib/stripe/resources/issuing/authorization.rb', line 1032 def @expand end |