Class: OnlinePayments::SDK::Merchant::Mandates::MandatesClient

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

Overview

Mandates client. Thread-safe.

Instance Attribute Summary

Attributes inherited from ApiResource

#client_meta_info, #communicator

Instance Method Summary collapse

Constructor Details

#initialize(parent, path_context) ⇒ MandatesClient

Returns a new instance of MandatesClient.

Parameters:



20
21
22
# File 'lib/onlinepayments/sdk/merchant/mandates/mandates_client.rb', line 20

def initialize(parent, path_context)
  super(parent: parent, path_context: path_context)
end

Instance Method Details

#block_mandate(unique_mandate_reference, context = nil) ⇒ OnlinePayments::SDK::Domain::GetMandateResponse

Resource /v2/{merchantId}/mandates/{uniqueMandateReference}/block - Block mandate

Parameters:

Returns:

Raises:



98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/onlinepayments/sdk/merchant/mandates/mandates_client.rb', line 98

def block_mandate(unique_mandate_reference, context = nil)
  path_context = {
    'uniqueMandateReference'.freeze => unique_mandate_reference,
  }
  uri = instantiate_uri('/v2/{merchantId}/mandates/{uniqueMandateReference}/block', path_context)
  @communicator.post(
    uri,
    client_headers,
    nil,
    nil,
    OnlinePayments::SDK::Domain::GetMandateResponse,
    context)
rescue OnlinePayments::SDK::Communication::ResponseException => e
  error_type = OnlinePayments::SDK::Domain::ErrorResponse
  error_object = @communicator.marshaller.unmarshal(e.body, error_type)
  raise OnlinePayments::SDK.create_exception(e.status_code, e.body, error_object, context)
end

#create_mandate(body, context = nil) ⇒ OnlinePayments::SDK::Domain::CreateMandateResponse

Resource /v2/{merchantId}/mandates - Create mandate

Parameters:

Returns:

Raises:



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

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

#get_mandate(unique_mandate_reference, context = nil) ⇒ OnlinePayments::SDK::Domain::GetMandateResponse

Resource /v2/{merchantId}/mandates/{uniqueMandateReference} - Get mandate

Parameters:

Returns:

Raises:



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

def get_mandate(unique_mandate_reference, context = nil)
  path_context = {
    'uniqueMandateReference'.freeze => unique_mandate_reference,
  }
  uri = instantiate_uri('/v2/{merchantId}/mandates/{uniqueMandateReference}', path_context)
  @communicator.get(
    uri,
    client_headers,
    nil,
    OnlinePayments::SDK::Domain::GetMandateResponse,
    context)
rescue OnlinePayments::SDK::Communication::ResponseException => e
  error_type = OnlinePayments::SDK::Domain::ErrorResponse
  error_object = @communicator.marshaller.unmarshal(e.body, error_type)
  raise OnlinePayments::SDK.create_exception(e.status_code, e.body, error_object, context)
end

#revoke_mandate(unique_mandate_reference, body, context = nil) ⇒ OnlinePayments::SDK::Domain::GetMandateResponse

Resource /v2/{merchantId}/mandates/{uniqueMandateReference}/revoke - Revoke mandate

Parameters:

Returns:

Raises:



163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# File 'lib/onlinepayments/sdk/merchant/mandates/mandates_client.rb', line 163

def revoke_mandate(unique_mandate_reference, body, context = nil)
  path_context = {
    'uniqueMandateReference'.freeze => unique_mandate_reference,
  }
  uri = instantiate_uri('/v2/{merchantId}/mandates/{uniqueMandateReference}/revoke', path_context)
  @communicator.post(
    uri,
    client_headers,
    nil,
    body,
    OnlinePayments::SDK::Domain::GetMandateResponse,
    context)
rescue OnlinePayments::SDK::Communication::ResponseException => e
  error_type = OnlinePayments::SDK::Domain::ErrorResponse
  error_object = @communicator.marshaller.unmarshal(e.body, error_type)
  raise OnlinePayments::SDK.create_exception(e.status_code, e.body, error_object, context)
end

#unblock_mandate(unique_mandate_reference, context = nil) ⇒ OnlinePayments::SDK::Domain::GetMandateResponse

Resource /v2/{merchantId}/mandates/{uniqueMandateReference}/unblock - Unblock mandate

Parameters:

Returns:

Raises:



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/onlinepayments/sdk/merchant/mandates/mandates_client.rb', line 130

def unblock_mandate(unique_mandate_reference, context = nil)
  path_context = {
    'uniqueMandateReference'.freeze => unique_mandate_reference,
  }
  uri = instantiate_uri('/v2/{merchantId}/mandates/{uniqueMandateReference}/unblock', path_context)
  @communicator.post(
    uri,
    client_headers,
    nil,
    nil,
    OnlinePayments::SDK::Domain::GetMandateResponse,
    context)
rescue OnlinePayments::SDK::Communication::ResponseException => e
  error_type = OnlinePayments::SDK::Domain::ErrorResponse
  error_object = @communicator.marshaller.unmarshal(e.body, error_type)
  raise OnlinePayments::SDK.create_exception(e.status_code, e.body, error_object, context)
end