Class: OrbipayPaymentsapiClient::OrbipayPaymentsapiClientHandlers::RetrieveCustomerAccountsPageHandler

Inherits:
Base
  • Object
show all
Defined in:
lib/orbipay_paymentsapi_client/handlers/retrieve_customer_accounts_page_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

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

#process(customer_accounts) ⇒ Object

[View source]

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
60
61
62
63
64
65
66
# File 'lib/orbipay_paymentsapi_client/handlers/retrieve_customer_accounts_page_handler.rb', line 13

def process(customer_accounts)

	configuration = Configuration::Configuration.new
	if customer_accounts.invocation_context.secret != nil
		configuration.set_values(secret: customer_accounts.invocation_context.secret)
	end
	if customer_accounts.invocation_context.api_key != nil
		configuration.set_values(client_api_key: customer_accounts.invocation_context.api_key)
	end
	if customer_accounts.invocation_context.auth_scheme != nil
		configuration.set_values(algorithm: customer_accounts.invocation_context.auth_scheme)
	end
	configuration.set_values(api_end_point: customer_accounts.api_end_point)
	if customer_accounts.invocation_context.idempotent_request_key != nil 
		configuration.logger.info "Idempotent Request Key: #{ customer_accounts.invocation_context.idempotent_request_key}"
	end
		api_client = ApiClient::ApiClient.new(configuration)
		api_instance = OrbipayPaymentsapiClientApis::CustomerAccountApi.new(api_client)
		channel = customer_accounts.invocation_context.channel
		client_key = customer_accounts.invocation_context.client_key
		product = customer_accounts.invocation_context.product
		if customer_accounts.invocation_context.timestamp != nil 
			timestamp = customer_accounts.invocation_context.timestamp
		else
			timestamp = CommonUtil::CommonUtil.time_stamp
		end
		idempotent_request_key = customer_accounts.invocation_context.idempotent_request_key
		requestor_type = customer_accounts.invocation_context.requestor_type
		id_customer = customer_accounts.id_customer
		query_id = customer_accounts.query_id
		requestor = customer_accounts.invocation_context.requestor
		x_opay_headers = customer_accounts.invocation_context.x_opay_headers
		trace_id = customer_accounts.invocation_context.trace_id
		page_size = customer_accounts.page_size
		from_index = customer_accounts.from_index
		to_index = customer_accounts.to_index
		opts = {
		requestor: requestor,
		x_opay_headers: x_opay_headers,
		trace_id: trace_id,
		page_size: page_size,
		from_index: from_index,
		to_index: to_index,
		}
		data, http_status_code, headers = api_instance.retrieve_customer_accounts_page(channel, client_key, product, timestamp, idempotent_request_key, requestor_type, id_customer, query_id,  opts)
		response = wrap_response_body(data)
		if response == nil
			response = CustomerAccounts.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(customer_accounts_response) ⇒ Object

[View source]

68
69
70
71
# File 'lib/orbipay_paymentsapi_client/handlers/retrieve_customer_accounts_page_handler.rb', line 68

def wrap_response_body(customer_accounts_response)
   	customer_accounts_json_object = CommonUtil::CommonUtil.object_to_http_body(customer_accounts_response)
   	CommonUtil::CommonUtil.deserialize(customer_accounts_json_object,"CustomerAccounts")
end

#wrap_response_headers(headers) ⇒ Object

[View source]

73
74
75
76
# File 'lib/orbipay_paymentsapi_client/handlers/retrieve_customer_accounts_page_handler.rb', line 73

def wrap_response_headers(headers)
	headers_json_object = CommonUtil::CommonUtil.object_to_http_body(headers)
	CommonUtil::CommonUtil.deserialize(headers_json_object,"InvocationContext")
end