onlinepayments-sdk-ruby 6.4.0 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/onlinepayments/sdk/client.rb +1 -1
  4. data/lib/onlinepayments/sdk/communication/metadata_provider.rb +1 -1
  5. data/lib/onlinepayments/sdk/domain/card_payment_method_specific_input.rb +9 -0
  6. data/lib/onlinepayments/sdk/domain/card_payment_method_specific_input_base.rb +9 -0
  7. data/lib/onlinepayments/sdk/domain/card_payment_method_specific_input_for_hosted_checkout.rb +7 -0
  8. data/lib/onlinepayments/sdk/domain/create_payment_link_request.rb +7 -0
  9. data/lib/onlinepayments/sdk/domain/created_token_response.rb +9 -0
  10. data/lib/onlinepayments/sdk/domain/credit_card_specific_input_hosted_tokenization.rb +3 -3
  11. data/lib/onlinepayments/sdk/domain/{credit_card_validation_rules_hosted_tokenization.rb → credit_card_validation_rules.rb} +1 -1
  12. data/lib/onlinepayments/sdk/domain/crm_token.rb +37 -0
  13. data/lib/onlinepayments/sdk/domain/g_pay_three_d_secure.rb +7 -0
  14. data/lib/onlinepayments/sdk/domain/hosted_checkout_specific_input.rb +9 -0
  15. data/lib/onlinepayments/sdk/domain/market_place.rb +37 -0
  16. data/lib/onlinepayments/sdk/domain/omnichannel_payout_specific_input.rb +7 -0
  17. data/lib/onlinepayments/sdk/domain/omnichannel_subsequent_specific_input.rb +30 -0
  18. data/lib/onlinepayments/sdk/domain/payment_link_response.rb +7 -0
  19. data/lib/onlinepayments/sdk/domain/payment_product840_specific_output.rb +15 -0
  20. data/lib/onlinepayments/sdk/domain/payment_response.rb +9 -0
  21. data/lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb +18 -0
  22. data/lib/onlinepayments/sdk/domain/redirect_payment_product11_specific_input.rb +32 -0
  23. data/lib/onlinepayments/sdk/domain/redirect_payment_product3307_specific_input.rb +13 -0
  24. data/lib/onlinepayments/sdk/domain/redirect_payment_product5300_specific_input.rb +7 -0
  25. data/lib/onlinepayments/sdk/domain/refund_redirect_payment_method_specific_input.rb +32 -0
  26. data/lib/onlinepayments/sdk/domain/refund_redirect_payment_product900_specific_input.rb +30 -0
  27. data/lib/onlinepayments/sdk/domain/refund_request.rb +9 -0
  28. data/lib/onlinepayments/sdk/domain/session_details.rb +37 -0
  29. data/lib/onlinepayments/sdk/domain/split_payment_product_filter.rb +34 -0
  30. data/lib/onlinepayments/sdk/domain/split_payment_product_filters_hosted_checkout.rb +40 -0
  31. data/lib/onlinepayments/sdk/domain/subsequent_card_payment_method_specific_input.rb +9 -0
  32. data/lib/onlinepayments/sdk/domain/subsequent_payment_request.rb +9 -0
  33. data/lib/onlinepayments/sdk/domain/token_response.rb +9 -0
  34. data/lib/onlinepayments/sdk/merchant/merchant_client.rb +2 -2
  35. data/lib/onlinepayments/sdk/merchant/paymentlinks/payment_links_client.rb +0 -29
  36. data/lib/onlinepayments/sdk/merchant/payouts/payouts_client.rb +19 -19
  37. data/lib/onlinepayments/sdk/merchant/productgroups/get_product_group_params.rb +6 -6
  38. data/lib/onlinepayments/sdk/merchant/productgroups/get_product_groups_params.rb +6 -6
  39. data/lib/onlinepayments/sdk/merchant/products/get_payment_product_networks_params.rb +4 -4
  40. data/lib/onlinepayments/sdk/merchant/products/get_payment_product_params.rb +6 -6
  41. data/lib/onlinepayments/sdk/merchant/products/get_payment_products_params.rb +6 -6
  42. data/lib/onlinepayments/sdk/merchant/products/get_product_directory_params.rb +2 -2
  43. data/lib/onlinepayments/sdk/merchant/tokens/tokens_client.rb +24 -24
  44. data/onlinepayments-sdk-ruby.gemspec +1 -1
  45. metadata +13 -4
  46. data/lib/onlinepayments/sdk/merchant/paymentlinks/get_payment_links_in_bulk_params.rb +0 -28
