adyen-ruby-api-library 7.0.1 → 7.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (128) hide show
  1. checksums.yaml +4 -4
  2. data/.github/CODEOWNERS +1 -1
  3. data/.github/release.yml +18 -0
  4. data/.github/workflows/gh_release.yml +16 -0
  5. data/.github/workflows/release_request.yml +15 -0
  6. data/.github/workflows/ruby.yml +1 -1
  7. data/.github/workflows/services.yml +28 -0
  8. data/.rubocop.yml +8 -0
  9. data/Gemfile +7 -7
  10. data/Makefile +14 -10
  11. data/README.md +13 -10
  12. data/Rakefile +3 -3
  13. data/adyen-ruby-api-library.gemspec +6 -3
  14. data/bin/console +2 -2
  15. data/lib/adyen/client.rb +91 -75
  16. data/lib/adyen/errors.rb +23 -18
  17. data/lib/adyen/hash_with_accessors.rb +12 -7
  18. data/lib/adyen/services/balanceControlService.rb +7 -14
  19. data/lib/adyen/services/balancePlatform/account_holders_api.rb +22 -38
  20. data/lib/adyen/services/balancePlatform/balance_accounts_api.rb +48 -79
  21. data/lib/adyen/services/balancePlatform/bank_account_validation_api.rb +6 -13
  22. data/lib/adyen/services/balancePlatform/grant_accounts_api.rb +6 -13
  23. data/lib/adyen/services/balancePlatform/grant_offers_api.rb +12 -22
  24. data/lib/adyen/services/balancePlatform/payment_instrument_groups_api.rb +16 -29
  25. data/lib/adyen/services/balancePlatform/payment_instruments_api.rb +26 -45
  26. data/lib/adyen/services/balancePlatform/platform_api.rb +12 -22
  27. data/lib/adyen/services/balancePlatform/transaction_rules_api.rb +21 -37
  28. data/lib/adyen/services/balancePlatform.rb +38 -40
  29. data/lib/adyen/services/binLookup.rb +12 -22
  30. data/lib/adyen/services/checkout/classic_checkout_sdk_api.rb +11 -21
  31. data/lib/adyen/services/checkout/modifications_api.rb +31 -53
  32. data/lib/adyen/services/checkout/orders_api.rb +16 -29
  33. data/lib/adyen/services/checkout/payment_links_api.rb +16 -29
  34. data/lib/adyen/services/checkout/payments_api.rb +40 -53
  35. data/lib/adyen/services/checkout/recurring_api.rb +13 -23
  36. data/lib/adyen/services/checkout/utility_api.rb +11 -21
  37. data/lib/adyen/services/checkout.rb +32 -34
  38. data/lib/adyen/services/dataProtection.rb +7 -14
  39. data/lib/adyen/services/dispute.rb +6 -5
  40. data/lib/adyen/services/legalEntityManagement/business_lines_api.rb +21 -37
  41. data/lib/adyen/services/legalEntityManagement/documents_api.rb +21 -37
  42. data/lib/adyen/services/legalEntityManagement/hosted_onboarding_api.rb +16 -29
  43. data/lib/adyen/services/legalEntityManagement/legal_entities_api.rb +26 -45
  44. data/lib/adyen/services/legalEntityManagement/pci_questionnaires_api.rb +21 -37
  45. data/lib/adyen/services/legalEntityManagement/terms_of_service_api.rb +25 -29
  46. data/lib/adyen/services/legalEntityManagement/transfer_instruments_api.rb +21 -37
  47. data/lib/adyen/services/legalEntityManagement.rb +32 -34
  48. data/lib/adyen/services/management/account_company_level_api.rb +18 -31
  49. data/lib/adyen/services/management/account_merchant_level_api.rb +22 -38
  50. data/lib/adyen/services/management/account_store_level_api.rb +43 -71
  51. data/lib/adyen/services/management/allowed_origins_company_level_api.rb +21 -37
  52. data/lib/adyen/services/management/allowed_origins_merchant_level_api.rb +21 -37
  53. data/lib/adyen/services/management/api_credentials_company_level_api.rb +22 -38
  54. data/lib/adyen/services/management/api_credentials_merchant_level_api.rb +22 -38
  55. data/lib/adyen/services/management/api_key_company_level_api.rb +6 -13
  56. data/lib/adyen/services/management/api_key_merchant_level_api.rb +6 -13
  57. data/lib/adyen/services/management/client_key_company_level_api.rb +6 -13
  58. data/lib/adyen/services/management/client_key_merchant_level_api.rb +6 -13
  59. data/lib/adyen/services/management/my_api_credential_api.rb +26 -45
  60. data/lib/adyen/services/management/payment_methods_merchant_level_api.rb +32 -54
  61. data/lib/adyen/services/management/payout_settings_merchant_level_api.rb +26 -45
  62. data/lib/adyen/services/management/split_configuration_merchant_level_api.rb +92 -0
  63. data/lib/adyen/services/management/terminal_actions_company_level_api.rb +24 -40
  64. data/lib/adyen/services/management/terminal_actions_terminal_level_api.rb +6 -13
  65. data/lib/adyen/services/management/terminal_orders_company_level_api.rb +55 -89
  66. data/lib/adyen/services/management/terminal_orders_merchant_level_api.rb +55 -89
  67. data/lib/adyen/services/management/terminal_settings_company_level_api.rb +23 -39
  68. data/lib/adyen/services/management/terminal_settings_merchant_level_api.rb +23 -39
  69. data/lib/adyen/services/management/terminal_settings_store_level_api.rb +45 -73
  70. data/lib/adyen/services/management/terminal_settings_terminal_level_api.rb +21 -37
  71. data/lib/adyen/services/management/terminals_terminal_level_api.rb +7 -14
  72. data/lib/adyen/services/management/users_company_level_api.rb +22 -38
  73. data/lib/adyen/services/management/users_merchant_level_api.rb +22 -38
  74. data/lib/adyen/services/management/webhooks_company_level_api.rb +37 -62
  75. data/lib/adyen/services/management/webhooks_merchant_level_api.rb +37 -62
  76. data/lib/adyen/services/management.rb +99 -96
  77. data/lib/adyen/services/marketpay.rb +42 -36
  78. data/lib/adyen/services/payment/general_api.rb +56 -0
  79. data/lib/adyen/services/payment/modifications_api.rb +83 -0
  80. data/lib/adyen/services/payment.rb +10 -158
  81. data/lib/adyen/services/payout/initialization_api.rb +16 -29
  82. data/lib/adyen/services/payout/instant_payouts_api.rb +6 -13
  83. data/lib/adyen/services/payout/reviewing_api.rb +11 -21
  84. data/lib/adyen/services/payout.rb +19 -21
  85. data/lib/adyen/services/posTerminalManagement.rb +27 -46
  86. data/lib/adyen/services/recurring.rb +32 -54
  87. data/lib/adyen/services/service.rb +5 -4
  88. data/lib/adyen/services/storedValue.rb +32 -54
  89. data/lib/adyen/services/transfers/capital_api.rb +38 -0
  90. data/lib/adyen/services/transfers/transactions_api.rb +12 -22
  91. data/lib/adyen/services/transfers/transfers_api.rb +6 -13
  92. data/lib/adyen/services/transfers.rb +20 -17
  93. data/lib/adyen/utils/hmac_validator.rb +9 -9
  94. data/lib/adyen/version.rb +3 -3
  95. data/lib/adyen-ruby-api-library.rb +21 -21
  96. data/spec/account_spec.rb +20 -20
  97. data/spec/balance_control_spec.rb +28 -29
  98. data/spec/balance_platform_spec.rb +108 -102
  99. data/spec/bin_lookup_spec.rb +50 -50
  100. data/spec/checkout_spec.rb +573 -524
  101. data/spec/client_spec.rb +117 -70
  102. data/spec/data_protection_spec.rb +4 -4
  103. data/spec/dispute_spec.rb +7 -7
  104. data/spec/errors_spec.rb +37 -17
  105. data/spec/fund_spec.rb +10 -10
  106. data/spec/hash_with_accessors_spec.rb +18 -8
  107. data/spec/hop_spec.rb +4 -4
  108. data/spec/lem_spec.rb +44 -49
  109. data/spec/management_spec.rb +46 -48
  110. data/spec/notification_spec.rb +9 -9
  111. data/spec/payments_spec.rb +31 -32
  112. data/spec/payouts_spec.rb +29 -32
  113. data/spec/pos_terminal_management_spec.rb +30 -32
  114. data/spec/recurring_spec.rb +8 -8
  115. data/spec/service_spec.rb +4 -0
  116. data/spec/spec_helper.rb +37 -35
  117. data/spec/stored_value_spec.rb +28 -27
  118. data/spec/transfers_spec.rb +48 -47
  119. data/spec/utils/hmac_validator_spec.rb +15 -14
  120. data/templates/api-single.mustache +13 -15
  121. data/templates/api-small.mustache +8 -15
  122. data/templates/api.mustache +7 -14
  123. metadata +27 -18
  124. data/.github/dependabot.yml +0 -8
  125. /data/spec/mocks/responses/Webhooks/{backslash_notification.json → backslash_webhook.json} +0 -0
  126. /data/spec/mocks/responses/Webhooks/{colon_notification.json → colon_webhook.json} +0 -0
  127. /data/spec/mocks/responses/Webhooks/{forwardslash_notification.json → forwardslash_webhook.json} +0 -0
  128. /data/spec/mocks/responses/Webhooks/{mixed_notification.json → mixed_webhook.json} +0 -0
