Class: Adyen::ModificationsApi
- Inherits:
-
Service
- Object
- Service
- Adyen::ModificationsApi
show all
- Defined in:
- lib/adyen/services/checkout/modifications_api.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
-
#cancel_authorised_payment(request, headers: {}) ⇒ Object
-
#cancel_authorised_payment_by_psp_reference(request, payment_psp_reference, headers: {}) ⇒ Object
-
#capture_authorised_payment(request, payment_psp_reference, headers: {}) ⇒ Object
-
#initialize(client, version = DEFAULT_VERSION) ⇒ ModificationsApi
constructor
A new instance of ModificationsApi.
-
#refund_captured_payment(request, payment_psp_reference, headers: {}) ⇒ Object
-
#refund_or_cancel_payment(request, payment_psp_reference, headers: {}) ⇒ Object
-
#update_authorised_amount(request, payment_psp_reference, headers: {}) ⇒ Object
Methods inherited from Service
action_for_method_name, #create_query_string
Constructor Details
#initialize(client, version = DEFAULT_VERSION) ⇒ ModificationsApi
Returns a new instance of ModificationsApi.
6
7
8
|
# File 'lib/adyen/services/checkout/modifications_api.rb', line 6
def initialize(client, version = DEFAULT_VERSION)
super(client, version, 'Checkout')
end
|
Instance Attribute Details
#service ⇒ Object
Returns the value of attribute service.
4
5
6
|
# File 'lib/adyen/services/checkout/modifications_api.rb', line 4
def service
@service
end
|
#version ⇒ Object
Returns the value of attribute version.
4
5
6
|
# File 'lib/adyen/services/checkout/modifications_api.rb', line 4
def version
@version
end
|
Instance Method Details
#cancel_authorised_payment(request, headers: {}) ⇒ Object
10
11
12
13
14
15
16
17
|
# File 'lib/adyen/services/checkout/modifications_api.rb', line 10
def cancel_authorised_payment(request, headers: {})
endpoint = '/cancels'.gsub(/{.+?}/, '%s')
endpoint = endpoint.gsub(%r{^/}, '')
endpoint = format(endpoint)
action = { method: 'post', url: endpoint }
@client.call_adyen_api(@service, action, request, , @version)
end
|
#cancel_authorised_payment_by_psp_reference(request, payment_psp_reference, headers: {}) ⇒ Object
28
29
30
31
32
33
34
35
|
# File 'lib/adyen/services/checkout/modifications_api.rb', line 28
def cancel_authorised_payment_by_psp_reference(request, payment_psp_reference, headers: {})
endpoint = '/payments/{paymentPspReference}/cancels'.gsub(/{.+?}/, '%s')
endpoint = endpoint.gsub(%r{^/}, '')
endpoint = format(endpoint, payment_psp_reference)
action = { method: 'post', url: endpoint }
@client.call_adyen_api(@service, action, request, , @version)
end
|
#capture_authorised_payment(request, payment_psp_reference, headers: {}) ⇒ Object
37
38
39
40
41
42
43
44
|
# File 'lib/adyen/services/checkout/modifications_api.rb', line 37
def capture_authorised_payment(request, payment_psp_reference, headers: {})
endpoint = '/payments/{paymentPspReference}/captures'.gsub(/{.+?}/, '%s')
endpoint = endpoint.gsub(%r{^/}, '')
endpoint = format(endpoint, payment_psp_reference)
action = { method: 'post', url: endpoint }
@client.call_adyen_api(@service, action, request, , @version)
end
|
#refund_captured_payment(request, payment_psp_reference, headers: {}) ⇒ Object
46
47
48
49
50
51
52
53
|
# File 'lib/adyen/services/checkout/modifications_api.rb', line 46
def refund_captured_payment(request, payment_psp_reference, headers: {})
endpoint = '/payments/{paymentPspReference}/refunds'.gsub(/{.+?}/, '%s')
endpoint = endpoint.gsub(%r{^/}, '')
endpoint = format(endpoint, payment_psp_reference)
action = { method: 'post', url: endpoint }
@client.call_adyen_api(@service, action, request, , @version)
end
|
#refund_or_cancel_payment(request, payment_psp_reference, headers: {}) ⇒ Object
55
56
57
58
59
60
61
62
|
# File 'lib/adyen/services/checkout/modifications_api.rb', line 55
def refund_or_cancel_payment(request, payment_psp_reference, headers: {})
endpoint = '/payments/{paymentPspReference}/reversals'.gsub(/{.+?}/, '%s')
endpoint = endpoint.gsub(%r{^/}, '')
endpoint = format(endpoint, payment_psp_reference)
action = { method: 'post', url: endpoint }
@client.call_adyen_api(@service, action, request, , @version)
end
|
#update_authorised_amount(request, payment_psp_reference, headers: {}) ⇒ Object
19
20
21
22
23
24
25
26
|
# File 'lib/adyen/services/checkout/modifications_api.rb', line 19
def update_authorised_amount(request, payment_psp_reference, headers: {})
endpoint = '/payments/{paymentPspReference}/amountUpdates'.gsub(/{.+?}/, '%s')
endpoint = endpoint.gsub(%r{^/}, '')
endpoint = format(endpoint, payment_psp_reference)
action = { method: 'post', url: endpoint }
@client.call_adyen_api(@service, action, request, , @version)
end
|