@@ -44,13 +44,13 @@ module OnlinePayments
44
44
  # @return [Array<OnlinePayments::SDK::Communication::RequestParam>] representing the attributes of this class
45
45
  def to_request_parameters
46
46
  result = []
47
- result << RequestParam.new('countryCode', @country_code) unless @country_code.nil?
48
- result << RequestParam.new('currencyCode', @currency_code) unless @currency_code.nil?
49
- result << RequestParam.new('locale', @locale) unless @locale.nil?
50
- result << RequestParam.new('amount', @amount.to_s) unless @amount.nil?
51
- result << RequestParam.new('isRecurring', @is_recurring.to_s) unless @is_recurring.nil?
47
+ result << OnlinePayments::SDK::Communication::RequestParam.new('countryCode', @country_code) unless @country_code.nil?
48
+ result << OnlinePayments::SDK::Communication::RequestParam.new('currencyCode', @currency_code) unless @currency_code.nil?
49
+ result << OnlinePayments::SDK::Communication::RequestParam.new('locale', @locale) unless @locale.nil?
50
+ result << OnlinePayments::SDK::Communication::RequestParam.new('amount', @amount.to_s) unless @amount.nil?
51
+ result << OnlinePayments::SDK::Communication::RequestParam.new('isRecurring', @is_recurring.to_s) unless @is_recurring.nil?
52
52
  unless @hide.nil?
53
- @hide.each {|e| result << RequestParam.new('hide', e)}
53
+ @hide.each {|e| result << OnlinePayments::SDK::Communication::RequestParam.new('hide', e)}
54
54
  end
55
55
  result
56
56
  end
@@ -44,13 +44,13 @@ module OnlinePayments
44
44
  # @return [Array<OnlinePayments::SDK::Communication::RequestParam>] representing the attributes of this class
45
45
  def to_request_parameters
46
46
  result = []
47
- result << RequestParam.new('countryCode', @country_code) unless @country_code.nil?
48
- result << RequestParam.new('currencyCode', @currency_code) unless @currency_code.nil?
49
- result << RequestParam.new('locale', @locale) unless @locale.nil?
50
- result << RequestParam.new('amount', @amount.to_s) unless @amount.nil?
51
- result << RequestParam.new('isRecurring', @is_recurring.to_s) unless @is_recurring.nil?
47
+ result << OnlinePayments::SDK::Communication::RequestParam.new('countryCode', @country_code) unless @country_code.nil?
48
+ result << OnlinePayments::SDK::Communication::RequestParam.new('currencyCode', @currency_code) unless @currency_code.nil?
49
+ result << OnlinePayments::SDK::Communication::RequestParam.new('locale', @locale) unless @locale.nil?
50
+ result << OnlinePayments::SDK::Communication::RequestParam.new('amount', @amount.to_s) unless @amount.nil?
51
+ result << OnlinePayments::SDK::Communication::RequestParam.new('isRecurring', @is_recurring.to_s) unless @is_recurring.nil?
52
52
  unless @hide.nil?
53
- @hide.each {|e| result << RequestParam.new('hide', e)}
53
+ @hide.each {|e| result << OnlinePayments::SDK::Communication::RequestParam.new('hide', e)}
54
54
  end
55
55
  result
56
56
  end