@@ -1,49 +1,36 @@
1
1
  require_relative '../service'
2
2
  module Adyen
3
-
4
-
5
3
  class PaymentLinksApi < Service
6
4
  attr_accessor :service, :version
7
5
 
8
6
  def initialize(client, version = DEFAULT_VERSION)
9
- @service = "Checkout"
10
- @client = client
11
- @version = version
7
+ super(client, version, 'Checkout')
12
8
  end
13
9
 
14
- def get_payment_link(linkId, headers: {} )
15
- """
16
- Get a payment link
17
- """
18
- endpoint = "/paymentLinks/{linkId}".gsub(/{.+?}/, '%s')
19
- endpoint = endpoint.gsub(/^\//, "")
20
- endpoint = endpoint % [linkId]
10
+ def get_payment_link(link_id, headers: {})
11
+ endpoint = '/paymentLinks/{linkId}'.gsub(/{.+?}/, '%s')
12
+ endpoint = endpoint.gsub(%r{^/}, '')
13
+ endpoint = format(endpoint, link_id)
21
14
 
22
- action = { method: "get", url: endpoint}
15
+ action = { method: 'get', url: endpoint }
23
16
  @client.call_adyen_api(@service, action, {}, headers, @version)
24
17
  end
25
18
 
26
- def update_payment_link(request, linkId, headers: {} )
27
- """
28
- Update the status of a payment link
29
- """
30
- endpoint = "/paymentLinks/{linkId}".gsub(/{.+?}/, '%s')
31
- endpoint = endpoint.gsub(/^\//, "")
32
- endpoint = endpoint % [linkId]
19
+ def update_payment_link(request, link_id, headers: {})
20
+ endpoint = '/paymentLinks/{linkId}'.gsub(/{.+?}/, '%s')
21
+ endpoint = endpoint.gsub(%r{^/}, '')
22
+ endpoint = format(endpoint, link_id)
33
23
 
34
- action = { method: "patch", url: endpoint}
24
+ action = { method: 'patch', url: endpoint }
35
25
  @client.call_adyen_api(@service, action, request, headers, @version)
36
26
  end
37
27
 
38
- def payment_links(request, headers: {} )
39
- """
40
- Create a payment link
41
- """
42
- endpoint = "/paymentLinks".gsub(/{.+?}/, '%s')
43
- endpoint = endpoint.gsub(/^\//, "")
44
- endpoint = endpoint % []
28
+ def payment_links(request, headers: {})
29
+ endpoint = '/paymentLinks'.gsub(/{.+?}/, '%s')
30
+ endpoint = endpoint.gsub(%r{^/}, '')
31
+ endpoint = format(endpoint)
45
32
 
46
- action = { method: "post", url: endpoint}
33
+ action = { method: 'post', url: endpoint }
47
34
  @client.call_adyen_api(@service, action, request, headers, @version)
48
35
  end
49
36
 
@@ -1,85 +1,72 @@
1
1
  require_relative '../service'
2
2
  module Adyen
3
-
4
-
5
3
  class PaymentsApi < Service
6
4
  attr_accessor :service, :version
7
5
 
8
6
  def initialize(client, version = DEFAULT_VERSION)
9
- @service = "Checkout"
10
- @client = client
11
- @version = version
7
+ super(client, version, 'Checkout')
8
+ end
9
+
10
+ def get_result_of_payment_session(session_id, headers: {}, query_params: {})
11
+ endpoint = '/sessions/{sessionId}'.gsub(/{.+?}/, '%s')
12
+ endpoint = endpoint.gsub(%r{^/}, '')
13
+ endpoint = format(endpoint, session_id)
14
+ endpoint += create_query_string(query_params)
15
+ action = { method: 'get', url: endpoint }
16
+ @client.call_adyen_api(@service, action, {}, headers, @version)
12
17
  end
13
18
 
14
- def card_details(request, headers: {} )
15
- """
16
- Get the list of brands on the card
17
- """
18
- endpoint = "/cardDetails".gsub(/{.+?}/, '%s')
19
- endpoint = endpoint.gsub(/^\//, "")
20
- endpoint = endpoint % []
19
+ def card_details(request, headers: {})
20
+ endpoint = '/cardDetails'.gsub(/{.+?}/, '%s')
21
+ endpoint = endpoint.gsub(%r{^/}, '')
22
+ endpoint = format(endpoint)
21
23
 
22
- action = { method: "post", url: endpoint}
24
+ action = { method: 'post', url: endpoint }
23
25
  @client.call_adyen_api(@service, action, request, headers, @version)
24
26
  end
25
27
 
26
- def donations(request, headers: {} )
27
- """
28
- Start a transaction for donations
29
- """
30
- endpoint = "/donations".gsub(/{.+?}/, '%s')
31
- endpoint = endpoint.gsub(/^\//, "")
32
- endpoint = endpoint % []
28
+ def donations(request, headers: {})
29
+ endpoint = '/donations'.gsub(/{.+?}/, '%s')
30
+ endpoint = endpoint.gsub(%r{^/}, '')
31
+ endpoint = format(endpoint)
33
32
 
34
- action = { method: "post", url: endpoint}
33
+ action = { method: 'post', url: endpoint }
35
34
  @client.call_adyen_api(@service, action, request, headers, @version)
36
35
  end
37
36
 
38
- def payment_methods(request, headers: {} )
39
- """
40
- Get a list of available payment methods
41
- """
42
- endpoint = "/paymentMethods".gsub(/{.+?}/, '%s')
43
- endpoint = endpoint.gsub(/^\//, "")
44
- endpoint = endpoint % []
37
+ def payment_methods(request, headers: {})
38
+ endpoint = '/paymentMethods'.gsub(/{.+?}/, '%s')
39
+ endpoint = endpoint.gsub(%r{^/}, '')
40
+ endpoint = format(endpoint)
45
41
 
46
- action = { method: "post", url: endpoint}
42
+ action = { method: 'post', url: endpoint }
47
43
  @client.call_adyen_api(@service, action, request, headers, @version)
48
44
  end
49
45
 
50
- def payments(request, headers: {} )
51
- """
52
- Start a transaction
53
- """
54
- endpoint = "/payments".gsub(/{.+?}/, '%s')
55
- endpoint = endpoint.gsub(/^\//, "")
56
- endpoint = endpoint % []
46
+ def payments(request, headers: {})
47
+ endpoint = '/payments'.gsub(/{.+?}/, '%s')
48
+ endpoint = endpoint.gsub(%r{^/}, '')
49
+ endpoint = format(endpoint)
57
50
 
58
- action = { method: "post", url: endpoint}
51
+ action = { method: 'post', url: endpoint }
59
52
  @client.call_adyen_api(@service, action, request, headers, @version)
60
53
  end
61
54
 
62
- def payments_details(request, headers: {} )
63
- """
64
- Submit details for a payment
65
- """
66
- endpoint = "/payments/details".gsub(/{.+?}/, '%s')
67
- endpoint = endpoint.gsub(/^\//, "")
68
- endpoint = endpoint % []
55
+ def payments_details(request, headers: {})
56
+ endpoint = '/payments/details'.gsub(/{.+?}/, '%s')
57
+ endpoint = endpoint.gsub(%r{^/}, '')
58
+ endpoint = format(endpoint)
69
59
 
70
- action = { method: "post", url: endpoint}
60
+ action = { method: 'post', url: endpoint }
71
61
  @client.call_adyen_api(@service, action, request, headers, @version)
72
62
  end
73
63
 
74
- def sessions(request, headers: {} )
75
- """
76
- Create a payment session
77
- """
78
- endpoint = "/sessions".gsub(/{.+?}/, '%s')
79
- endpoint = endpoint.gsub(/^\//, "")
80
- endpoint = endpoint % []
64
+ def sessions(request, headers: {})
65
+ endpoint = '/sessions'.gsub(/{.+?}/, '%s')
66
+ endpoint = endpoint.gsub(%r{^/}, '')
67
+ endpoint = format(endpoint)
81
68
 
82
- action = { method: "post", url: endpoint}
69
+ action = { method: 'post', url: endpoint }
83
70
  @client.call_adyen_api(@service, action, request, headers, @version)
84
71
  end
85
72
 
@@ -1,37 +1,27 @@
1
1
  require_relative '../service'
2
2
  module Adyen
3
-
4
-
5
3
  class RecurringApi < Service
6
4
  attr_accessor :service, :version
7
5
 
8
6
  def initialize(client, version = DEFAULT_VERSION)
9
- @service = "Checkout"
10
- @client = client
11
- @version = version
7
+ super(client, version, 'Checkout')
12
8
  end
13
9
 
14
- def delete_token_for_stored_payment_details(recurringId, headers: {} , queryParams: {})
15
- """
16
- Delete a token for stored payment details
17
- """
18
- endpoint = "/storedPaymentMethods/{recurringId}".gsub(/{.+?}/, '%s')
19
- endpoint = endpoint.gsub(/^\//, "")
20
- endpoint = endpoint % [recurringId]
21
- endpoint = endpoint + create_query_string(queryParams)
22
- action = { method: "delete", url: endpoint}
10
+ def delete_token_for_stored_payment_details(recurring_id, headers: {}, query_params: {})
11
+ endpoint = '/storedPaymentMethods/{recurringId}'.gsub(/{.+?}/, '%s')
12
+ endpoint = endpoint.gsub(%r{^/}, '')
13
+ endpoint = format(endpoint, recurring_id)
14
+ endpoint += create_query_string(query_params)
15
+ action = { method: 'delete', url: endpoint }
23
16
  @client.call_adyen_api(@service, action, {}, headers, @version)
24
17
  end
25
18
 
26
- def get_tokens_for_stored_payment_details(headers: {} , queryParams: {})
27
- """
28
- Get tokens for stored payment details
29
- """
30
- endpoint = "/storedPaymentMethods".gsub(/{.+?}/, '%s')
31
- endpoint = endpoint.gsub(/^\//, "")
32
- endpoint = endpoint % []
33
- endpoint = endpoint + create_query_string(queryParams)
34
- action = { method: "get", url: endpoint}
19
+ def get_tokens_for_stored_payment_details(headers: {}, query_params: {})
20
+ endpoint = '/storedPaymentMethods'.gsub(/{.+?}/, '%s')
21
+ endpoint = endpoint.gsub(%r{^/}, '')
22
+ endpoint = format(endpoint)
23
+ endpoint += create_query_string(query_params)
24
+ action = { method: 'get', url: endpoint }
35
25
  @client.call_adyen_api(@service, action, {}, headers, @version)
36
26
  end
37
27
 
@@ -1,37 +1,27 @@
1
1
  require_relative '../service'
2
2
  module Adyen
3
-
4
-
5
3
  class UtilityApi < Service
6
4
  attr_accessor :service, :version
7
5
 
8
6
  def initialize(client, version = DEFAULT_VERSION)
9
- @service = "Checkout"
10
- @client = client
11
- @version = version
7
+ super(client, version, 'Checkout')
12
8
  end
13
9
 
14
- def get_apple_pay_session(request, headers: {} )
15
- """
16
- Get an Apple Pay session
17
- """
18
- endpoint = "/applePay/sessions".gsub(/{.+?}/, '%s')
19
- endpoint = endpoint.gsub(/^\//, "")
20
- endpoint = endpoint % []
10
+ def get_apple_pay_session(request, headers: {})
11
+ endpoint = '/applePay/sessions'.gsub(/{.+?}/, '%s')
12
+ endpoint = endpoint.gsub(%r{^/}, '')
13
+ endpoint = format(endpoint)
21
14
 
22
- action = { method: "post", url: endpoint}
15
+ action = { method: 'post', url: endpoint }
23
16
  @client.call_adyen_api(@service, action, request, headers, @version)
24
17
  end
25
18
 
26
- def origin_keys(request, headers: {} )
27
- """
28
- Create originKey values for domains
29
- """
30
- endpoint = "/originKeys".gsub(/{.+?}/, '%s')
31
- endpoint = endpoint.gsub(/^\//, "")
32
- endpoint = endpoint % []
19
+ def origin_keys(request, headers: {})
20
+ endpoint = '/originKeys'.gsub(/{.+?}/, '%s')
21
+ endpoint = endpoint.gsub(%r{^/}, '')
22
+ endpoint = format(endpoint)
33
23
 
34
- action = { method: "post", url: endpoint}
24
+ action = { method: 'post', url: endpoint }
35
25
  @client.call_adyen_api(@service, action, request, headers, @version)
36
26
  end
37
27
 
@@ -7,45 +7,43 @@ require_relative 'checkout/recurring_api'
7
7
  require_relative 'checkout/utility_api'
8
8
 
9
9
  module Adyen
10
-
11
-
12
- class Checkout
13
- attr_accessor :service, :version
14
-
15
- DEFAULT_VERSION = 70
16
- def initialize(client, version = DEFAULT_VERSION)
17
- @service = "Checkout"
18
- @client = client
19
- @version = version
20
- end
21
-
22
- def classic_checkout_sdk_api
23
- @classic_checkout_sdk_api ||= Adyen::ClassicCheckoutSDKApi.new(@client, @version)
24
- end
10
+ class Checkout
11
+ attr_accessor :service, :version
12
+
13
+ DEFAULT_VERSION = 70
14
+ def initialize(client, version = DEFAULT_VERSION)
15
+ @service = 'Checkout'
16
+ @client = client
17
+ @version = version
18
+ end
25
19
 
26
- def modifications_api
27
- @modifications_api ||= Adyen::ModificationsApi.new(@client, @version)
28
- end
20
+ def classic_checkout_sdk_api
21
+ @classic_checkout_sdk_api ||= Adyen::ClassicCheckoutSDKApi.new(@client, @version)
22
+ end
29
23
 
30
- def orders_api
31
- @orders_api ||= Adyen::OrdersApi.new(@client, @version)
32
- end
24
+ def modifications_api
25
+ @modifications_api ||= Adyen::ModificationsApi.new(@client, @version)
26
+ end
33
27
 
34
- def payment_links_api
35
- @payment_links_api ||= Adyen::PaymentLinksApi.new(@client, @version)
36
- end
28
+ def orders_api
29
+ @orders_api ||= Adyen::OrdersApi.new(@client, @version)
30
+ end
37
31
 
38
- def payments_api
39
- @payments_api ||= Adyen::PaymentsApi.new(@client, @version)
40
- end
32
+ def payment_links_api
33
+ @payment_links_api ||= Adyen::PaymentLinksApi.new(@client, @version)
34
+ end
41
35
 
42
- def recurring_api
43
- @recurring_api ||= Adyen::RecurringApi.new(@client, @version)
44
- end
36
+ def payments_api
37
+ @payments_api ||= Adyen::PaymentsApi.new(@client, @version)
38
+ end
45
39
 
46
- def utility_api
47
- @utility_api ||= Adyen::UtilityApi.new(@client, @version)
48
- end
40
+ def recurring_api
41
+ @recurring_api ||= Adyen::RecurringApi.new(@client, @version)
42
+ end
49
43
 
44
+ def utility_api
45
+ @utility_api ||= Adyen::UtilityApi.new(@client, @version)
50
46
  end
51
- end
47
+
48
+ end
49
+ end
@@ -1,26 +1,19 @@
1
1
  require_relative './service'
2
2
  module Adyen
3
-
4
-
5
3
  class DataProtection < Service
6
4
  attr_accessor :service, :version
7
- DEFAULT_VERSION = 1
8
5
 
6
+ DEFAULT_VERSION = 1
9
7
  def initialize(client, version = DEFAULT_VERSION)
10
- @service = "DataProtection"
11
- @client = client
12
- @version = version
8
+ super(client, version, 'DataProtection')
13
9
  end
14
10
 
15
- def request_subject_erasure(request, headers: {} )
16
- """
17
- Submit a Subject Erasure Request.
18
- """
19
- endpoint = "/requestSubjectErasure".gsub(/{.+?}/, '%s')
20
- endpoint = endpoint.gsub(/^\//, "")
21
- endpoint = endpoint % []
11
+ def request_subject_erasure(request, headers: {})
12
+ endpoint = '/requestSubjectErasure'.gsub(/{.+?}/, '%s')
13
+ endpoint = endpoint.gsub(%r{^/}, '')
14
+ endpoint = format(endpoint)
22
15
 
23
- action = { method: "post", url: endpoint}
16
+ action = { method: 'post', url: endpoint }
24
17
  @client.call_adyen_api(@service, action, request, headers, @version)
25
18
  end
26
19
 
@@ -3,15 +3,16 @@ require_relative 'service'
3
3
  module Adyen
4
4
  class Dispute < Service
5
5
  attr_accessor :version
6
+
6
7
  DEFAULT_VERSION = 30
7
8
 
8
9
  def initialize(client, version = DEFAULT_VERSION)
9
10
  service = 'DisputeService'
10
- method_names = [
11
- :retrieve_applicable_defense_reasons,
12
- :supply_defense_document,
13
- :delete_dispute_defense_document,
14
- :defend_dispute,
11
+ method_names = %i[
12
+ retrieve_applicable_defense_reasons
13
+ supply_defense_document
14
+ delete_dispute_defense_document
15
+ defend_dispute
15
16
  ]
16
17
 
17
18
  super(client, version, service, method_names)
@@ -1,61 +1,45 @@
1
1
  require_relative '../service'
2
2
  module Adyen
3
-
4
-
5
3
  class BusinessLinesApi < Service
6
4
  attr_accessor :service, :version
7
5
 
8
6
  def initialize(client, version = DEFAULT_VERSION)
9
- @service = "LegalEntityManagement"
10
- @client = client
11
- @version = version
7
+ super(client, version, 'LegalEntityManagement')
12
8
  end
13
9
 
14
- def delete_business_line(id, headers: {} )
15
- """
16
- Delete a business line
17
- """
18
- endpoint = "/businessLines/{id}".gsub(/{.+?}/, '%s')
19
- endpoint = endpoint.gsub(/^\//, "")
20
- endpoint = endpoint % [id]
10
+ def delete_business_line(id, headers: {})
11
+ endpoint = '/businessLines/{id}'.gsub(/{.+?}/, '%s')
12
+ endpoint = endpoint.gsub(%r{^/}, '')
13
+ endpoint = format(endpoint, id)
21
14
 
22
- action = { method: "delete", url: endpoint}
15
+ action = { method: 'delete', url: endpoint }
23
16
  @client.call_adyen_api(@service, action, {}, headers, @version)
24
17
  end
25
18
 
26
- def get_business_line(id, headers: {} )
27
- """
28
- Get a business line
29
- """
30
- endpoint = "/businessLines/{id}".gsub(/{.+?}/, '%s')
31
- endpoint = endpoint.gsub(/^\//, "")
32
- endpoint = endpoint % [id]
19
+ def get_business_line(id, headers: {})
20
+ endpoint = '/businessLines/{id}'.gsub(/{.+?}/, '%s')
21
+ endpoint = endpoint.gsub(%r{^/}, '')
22
+ endpoint = format(endpoint, id)
33
23
 
34
- action = { method: "get", url: endpoint}
24
+ action = { method: 'get', url: endpoint }
35
25
  @client.call_adyen_api(@service, action, {}, headers, @version)
36
26
  end
37
27
 
38
- def update_business_line(request, id, headers: {} )
39
- """
40
- Update a business line
41
- """
42
- endpoint = "/businessLines/{id}".gsub(/{.+?}/, '%s')
43
- endpoint = endpoint.gsub(/^\//, "")
44
- endpoint = endpoint % [id]
28
+ def update_business_line(request, id, headers: {})
29
+ endpoint = '/businessLines/{id}'.gsub(/{.+?}/, '%s')
30
+ endpoint = endpoint.gsub(%r{^/}, '')
31
+ endpoint = format(endpoint, id)
45
32
 
46
- action = { method: "patch", url: endpoint}
33
+ action = { method: 'patch', url: endpoint }
47
34
  @client.call_adyen_api(@service, action, request, headers, @version)
48
35
  end
49
36
 
50
- def create_business_line(request, headers: {} )
51
- """
52
- Create a business line
53
- """
54
- endpoint = "/businessLines".gsub(/{.+?}/, '%s')
55
- endpoint = endpoint.gsub(/^\//, "")
56
- endpoint = endpoint % []
37
+ def create_business_line(request, headers: {})
38
+ endpoint = '/businessLines'.gsub(/{.+?}/, '%s')
39
+ endpoint = endpoint.gsub(%r{^/}, '')
40
+ endpoint = format(endpoint)
57
41
 
58
- action = { method: "post", url: endpoint}
42
+ action = { method: 'post', url: endpoint }
59
43
  @client.call_adyen_api(@service, action, request, headers, @version)
60
44
  end
61
45
 
@@ -1,61 +1,45 @@
1
1
  require_relative '../service'
2
2
  module Adyen
3
-
4
-
5
3
  class DocumentsApi < Service
6
4
  attr_accessor :service, :version
7
5
 
8
6
  def initialize(client, version = DEFAULT_VERSION)
9
- @service = "LegalEntityManagement"
10
- @client = client
11
- @version = version
7
+ super(client, version, 'LegalEntityManagement')
12
8
  end
13
9
 
14
- def delete_document(id, headers: {} )
15
- """
16
- Delete a document
17
- """
18
- endpoint = "/documents/{id}".gsub(/{.+?}/, '%s')
19
- endpoint = endpoint.gsub(/^\//, "")
20
- endpoint = endpoint % [id]
10
+ def delete_document(id, headers: {})
11
+ endpoint = '/documents/{id}'.gsub(/{.+?}/, '%s')
12
+ endpoint = endpoint.gsub(%r{^/}, '')
13
+ endpoint = format(endpoint, id)
21
14
 
22
- action = { method: "delete", url: endpoint}
15
+ action = { method: 'delete', url: endpoint }
23
16
  @client.call_adyen_api(@service, action, {}, headers, @version)
24
17
  end
25
18
 
26
- def get_document(id, headers: {} )
27
- """
28
- Get a document
29
- """
30
- endpoint = "/documents/{id}".gsub(/{.+?}/, '%s')
31
- endpoint = endpoint.gsub(/^\//, "")
32
- endpoint = endpoint % [id]
19
+ def get_document(id, headers: {})
20
+ endpoint = '/documents/{id}'.gsub(/{.+?}/, '%s')
21
+ endpoint = endpoint.gsub(%r{^/}, '')
22
+ endpoint = format(endpoint, id)
33
23
 
34
- action = { method: "get", url: endpoint}
24
+ action = { method: 'get', url: endpoint }
35
25
  @client.call_adyen_api(@service, action, {}, headers, @version)
36
26
  end
37
27
 
38
- def update_document(request, id, headers: {} )
39
- """
40
- Update a document
41
- """
42
- endpoint = "/documents/{id}".gsub(/{.+?}/, '%s')
43
- endpoint = endpoint.gsub(/^\//, "")
44
- endpoint = endpoint % [id]
28
+ def update_document(request, id, headers: {})
29
+ endpoint = '/documents/{id}'.gsub(/{.+?}/, '%s')
30
+ endpoint = endpoint.gsub(%r{^/}, '')
31
+ endpoint = format(endpoint, id)
45
32
 
46
- action = { method: "patch", url: endpoint}
33
+ action = { method: 'patch', url: endpoint }
47
34
  @client.call_adyen_api(@service, action, request, headers, @version)
48
35
  end
49
36
 
50
- def upload_document_for_verification_checks(request, headers: {} )
51
- """
52
- Upload a document for verification checks
53
- """
54
- endpoint = "/documents".gsub(/{.+?}/, '%s')
55
- endpoint = endpoint.gsub(/^\//, "")
56
- endpoint = endpoint % []
37
+ def upload_document_for_verification_checks(request, headers: {})
38
+ endpoint = '/documents'.gsub(/{.+?}/, '%s')
39
+ endpoint = endpoint.gsub(%r{^/}, '')
40
+ endpoint = format(endpoint)
57
41
 
58
- action = { method: "post", url: endpoint}
42
+ action = { method: 'post', url: endpoint }
59
43
  @client.call_adyen_api(@service, action, request, headers, @version)
60
44
  end
61
45