Class: OnlinePayments::SDK::Merchant::Subsequent::SubsequentClient
- Inherits:
-
ApiResource
- Object
- ApiResource
- OnlinePayments::SDK::Merchant::Subsequent::SubsequentClient
- Defined in:
- lib/onlinepayments/sdk/merchant/subsequent/subsequent_client.rb
Overview
Subsequent client. Thread-safe.
Instance Attribute Summary
Attributes inherited from ApiResource
#client_meta_info, #communicator
Instance Method Summary collapse
-
#initialize(parent, path_context) ⇒ SubsequentClient
constructor
A new instance of SubsequentClient.
-
#subsequent_payment(payment_id, body, context = nil) ⇒ OnlinePayments::SDK::Domain::SubsequentPaymentResponse
Resource /v2/{merchantId}/payments/{paymentId}/subsequent - Subsequent payment.
Constructor Details
#initialize(parent, path_context) ⇒ SubsequentClient
Returns a new instance of SubsequentClient.
19 20 21 |
# File 'lib/onlinepayments/sdk/merchant/subsequent/subsequent_client.rb', line 19 def initialize(parent, path_context) super(parent: parent, path_context: path_context) end |
Instance Method Details
#subsequent_payment(payment_id, body, context = nil) ⇒ OnlinePayments::SDK::Domain::SubsequentPaymentResponse
Resource /v2/{merchantId}/payments/{paymentId}/subsequent - Subsequent payment
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/onlinepayments/sdk/merchant/subsequent/subsequent_client.rb', line 39 def subsequent_payment(payment_id, body, context = nil) path_context = { 'paymentId'.freeze => payment_id, } uri = instantiate_uri('/v2/{merchantId}/payments/{paymentId}/subsequent', path_context) @communicator.post( uri, client_headers, nil, body, OnlinePayments::SDK::Domain::SubsequentPaymentResponse, context) rescue OnlinePayments::SDK::Communication::ResponseException => e error_type = OnlinePayments::SDK::Domain::PaymentErrorResponse error_object = @communicator.marshaller.unmarshal(e.body, error_type) raise OnlinePayments::SDK.create_exception(e.status_code, e.body, error_object, context) end |