Exception: Ingenico::Connect::SDK::DeclinedRefundException
- Inherits:
-
DeclinedTransactionException
- Object
- RuntimeError
- ApiException
- DeclinedTransactionException
- Ingenico::Connect::SDK::DeclinedRefundException
- Defined in:
- lib/ingenico/connect/sdk/declined_refund_exception.rb
Overview
Indicates that a refund is declined by the Ingenico ePayments platform or one of its downstream partners/acquirers.
Instance Attribute Summary
Attributes inherited from ApiException
#error_id, #errors, #response_body, #status_code
Instance Method Summary collapse
-
#initialize(status_code, response_body, errors) ⇒ DeclinedRefundException
constructor
Create a new DeclinedRefundException.
-
#refund_result ⇒ Ingenico::Connect::SDK::Domain::Refund::RefundResult
The declined refund result as returned by the Ingenico ePayments platform.
Methods inherited from ApiException
Constructor Details
#initialize(status_code, response_body, errors) ⇒ DeclinedRefundException
Create a new DeclinedRefundException
10 11 12 13 14 15 16 17 18 |
# File 'lib/ingenico/connect/sdk/declined_refund_exception.rb', line 10 def initialize(status_code, response_body, errors) if errors.nil? super(status_code, response_body, nil, nil, (errors)) else super(status_code, response_body, errors.error_id, errors.errors, (errors)) end @errors = errors end |
Instance Method Details
#refund_result ⇒ Ingenico::Connect::SDK::Domain::Refund::RefundResult
The declined refund result as returned by the Ingenico ePayments platform.
22 23 24 25 26 27 28 |
# File 'lib/ingenico/connect/sdk/declined_refund_exception.rb', line 22 def refund_result if @errors.nil? nil else @errors.refund_result end end |