@@ -27,10 +27,10 @@ module OnlinePayments
27
27
  # @return [Array<OnlinePayments::SDK::Communication::RequestParam>] representing the attributes of this class
28
28
  def to_request_parameters
29
29
  result = []
30
- result << RequestParam.new('countryCode', @country_code) unless @country_code.nil?
31
- result << RequestParam.new('currencyCode', @currency_code) unless @currency_code.nil?
32
- result << RequestParam.new('amount', @amount.to_s) unless @amount.nil?
33
- result << RequestParam.new('isRecurring', @is_recurring.to_s) unless @is_recurring.nil?
30
+ result << OnlinePayments::SDK::Communication::RequestParam.new('countryCode', @country_code) unless @country_code.nil?
31
+ result << OnlinePayments::SDK::Communication::RequestParam.new('currencyCode', @currency_code) unless @currency_code.nil?
32
+ result << OnlinePayments::SDK::Communication::RequestParam.new('amount', @amount.to_s) unless @amount.nil?
33
+ result << OnlinePayments::SDK::Communication::RequestParam.new('isRecurring', @is_recurring.to_s) unless @is_recurring.nil?
34
34
  result
35
35
  end
36
36
  end
@@ -43,13 +43,13 @@ module OnlinePayments
43
43
  # @return [Array<OnlinePayments::SDK::Communication::RequestParam>] representing the attributes of this class
44
44
  def to_request_parameters
45
45
  result = []
46
- result << RequestParam.new('countryCode', @country_code) unless @country_code.nil?
47
- result << RequestParam.new('currencyCode', @currency_code) unless @currency_code.nil?
48
- result << RequestParam.new('locale', @locale) unless @locale.nil?
49
- result << RequestParam.new('amount', @amount.to_s) unless @amount.nil?
50
- result << RequestParam.new('isRecurring', @is_recurring.to_s) unless @is_recurring.nil?
46
+ result << OnlinePayments::SDK::Communication::RequestParam.new('countryCode', @country_code) unless @country_code.nil?
47
+ result << OnlinePayments::SDK::Communication::RequestParam.new('currencyCode', @currency_code) unless @currency_code.nil?
48
+ result << OnlinePayments::SDK::Communication::RequestParam.new('locale', @locale) unless @locale.nil?
49
+ result << OnlinePayments::SDK::Communication::RequestParam.new('amount', @amount.to_s) unless @amount.nil?
50
+ result << OnlinePayments::SDK::Communication::RequestParam.new('isRecurring', @is_recurring.to_s) unless @is_recurring.nil?
51
51
  unless @hide.nil?
52
- @hide.each {|e| result << RequestParam.new('hide', e)}
52
+ @hide.each {|e| result << OnlinePayments::SDK::Communication::RequestParam.new('hide', e)}
53
53
  end
54
54
  result
55
55
  end
@@ -43,13 +43,13 @@ module OnlinePayments
43
43
  # @return [Array<OnlinePayments::SDK::Communication::RequestParam>] representing the attributes of this class
44
44
  def to_request_parameters
45
45
  result = []
46
- result << RequestParam.new('countryCode', @country_code) unless @country_code.nil?
47
- result << RequestParam.new('currencyCode', @currency_code) unless @currency_code.nil?
48
- result << RequestParam.new('locale', @locale) unless @locale.nil?
49
- result << RequestParam.new('amount', @amount.to_s) unless @amount.nil?
50
- result << RequestParam.new('isRecurring', @is_recurring.to_s) unless @is_recurring.nil?
46
+ result << OnlinePayments::SDK::Communication::RequestParam.new('countryCode', @country_code) unless @country_code.nil?
47
+ result << OnlinePayments::SDK::Communication::RequestParam.new('currencyCode', @currency_code) unless @currency_code.nil?
48
+ result << OnlinePayments::SDK::Communication::RequestParam.new('locale', @locale) unless @locale.nil?
49
+ result << OnlinePayments::SDK::Communication::RequestParam.new('amount', @amount.to_s) unless @amount.nil?
50
+ result << OnlinePayments::SDK::Communication::RequestParam.new('isRecurring', @is_recurring.to_s) unless @is_recurring.nil?
51
51
  unless @hide.nil?
