Class: Pokepay::Request::RefundExternalTransaction
- Defined in:
- lib/pokepay_partner_ruby_sdk/request/refund_external_transaction.rb
Instance Attribute Summary collapse
-
#response_class ⇒ Object
readonly
Returns the value of attribute response_class.
Attributes inherited from Request
Instance Method Summary collapse
-
#initialize(event_id, rest_args = {}) ⇒ RefundExternalTransaction
constructor
A new instance of RefundExternalTransaction.
Constructor Details
#initialize(event_id, rest_args = {}) ⇒ RefundExternalTransaction
Returns a new instance of RefundExternalTransaction.
7 8 9 10 11 12 |
# File 'lib/pokepay_partner_ruby_sdk/request/refund_external_transaction.rb', line 7 def initialize(event_id, rest_args = {}) @path = "/external-transactions" + "/" + event_id + "/refund" @method = "POST" @body_params = { }.merge(rest_args) @response_class = Pokepay::Response::ExternalTransactionDetail end |
Instance Attribute Details
#response_class ⇒ Object (readonly)
Returns the value of attribute response_class.
13 14 15 |
# File 'lib/pokepay_partner_ruby_sdk/request/refund_external_transaction.rb', line 13 def response_class @response_class end |