Class: Increase::Resources::Simulations::CardRefunds
- Inherits:
-
Object
- Object
- Increase::Resources::Simulations::CardRefunds
- Defined in:
- lib/increase/resources/simulations/card_refunds.rb
Instance Method Summary collapse
-
#create(params = {}, opts = {}) ⇒ Increase::Models::Transaction
Simulates refunding a card transaction.
-
#initialize(client:) ⇒ CardRefunds
constructor
A new instance of CardRefunds.
Constructor Details
#initialize(client:) ⇒ CardRefunds
Returns a new instance of CardRefunds.
7 8 9 |
# File 'lib/increase/resources/simulations/card_refunds.rb', line 7 def initialize(client:) @client = client end |
Instance Method Details
#create(params = {}, opts = {}) ⇒ Increase::Models::Transaction
Simulates refunding a card transaction. The full value of the original sandbox transaction is refunded.
21 22 23 24 25 26 27 28 |
# File 'lib/increase/resources/simulations/card_refunds.rb', line 21 def create(params = {}, opts = {}) req = {} req[:method] = :post req[:path] = "/simulations/card_refunds" req[:body] = params req[:model] = Increase::Models::Transaction @client.request(req, opts) end |