52
- @hide.each {|e| result << RequestParam.new('hide', e)}
52
+ @hide.each {|e| result << OnlinePayments::SDK::Communication::RequestParam.new('hide', e)}
53
53
  end
54
54
  result
55
55
  end
@@ -21,8 +21,8 @@ module OnlinePayments
21
21
  # @return [Array<OnlinePayments::SDK::Communication::RequestParam>] representing the attributes of this class
22
22
  def to_request_parameters
23
23
  result = []
24
- result << RequestParam.new('countryCode', @country_code) unless @country_code.nil?
25
- result << RequestParam.new('currencyCode', @currency_code) unless @currency_code.nil?
24
+ result << OnlinePayments::SDK::Communication::RequestParam.new('countryCode', @country_code) unless @country_code.nil?
25
+ result << OnlinePayments::SDK::Communication::RequestParam.new('currencyCode', @currency_code) unless @currency_code.nil?
26
26
  result
27
27
  end
28
28
  end
@@ -21,11 +21,11 @@ module OnlinePayments
21
21
  super(parent: parent, path_context: path_context)
22
22
  end
23
23
 
24
- # Resource /v2/!{merchantId}/tokens/!{tokenId} - Get token
24
+ # Resource /v2/!{merchantId}/tokens - Create token
25
25
  #
26
- # @param token_id [String]
27
- # @param context [OnlinePayments::SDK::CallContext, nil]
28
- # @return [OnlinePayments::SDK::Domain::TokenResponse]
26
+ # @param body [OnlinePayments::SDK::Domain::CreateTokenRequest]
27
+ # @param context [OnlinePayments::SDK::CallContext, nil]
28
+ # @return [OnlinePayments::SDK::Domain::CreatedTokenResponse]
29
29
  # @raise [OnlinePayments::SDK::IdempotenceException] if an idempotent request caused a conflict (HTTP status code 409)
30
30
  # @raise [OnlinePayments::SDK::ValidationException] if the request was not correct and couldn't be processed (HTTP status code 400)
31
31
  # @raise [OnlinePayments::SDK::AuthorizationException] if the request was not allowed (HTTP status code 403)
@@ -35,16 +35,14 @@ module OnlinePayments
35
35
  # the payment platform was unable to process a message from a downstream partner/acquirer,
36
36
  # or the service that you're trying to reach is temporary unavailable (HTTP status code 500, 502 or 503)
37
37
  # @raise [OnlinePayments::SDK::ApiException] if the payment platform returned any other error
