Class: OrbipayPaymentsapiClient::OrbipayPaymentsapiClientHandlers::DeletePaymentHandler
- Inherits:
-
Base
- Object
- Base
- OrbipayPaymentsapiClient::OrbipayPaymentsapiClientHandlers::DeletePaymentHandler
- Defined in:
- lib/orbipay_paymentsapi_client/handlers/delete_payment_handler.rb
Overview
.
############################################################################################
## This class subject to change without prior notice, Please dont use this class directly.##
############################################################################################
Instance Attribute Summary
Attributes inherited from Base
#api_end_point, #http_status_code, #invocation_context, #live_mode
Instance Method Summary collapse
- #populate_request_body(payment) ⇒ Object
- #process(payment) ⇒ Object
- #wrap_response_body(delete_response) ⇒ Object
- #wrap_response_headers(headers) ⇒ Object
Methods inherited from Base
attribute_map, #for_client, #initialize, #requested_by, #set_api_end_point, #set_values, swagger_types, #vide_channel, #with_context
Constructor Details
This class inherits a constructor from OrbipayPaymentsapiClient::Base
Instance Method Details
#populate_request_body(payment) ⇒ Object
61 62 63 64 65 |
# File 'lib/orbipay_paymentsapi_client/handlers/delete_payment_handler.rb', line 61 def populate_request_body(payment) payment_json_object = CommonUtil::CommonUtil.object_to_http_body(payment) delete_payment_request = CommonUtil::CommonUtil.deserialize(payment_json_object,"DeletePaymentRequest") delete_payment_request end |
#process(payment) ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/orbipay_paymentsapi_client/handlers/delete_payment_handler.rb', line 13 def process(payment) configuration = Configuration::Configuration.new if payment.invocation_context.secret != nil configuration.set_values(secret: payment.invocation_context.secret) end if payment.invocation_context.api_key != nil configuration.set_values(client_api_key: payment.invocation_context.api_key) end if payment.invocation_context.auth_scheme != nil configuration.set_values(algorithm: payment.invocation_context.auth_scheme) end configuration.set_values(api_end_point: payment.api_end_point) if payment.invocation_context.idempotent_request_key != nil configuration.logger.info "Idempotent Request Key: #{ payment.invocation_context.idempotent_request_key}" end api_client = ApiClient::ApiClient.new(configuration) api_instance = OrbipayPaymentsapiClientApis::PaymentApi.new(api_client) channel = payment.invocation_context.channel client_key = payment.invocation_context.client_key product = payment.invocation_context.product if payment.invocation_context. != nil = payment.invocation_context. else = CommonUtil::CommonUtil.time_stamp end idempotent_request_key = payment.invocation_context.idempotent_request_key requestor_type = payment.invocation_context.requestor_type id_payment = payment.id_payment id_customer = payment.id_customer delete_payment_request = self.populate_request_body(payment) requestor = payment.invocation_context.requestor x_opay_headers = payment.invocation_context.x_opay_headers opts = { requestor: requestor, x_opay_headers: x_opay_headers, } data, http_status_code, headers = api_instance.delete_payment(channel, client_key, product, , idempotent_request_key, requestor_type, id_payment, id_customer, delete_payment_request, opts) response = wrap_response_body(data) if response == nil response = Payment.new end response.set_values(invocation_context: wrap_response_headers(headers)) response.set_values(http_status_code: http_status_code) response end |
#wrap_response_body(delete_response) ⇒ Object
67 68 69 70 |
# File 'lib/orbipay_paymentsapi_client/handlers/delete_payment_handler.rb', line 67 def wrap_response_body(delete_response) payment_json_object = CommonUtil::CommonUtil.object_to_http_body(delete_response) CommonUtil::CommonUtil.deserialize(payment_json_object,"Payment") end |
#wrap_response_headers(headers) ⇒ Object
72 73 74 75 |
# File 'lib/orbipay_paymentsapi_client/handlers/delete_payment_handler.rb', line 72 def wrap_response_headers(headers) headers_json_object = CommonUtil::CommonUtil.object_to_http_body(headers) CommonUtil::CommonUtil.deserialize(headers_json_object,"InvocationContext") end |