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 = nil) ⇒ 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 = nil)
  super(parent, path_context)
end

Instance Method Details

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

Resource /v2/{merchantId}/mandates/{uniqueMandateReference}/block

Parameters:

Returns:

Raises:



97
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 97

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 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

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

Resource /v2/{merchantId}/mandates

Parameters:

Returns:

Raises:



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

def create_mandate(body, context = nil)
  uri = instantiate_uri('/v2/{merchantId}/mandates')
  @communicator.post(
    uri,
    client_headers,
    nil,
    body,
    OnlinePayments::SDK::Domain::CreateMandateResponse,
    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_mandate(unique_mandate_reference, context = nil) ⇒ OnlinePayments::SDK::Domain::GetMandateResponse

Resource /v2/{merchantId}/mandates/{uniqueMandateReference}

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/mandates/mandates_client.rb', line 66

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 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

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

Resource /v2/{merchantId}/mandates/{uniqueMandateReference}/revoke

Parameters:

Returns:

Raises:



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

def revoke_mandate(unique_mandate_reference, 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,
    nil,
    OnlinePayments::SDK::Domain::GetMandateResponse,
    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

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

Resource /v2/{merchantId}/mandates/{uniqueMandateReference}/unblock

Parameters:

Returns:

Raises:



129
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 129

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 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