Class: OnlinePayments::SDK::Merchant::HostedCheckout::HostedCheckoutClient

Inherits:
ApiResource
  • Object
show all
Defined in:
lib/onlinepayments/sdk/merchant/hostedcheckout/hosted_checkout_client.rb

Overview

HostedCheckout client. Thread-safe.

Instance Attribute Summary

Attributes inherited from ApiResource

#client_meta_info, #communicator

Instance Method Summary collapse

Constructor Details

#initialize(parent, path_context = nil) ⇒ HostedCheckoutClient

Returns a new instance of HostedCheckoutClient.

Parameters:



20
21
22
# File 'lib/onlinepayments/sdk/merchant/hostedcheckout/hosted_checkout_client.rb', line 20

def initialize(parent, path_context = nil)
  super(parent, path_context)
end

Instance Method Details

#create_hosted_checkout(body, context = nil) ⇒ OnlinePayments::SDK::Domain::CreateHostedCheckoutResponse

Resource /v2/{merchantId}/hostedcheckouts

Parameters:

Returns:

Raises:



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/onlinepayments/sdk/merchant/hostedcheckout/hosted_checkout_client.rb', line 37

def create_hosted_checkout(body, context = nil)
  uri = instantiate_uri('/v2/{merchantId}/hostedcheckouts')
  @communicator.post(
    uri,
    client_headers,
    nil,
    body,
    OnlinePayments::SDK::Domain::CreateHostedCheckoutResponse,
    context
  )
rescue ResponseException => e
  error_type = OnlinePayments::SDK::Domain::ErrorResponse
  error_object = @communicator.marshaller.unmarshal(e.body, error_type)
  raise create_exception(e.status_code, e.body, error_object, context)
end

#get_hosted_checkout(hosted_checkout_id, context = nil) ⇒ OnlinePayments::SDK::Domain::GetHostedCheckoutResponse

Resource /v2/{merchantId}/hostedcheckouts/{hostedCheckoutId}

Parameters:

Returns:

Raises:



66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/onlinepayments/sdk/merchant/hostedcheckout/hosted_checkout_client.rb', line 66

def get_hosted_checkout(hosted_checkout_id, context = nil)
  path_context = {
    'hostedCheckoutId'.freeze => hosted_checkout_id,
  }
  uri = instantiate_uri('/v2/{merchantId}/hostedcheckouts/{hostedCheckoutId}', path_context)
  @communicator.get(
    uri,
    client_headers,
    nil,
    OnlinePayments::SDK::Domain::GetHostedCheckoutResponse,
    context
  )
rescue ResponseException => e
  error_type = OnlinePayments::SDK::Domain::ErrorResponse
  error_object = @communicator.marshaller.unmarshal(e.body, error_type)
  raise create_exception(e.status_code, e.body, error_object, context)
end