38
- def get_token(token_id, context = nil)
39
- path_context = {
40
- 'tokenId'.freeze => token_id,
41
- }
42
- uri = instantiate_uri('/v2/{merchantId}/tokens/{tokenId}', path_context)
43
- @communicator.get(
38
+ def create_token(body, context = nil)
39
+ uri = instantiate_uri('/v2/{merchantId}/tokens', nil)
40
+ @communicator.post(
44
41
  uri,
45
42
  client_headers,
46
43
  nil,
47
- OnlinePayments::SDK::Domain::TokenResponse,
44
+ body,
45
+ OnlinePayments::SDK::Domain::CreatedTokenResponse,
48
46
  context)
49
47
  rescue OnlinePayments::SDK::Communication::ResponseException => e
50
48
  error_type = OnlinePayments::SDK::Domain::ErrorResponse
@@ -52,10 +50,11 @@ module OnlinePayments
52
50
  raise OnlinePayments::SDK.create_exception(e.status_code, e.body, error_object, context)
53
51
  end
54
52
 
55
- # Resource /v2/!{merchantId}/tokens/!{tokenId} - Delete token
53
+ # Resource /v2/!{merchantId}/tokens/!{tokenId} - Get token
56
54
  #
57
55
  # @param token_id [String]
58
56
  # @param context [OnlinePayments::SDK::CallContext, nil]
57
+ # @return [OnlinePayments::SDK::Domain::TokenResponse]
59
58
  # @raise [OnlinePayments::SDK::IdempotenceException] if an idempotent request caused a conflict (HTTP status code 409)
60
59
  # @raise [OnlinePayments::SDK::ValidationException] if the request was not correct and couldn't be processed (HTTP status code 400)
61
60
  # @raise [OnlinePayments::SDK::AuthorizationException] if the request was not allowed (HTTP status code 403)
@@ -65,16 +64,16 @@ module OnlinePayments
65
64
  # the payment platform was unable to process a message from a downstream partner/acquirer,
66
65
  # or the service that you're trying to reach is temporary unavailable (HTTP status code 500, 502 or 503)
67
66
  # @raise [OnlinePayments::SDK::ApiException] if the payment platform returned any other error
68
- def delete_token(token_id, context = nil)
67
+ def get_token(token_id, context = nil)
69
68
  path_context = {
70
69
  'tokenId'.freeze => token_id,
71
70
  }
72
71
  uri = instantiate_uri('/v2/{merchantId}/tokens/{tokenId}', path_context)
73
- @communicator.delete(
72
+ @communicator.get(
74
73
  uri,
75
74
  client_headers,
76
75
  nil,
77
- nil,
76
+ OnlinePayments::SDK::Domain::TokenResponse,
78
77
  context)
79
78
  rescue OnlinePayments::SDK::Communication::ResponseException => e
80
79
  error_type = OnlinePayments::SDK::Domain::ErrorResponse
@@ -82,11 +81,10 @@ module OnlinePayments
82
81
  raise OnlinePayments::SDK.create_exception(e.status_code, e.body, error_object, context)
83
82
  end
84
83
 
85
- # Resource /v2/!{merchantId}/tokens - Please create a token.
84
+ # Resource /v2/!{merchantId}/tokens/!{tokenId} - Delete token
86
85
  #
87
- # @param body [OnlinePayments::SDK::Domain::CreateTokenRequest]
88
- # @param context [OnlinePayments::SDK::CallContext, nil]
89
- # @return [OnlinePayments::SDK::Domain::CreatedTokenResponse]
86
+ # @param token_id [String]
87
+ # @param context [OnlinePayments::SDK::CallContext, nil]
90
88
  # @raise [OnlinePayments::SDK::IdempotenceException] if an idempotent request caused a conflict (HTTP status code 409)
91
89
  # @raise [OnlinePayments::SDK::ValidationException] if the request was not correct and couldn't be processed (HTTP status code 400)
92
90
  # @raise [OnlinePayments::SDK::AuthorizationException] if the request was not allowed (HTTP status code 403)
@@ -96,14 +94,16 @@ module OnlinePayments
96
94
  # the payment platform was unable to process a message from a downstream partner/acquirer,
97
95
  # or the service that you're trying to reach is temporary unavailable (HTTP status code 500, 502 or 503)
98
96
  # @raise [OnlinePayments::SDK::ApiException] if the payment platform returned any other error
99
- def create_token(body, context = nil)
100
- uri = instantiate_uri('/v2/{merchantId}/tokens', nil)
101
- @communicator.post(
97
+ def delete_token(token_id, context = nil)
98
+ path_context = {
99
+ 'tokenId'.freeze => token_id,
100
+ }
101
+ uri = instantiate_uri('/v2/{merchantId}/tokens/{tokenId}', path_context)
102
+ @communicator.delete(
102
103
  uri,
103
104
  client_headers,
104
105
  nil,
105
- body,
106
- OnlinePayments::SDK::Domain::CreatedTokenResponse,
106
+ nil,
107
107
  context)
108
108
  rescue OnlinePayments::SDK::Communication::ResponseException => e
109
109
  error_type = OnlinePayments::SDK::Domain::ErrorResponse
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'onlinepayments-sdk-ruby'
3
- spec.version = '6.4.0'
3
+ spec.version = '7.0.0'
4
4
  spec.authors = ['Worldline Direct support team']
5
5
  spec.email = ['82139942+worldline-direct-support-team@users.noreply.github.com']
6
6
  spec.summary = %q{SDK to communicate with the Online Payments platform using the Online Payments Server API}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: onlinepayments-sdk-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.4.0
4
+ version: 7.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Worldline Direct support team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-11-27 00:00:00.000000000 Z
11
+ date: 2026-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httpclient
@@ -233,7 +233,8 @@ files:
233
233
  - lib/onlinepayments/sdk/domain/created_payment_output.rb
234
234
  - lib/onlinepayments/sdk/domain/created_token_response.rb
235
235
  - lib/onlinepayments/sdk/domain/credit_card_specific_input_hosted_tokenization.rb
236
- - lib/onlinepayments/sdk/domain/credit_card_validation_rules_hosted_tokenization.rb
236
+ - lib/onlinepayments/sdk/domain/credit_card_validation_rules.rb
237
+ - lib/onlinepayments/sdk/domain/crm_token.rb
237
238
  - lib/onlinepayments/sdk/domain/currency_conversion.rb
238
239
  - lib/onlinepayments/sdk/domain/currency_conversion_input.rb
239
240
  - lib/onlinepayments/sdk/domain/currency_conversion_request.rb
@@ -294,6 +295,7 @@ files:
294
295
  - lib/onlinepayments/sdk/domain/mandate_personal_name_response.rb
295
296
  - lib/onlinepayments/sdk/domain/mandate_redirect_data.rb
296
297
  - lib/onlinepayments/sdk/domain/mandate_response.rb
298
+ - lib/onlinepayments/sdk/domain/market_place.rb
297
299
  - lib/onlinepayments/sdk/domain/merchant_action.rb
298
300
  - lib/onlinepayments/sdk/domain/mobile_payment_data.rb
299
301
  - lib/onlinepayments/sdk/domain/mobile_payment_method_hosted_checkout_specific_input.rb
@@ -308,6 +310,7 @@ files:
308
310
  - lib/onlinepayments/sdk/domain/network_token_linked.rb
309
311
  - lib/onlinepayments/sdk/domain/omnichannel_payout_specific_input.rb
310
312
  - lib/onlinepayments/sdk/domain/omnichannel_refund_specific_input.rb
313
+ - lib/onlinepayments/sdk/domain/omnichannel_subsequent_specific_input.rb
311
314
  - lib/onlinepayments/sdk/domain/operation_output.rb
312
315
  - lib/onlinepayments/sdk/domain/operation_payment_references.rb
313
316
  - lib/onlinepayments/sdk/domain/order.rb
@@ -391,10 +394,12 @@ files:
391
394
  - lib/onlinepayments/sdk/domain/redirect_data.rb
392
395
  - lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb
393
396
  - lib/onlinepayments/sdk/domain/redirect_payment_method_specific_output.rb
397
+ - lib/onlinepayments/sdk/domain/redirect_payment_product11_specific_input.rb
394
398
  - lib/onlinepayments/sdk/domain/redirect_payment_product3203_specific_input.rb
395
399
  - lib/onlinepayments/sdk/domain/redirect_payment_product3204_specific_input.rb
396
400
  - lib/onlinepayments/sdk/domain/redirect_payment_product3302_specific_input.rb
397
401
  - lib/onlinepayments/sdk/domain/redirect_payment_product3306_specific_input.rb
402
+ - lib/onlinepayments/sdk/domain/redirect_payment_product3307_specific_input.rb
398
403
  - lib/onlinepayments/sdk/domain/redirect_payment_product5001_specific_input.rb
399
404
  - lib/onlinepayments/sdk/domain/redirect_payment_product5300_specific_input.rb
400
405
  - lib/onlinepayments/sdk/domain/redirect_payment_product5402_specific_input.rb
@@ -414,6 +419,8 @@ files:
414
419
  - lib/onlinepayments/sdk/domain/refund_payment_product840_customer_account.rb
415
420
  - lib/onlinepayments/sdk/domain/refund_payment_product840_specific_output.rb
416
421
  - lib/onlinepayments/sdk/domain/refund_redirect_method_specific_output.rb
422
+ - lib/onlinepayments/sdk/domain/refund_redirect_payment_method_specific_input.rb
423
+ - lib/onlinepayments/sdk/domain/refund_redirect_payment_product900_specific_input.rb
417
424
  - lib/onlinepayments/sdk/domain/refund_request.rb
418
425
  - lib/onlinepayments/sdk/domain/refund_response.rb
419
426
  - lib/onlinepayments/sdk/domain/refunds_response.rb
@@ -425,6 +432,7 @@ files:
425
432
  - lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_method_specific_output.rb
426
433
  - lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_product771_specific_input.rb
427
434
  - lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_product771_specific_input_base.rb
435
+ - lib/onlinepayments/sdk/domain/session_details.rb
428
436
  - lib/onlinepayments/sdk/domain/session_request.rb
429
437
  - lib/onlinepayments/sdk/domain/session_response.rb
430
438
  - lib/onlinepayments/sdk/domain/shipping.rb
@@ -433,6 +441,8 @@ files:
433
441
  - lib/onlinepayments/sdk/domain/shopping_cart_extension.rb
434
442
  - lib/onlinepayments/sdk/domain/show_form_data.rb
435
443
  - lib/onlinepayments/sdk/domain/show_instructions_data.rb
444
+ - lib/onlinepayments/sdk/domain/split_payment_product_filter.rb
445
+ - lib/onlinepayments/sdk/domain/split_payment_product_filters_hosted_checkout.rb
436
446
  - lib/onlinepayments/sdk/domain/subsequent_card_payment_method_specific_input.rb
437
447
  - lib/onlinepayments/sdk/domain/subsequent_payment_product5001_specific_input.rb
438
448
  - lib/onlinepayments/sdk/domain/subsequent_payment_request.rb
@@ -492,7 +502,6 @@ files:
492
502
  - lib/onlinepayments/sdk/merchant/mandates/mandates_client.rb
493
503
  - lib/onlinepayments/sdk/merchant/merchant_client.rb
494
504
  - lib/onlinepayments/sdk/merchant/paymentlinks.rb
495
- - lib/onlinepayments/sdk/merchant/paymentlinks/get_payment_links_in_bulk_params.rb
496
505
  - lib/onlinepayments/sdk/merchant/paymentlinks/payment_links_client.rb
497
506
  - lib/onlinepayments/sdk/merchant/payments.rb
498
507
  - lib/onlinepayments/sdk/merchant/payments/payments_client.rb
@@ -1,28 +0,0 @@
1
- #
2
- # This file was automatically generated.
3
- #
4
- require 'onlinepayments/sdk/communication/param_request'
5
- require 'onlinepayments/sdk/communication/request_param'
6
-
7
- module OnlinePayments
8
- module SDK
9
- module Merchant
10
- module PaymentLinks
11
- # Query parameters for Get payment links (/v2/{merchantId}/paymentlinks)
12
- #
13
- # @attr [String] operation_group_reference
14
- class GetPaymentLinksInBulkParams < OnlinePayments::SDK::Communication::ParamRequest
15
-
16
- attr_accessor :operation_group_reference
17
-
18
- # @return [Array<OnlinePayments::SDK::Communication::RequestParam>] representing the attributes of this class
19
- def to_request_parameters
20
- result = []
21
- result << RequestParam.new('operationGroupReference', @operation_group_reference) unless @operation_group_reference.nil?
22
- result
23
- end
24
- end
25
- end
26
- end
27
- end
28
- end