onlinepayments-sdk-ruby 4.12.0 → 4.14.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1eecf54f4030d6bbfbc0200135068e9081ef1a1cdde854a46ccd3d3934275b95
4
- data.tar.gz: c6fe4897a39a18dadb4322f05ffda389390688e67f58e99a65796a44e7ac5485
3
+ metadata.gz: c5bbb5c6a0448fddc02ac54770da4b4a7bacd4e1f15e33417f8b5bcbe58d9952
4
+ data.tar.gz: 7cdb64f718370887abef35caca2f1336b3aa947d3e4d0fcc9c0917508bd40076
5
5
  SHA512:
6
- metadata.gz: 4bcd42f254e5082999a487d0cb5bc71d29e6b0fdc67935d06919a7df614e0d04c48d7e925c3466dc2ff34b83b4fafb1239ddb73b750465b3faa57d138ca81dce
7
- data.tar.gz: 1c28ecec5b513f6b6a9a90ad4294af91dd2fe9265b8df31510cac6cf0080dbde280a95f59fb97e52ef3d0a8b718a555e51e65dee8b9df307b1c5a17804909ef0
6
+ metadata.gz: a6ec4a40ad926b7ca7134b1f972f87d268edfc79d76b4632eabb1e219a454d4cc6e124899e33e4b2ea1342cf3b7fc638d89067bc511d37b56b71114dbf03246d
7
+ data.tar.gz: 3dec01511a445546da079d052cce9fa8c393e12829d512062e44f8609ae074a351105ab80500eb6c4bd8b3e26951b2a19f7ca3b12b979f11d5b4415974af454a
@@ -4,6 +4,7 @@
4
4
  require 'onlinepayments/sdk/data_object'
5
5
  require 'onlinepayments/sdk/domain/amount_of_money'
6
6
  require 'onlinepayments/sdk/domain/card_payout_method_specific_input'
7
+ require 'onlinepayments/sdk/domain/omnichannel_payout_specific_input'
7
8
  require 'onlinepayments/sdk/domain/payment_references'
8
9
 
9
10
  module OnlinePayments::SDK
@@ -11,10 +12,12 @@ module OnlinePayments::SDK
11
12
 
12
13
  # @attr [OnlinePayments::SDK::Domain::AmountOfMoney] amount_of_money
13
14
  # @attr [OnlinePayments::SDK::Domain::CardPayoutMethodSpecificInput] card_payout_method_specific_input
15
+ # @attr [OnlinePayments::SDK::Domain::OmnichannelPayoutSpecificInput] omnichannel_payout_specific_input
14
16
  # @attr [OnlinePayments::SDK::Domain::PaymentReferences] references
15
17
  class CreatePayoutRequest < OnlinePayments::SDK::DataObject
16
18
  attr_accessor :amount_of_money
17
19
  attr_accessor :card_payout_method_specific_input
20
+ attr_accessor :omnichannel_payout_specific_input
18
21
  attr_accessor :references
19
22
 
20
23
  # @return (Hash)
@@ -22,6 +25,7 @@ module OnlinePayments::SDK
22
25
  hash = super
23
26
  hash['amountOfMoney'] = @amount_of_money.to_h if @amount_of_money
24
27
  hash['cardPayoutMethodSpecificInput'] = @card_payout_method_specific_input.to_h if @card_payout_method_specific_input
28
+ hash['omnichannelPayoutSpecificInput'] = @omnichannel_payout_specific_input.to_h if @omnichannel_payout_specific_input
25
29
  hash['references'] = @references.to_h if @references
26
30
  hash
27
31
  end
@@ -36,6 +40,10 @@ module OnlinePayments::SDK
36
40
  raise TypeError, "value '%s' is not a Hash" % [hash['cardPayoutMethodSpecificInput']] unless hash['cardPayoutMethodSpecificInput'].is_a? Hash
37
41
  @card_payout_method_specific_input = OnlinePayments::SDK::Domain::CardPayoutMethodSpecificInput.new_from_hash(hash['cardPayoutMethodSpecificInput'])
38
42
  end
43
+ if hash.key? 'omnichannelPayoutSpecificInput'
44
+ raise TypeError, "value '%s' is not a Hash" % [hash['omnichannelPayoutSpecificInput']] unless hash['omnichannelPayoutSpecificInput'].is_a? Hash
45
+ @omnichannel_payout_specific_input = OnlinePayments::SDK::Domain::OmnichannelPayoutSpecificInput.new_from_hash(hash['omnichannelPayoutSpecificInput'])
46
+ end
39
47
  if hash.key? 'references'
40
48
  raise TypeError, "value '%s' is not a Hash" % [hash['references']] unless hash['references'].is_a? Hash
41
49
  @references = OnlinePayments::SDK::Domain::PaymentReferences.new_from_hash(hash['references'])
@@ -2,31 +2,31 @@
2
2
  # This class was auto-generated.
3
3
  #
4
4
  require 'onlinepayments/sdk/data_object'
5
- require 'onlinepayments/sdk/domain/card_info'
5
+ require 'onlinepayments/sdk/domain/dcc_card_source'
6
6
  require 'onlinepayments/sdk/domain/transaction'
7
7
 
8
8
  module OnlinePayments::SDK
9
9
  module Domain
10
10
 
11
- # @attr [OnlinePayments::SDK::Domain::CardInfo] card
11
+ # @attr [OnlinePayments::SDK::Domain::DccCardSource] card_source
12
12
  # @attr [OnlinePayments::SDK::Domain::Transaction] transaction
13
13
  class CurrencyConversionRequest < OnlinePayments::SDK::DataObject
14
- attr_accessor :card
14
+ attr_accessor :card_source
15
15
  attr_accessor :transaction
16
16
 
17
17
  # @return (Hash)
18
18
  def to_h
19
19
  hash = super
20
- hash['card'] = @card.to_h if @card
20
+ hash['cardSource'] = @card_source.to_h if @card_source
21
21
  hash['transaction'] = @transaction.to_h if @transaction
22
22
  hash
23
23
  end
24
24
 
25
25
  def from_hash(hash)
26
26
  super
27
- if hash.key? 'card'
28
- raise TypeError, "value '%s' is not a Hash" % [hash['card']] unless hash['card'].is_a? Hash
29
- @card = OnlinePayments::SDK::Domain::CardInfo.new_from_hash(hash['card'])
27
+ if hash.key? 'cardSource'
28
+ raise TypeError, "value '%s' is not a Hash" % [hash['cardSource']] unless hash['cardSource'].is_a? Hash
29
+ @card_source = OnlinePayments::SDK::Domain::DccCardSource.new_from_hash(hash['cardSource'])
30
30
  end
31
31
  if hash.key? 'transaction'
32
32
  raise TypeError, "value '%s' is not a Hash" % [hash['transaction']] unless hash['transaction'].is_a? Hash
@@ -0,0 +1,34 @@
1
+ #
2
+ # This class was auto-generated.
3
+ #
4
+ require 'onlinepayments/sdk/data_object'
5
+
6
+ module OnlinePayments::SDK
7
+ module Domain
8
+
9
+ # @attr [String] account_holder_name
10
+ # @attr [String] bic
11
+ # @attr [String] iban
12
+ class CustomerBankAccount < OnlinePayments::SDK::DataObject
13
+ attr_accessor :account_holder_name
14
+ attr_accessor :bic
15
+ attr_accessor :iban
16
+
17
+ # @return (Hash)
18
+ def to_h
19
+ hash = super
20
+ hash['accountHolderName'] = @account_holder_name unless @account_holder_name.nil?
21
+ hash['bic'] = @bic unless @bic.nil?
22
+ hash['iban'] = @iban unless @iban.nil?
23
+ hash
24
+ end
25
+
26
+ def from_hash(hash)
27
+ super
28
+ @account_holder_name = hash['accountHolderName'] if hash.key? 'accountHolderName'
29
+ @bic = hash['bic'] if hash.key? 'bic'
30
+ @iban = hash['iban'] if hash.key? 'iban'
31
+ end
32
+ end
33
+ end
34
+ end
@@ -9,6 +9,7 @@ module OnlinePayments::SDK
9
9
 
10
10
  # @attr [String] accept_header
11
11
  # @attr [OnlinePayments::SDK::Domain::BrowserData] browser_data
12
+ # @attr [String] device_fingerprint
12
13
  # @attr [String] ip_address
13
14
  # @attr [String] locale
14
15
  # @attr [String] timezone_offset_utc_minutes
@@ -16,6 +17,7 @@ module OnlinePayments::SDK
16
17
  class CustomerDevice < OnlinePayments::SDK::DataObject
17
18
  attr_accessor :accept_header
18
19
  attr_accessor :browser_data
20
+ attr_accessor :device_fingerprint
19
21
  attr_accessor :ip_address
20
22
  attr_accessor :locale
21
23
  attr_accessor :timezone_offset_utc_minutes
@@ -26,6 +28,7 @@ module OnlinePayments::SDK
26
28
  hash = super
27
29
  hash['acceptHeader'] = @accept_header unless @accept_header.nil?
28
30
  hash['browserData'] = @browser_data.to_h if @browser_data
31
+ hash['deviceFingerprint'] = @device_fingerprint unless @device_fingerprint.nil?
29
32
  hash['ipAddress'] = @ip_address unless @ip_address.nil?
30
33
  hash['locale'] = @locale unless @locale.nil?
31
34
  hash['timezoneOffsetUtcMinutes'] = @timezone_offset_utc_minutes unless @timezone_offset_utc_minutes.nil?
@@ -40,6 +43,7 @@ module OnlinePayments::SDK
40
43
  raise TypeError, "value '%s' is not a Hash" % [hash['browserData']] unless hash['browserData'].is_a? Hash
41
44
  @browser_data = OnlinePayments::SDK::Domain::BrowserData.new_from_hash(hash['browserData'])
42
45
  end
46
+ @device_fingerprint = hash['deviceFingerprint'] if hash.key? 'deviceFingerprint'
43
47
  @ip_address = hash['ipAddress'] if hash.key? 'ipAddress'
44
48
  @locale = hash['locale'] if hash.key? 'locale'
45
49
  @timezone_offset_utc_minutes = hash['timezoneOffsetUtcMinutes'] if hash.key? 'timezoneOffsetUtcMinutes'
@@ -0,0 +1,42 @@
1
+ #
2
+ # This class was auto-generated.
3
+ #
4
+ require 'onlinepayments/sdk/data_object'
5
+ require 'onlinepayments/sdk/domain/card_info'
6
+
7
+ module OnlinePayments::SDK
8
+ module Domain
9
+
10
+ # @attr [OnlinePayments::SDK::Domain::CardInfo] card
11
+ # @attr [String] encrypted_customer_input
12
+ # @attr [String] hosted_tokenization_id
13
+ # @attr [String] token
14
+ class DccCardSource < OnlinePayments::SDK::DataObject
15
+ attr_accessor :card
16
+ attr_accessor :encrypted_customer_input
17
+ attr_accessor :hosted_tokenization_id
18
+ attr_accessor :token
19
+
20
+ # @return (Hash)
21
+ def to_h
22
+ hash = super
23
+ hash['card'] = @card.to_h if @card
24
+ hash['encryptedCustomerInput'] = @encrypted_customer_input unless @encrypted_customer_input.nil?
25
+ hash['hostedTokenizationId'] = @hosted_tokenization_id unless @hosted_tokenization_id.nil?
26
+ hash['token'] = @token unless @token.nil?
27
+ hash
28
+ end
29
+
30
+ def from_hash(hash)
31
+ super
32
+ if hash.key? 'card'
33
+ raise TypeError, "value '%s' is not a Hash" % [hash['card']] unless hash['card'].is_a? Hash
34
+ @card = OnlinePayments::SDK::Domain::CardInfo.new_from_hash(hash['card'])
35
+ end
36
+ @encrypted_customer_input = hash['encryptedCustomerInput'] if hash.key? 'encryptedCustomerInput'
37
+ @hosted_tokenization_id = hash['hostedTokenizationId'] if hash.key? 'hostedTokenizationId'
38
+ @token = hash['token'] if hash.key? 'token'
39
+ end
40
+ end
41
+ end
42
+ end
@@ -2,20 +2,24 @@
2
2
  # This class was auto-generated.
3
3
  #
4
4
  require 'onlinepayments/sdk/data_object'
5
+ require 'onlinepayments/sdk/domain/mobile_payment_product320_specific_input'
5
6
 
6
7
  module OnlinePayments::SDK
7
8
  module Domain
8
9
 
9
10
  # @attr [String] authorization_mode
11
+ # @attr [OnlinePayments::SDK::Domain::MobilePaymentProduct320SpecificInput] payment_product320_specific_input
10
12
  # @attr [Integer] payment_product_id
11
13
  class MobilePaymentMethodHostedCheckoutSpecificInput < OnlinePayments::SDK::DataObject
12
14
  attr_accessor :authorization_mode
15
+ attr_accessor :payment_product320_specific_input
13
16
  attr_accessor :payment_product_id
14
17
 
15
18
  # @return (Hash)
16
19
  def to_h
17
20
  hash = super
18
21
  hash['authorizationMode'] = @authorization_mode unless @authorization_mode.nil?
22
+ hash['paymentProduct320SpecificInput'] = @payment_product320_specific_input.to_h if @payment_product320_specific_input
19
23
  hash['paymentProductId'] = @payment_product_id unless @payment_product_id.nil?
20
24
  hash
21
25
  end
@@ -23,6 +27,10 @@ module OnlinePayments::SDK
23
27
  def from_hash(hash)
24
28
  super
25
29
  @authorization_mode = hash['authorizationMode'] if hash.key? 'authorizationMode'
30
+ if hash.key? 'paymentProduct320SpecificInput'
31
+ raise TypeError, "value '%s' is not a Hash" % [hash['paymentProduct320SpecificInput']] unless hash['paymentProduct320SpecificInput'].is_a? Hash
32
+ @payment_product320_specific_input = OnlinePayments::SDK::Domain::MobilePaymentProduct320SpecificInput.new_from_hash(hash['paymentProduct320SpecificInput'])
33
+ end
26
34
  @payment_product_id = hash['paymentProductId'] if hash.key? 'paymentProductId'
27
35
  end
28
36
  end
@@ -0,0 +1,26 @@
1
+ #
2
+ # This class was auto-generated.
3
+ #
4
+ require 'onlinepayments/sdk/data_object'
5
+
6
+ module OnlinePayments::SDK
7
+ module Domain
8
+
9
+ # @attr [String] payment_id
10
+ class OmnichannelPayoutSpecificInput < OnlinePayments::SDK::DataObject
11
+ attr_accessor :payment_id
12
+
13
+ # @return (Hash)
14
+ def to_h
15
+ hash = super
16
+ hash['paymentId'] = @payment_id unless @payment_id.nil?
17
+ hash
18
+ end
19
+
20
+ def from_hash(hash)
21
+ super
22
+ @payment_id = hash['paymentId'] if hash.key? 'paymentId'
23
+ end
24
+ end
25
+ end
26
+ end
@@ -3,6 +3,7 @@
3
3
  #
4
4
  require 'onlinepayments/sdk/data_object'
5
5
  require 'onlinepayments/sdk/domain/redirect_payment_product3306_specific_input'
6
+ require 'onlinepayments/sdk/domain/redirect_payment_product5406_specific_input'
6
7
  require 'onlinepayments/sdk/domain/redirect_payment_product809_specific_input'
7
8
  require 'onlinepayments/sdk/domain/redirect_payment_product840_specific_input'
8
9
  require 'onlinepayments/sdk/domain/redirection_data'
@@ -12,6 +13,7 @@ module OnlinePayments::SDK
12
13
 
13
14
  # @attr [String] payment_option
14
15
  # @attr [OnlinePayments::SDK::Domain::RedirectPaymentProduct3306SpecificInput] payment_product3306_specific_input
16
+ # @attr [OnlinePayments::SDK::Domain::RedirectPaymentProduct5406SpecificInput] payment_product5406_specific_input
15
17
  # @attr [OnlinePayments::SDK::Domain::RedirectPaymentProduct809SpecificInput] payment_product809_specific_input
16
18
  # @attr [OnlinePayments::SDK::Domain::RedirectPaymentProduct840SpecificInput] payment_product840_specific_input
17
19
  # @attr [Integer] payment_product_id
@@ -22,6 +24,7 @@ module OnlinePayments::SDK
22
24
  class RedirectPaymentMethodSpecificInput < OnlinePayments::SDK::DataObject
23
25
  attr_accessor :payment_option
24
26
  attr_accessor :payment_product3306_specific_input
27
+ attr_accessor :payment_product5406_specific_input
25
28
  attr_accessor :payment_product809_specific_input
26
29
  attr_accessor :payment_product840_specific_input
27
30
  attr_accessor :payment_product_id
@@ -35,6 +38,7 @@ module OnlinePayments::SDK
35
38
  hash = super
36
39
  hash['paymentOption'] = @payment_option unless @payment_option.nil?
37
40
  hash['paymentProduct3306SpecificInput'] = @payment_product3306_specific_input.to_h if @payment_product3306_specific_input
41
+ hash['paymentProduct5406SpecificInput'] = @payment_product5406_specific_input.to_h if @payment_product5406_specific_input
38
42
  hash['paymentProduct809SpecificInput'] = @payment_product809_specific_input.to_h if @payment_product809_specific_input
39
43
  hash['paymentProduct840SpecificInput'] = @payment_product840_specific_input.to_h if @payment_product840_specific_input
40
44
  hash['paymentProductId'] = @payment_product_id unless @payment_product_id.nil?
@@ -52,6 +56,10 @@ module OnlinePayments::SDK
52
56
  raise TypeError, "value '%s' is not a Hash" % [hash['paymentProduct3306SpecificInput']] unless hash['paymentProduct3306SpecificInput'].is_a? Hash
53
57
  @payment_product3306_specific_input = OnlinePayments::SDK::Domain::RedirectPaymentProduct3306SpecificInput.new_from_hash(hash['paymentProduct3306SpecificInput'])
54
58
  end
59
+ if hash.key? 'paymentProduct5406SpecificInput'
60
+ raise TypeError, "value '%s' is not a Hash" % [hash['paymentProduct5406SpecificInput']] unless hash['paymentProduct5406SpecificInput'].is_a? Hash
61
+ @payment_product5406_specific_input = OnlinePayments::SDK::Domain::RedirectPaymentProduct5406SpecificInput.new_from_hash(hash['paymentProduct5406SpecificInput'])
62
+ end
55
63
  if hash.key? 'paymentProduct809SpecificInput'
56
64
  raise TypeError, "value '%s' is not a Hash" % [hash['paymentProduct809SpecificInput']] unless hash['paymentProduct809SpecificInput'].is_a? Hash
57
65
  @payment_product809_specific_input = OnlinePayments::SDK::Domain::RedirectPaymentProduct809SpecificInput.new_from_hash(hash['paymentProduct809SpecificInput'])
@@ -2,6 +2,7 @@
2
2
  # This class was auto-generated.
3
3
  #
4
4
  require 'onlinepayments/sdk/data_object'
5
+ require 'onlinepayments/sdk/domain/customer_bank_account'
5
6
  require 'onlinepayments/sdk/domain/fraud_results'
6
7
  require 'onlinepayments/sdk/domain/payment_product5001_specific_output'
7
8
  require 'onlinepayments/sdk/domain/payment_product5402_specific_output'
@@ -11,6 +12,7 @@ require 'onlinepayments/sdk/domain/payment_product840_specific_output'
11
12
  module OnlinePayments::SDK
12
13
  module Domain
13
14
 
15
+ # @attr [OnlinePayments::SDK::Domain::CustomerBankAccount] customer_bank_account
14
16
  # @attr [OnlinePayments::SDK::Domain::FraudResults] fraud_results
15
17
  # @attr [String] payment_option
16
18
  # @attr [OnlinePayments::SDK::Domain::PaymentProduct5001SpecificOutput] payment_product5001_specific_output
@@ -20,6 +22,7 @@ module OnlinePayments::SDK
20
22
  # @attr [Integer] payment_product_id
21
23
  # @attr [String] token
22
24
  class RedirectPaymentMethodSpecificOutput < OnlinePayments::SDK::DataObject
25
+ attr_accessor :customer_bank_account
23
26
  attr_accessor :fraud_results
24
27
  attr_accessor :payment_option
25
28
  attr_accessor :payment_product5001_specific_output
@@ -32,6 +35,7 @@ module OnlinePayments::SDK
32
35
  # @return (Hash)
33
36
  def to_h
34
37
  hash = super
38
+ hash['customerBankAccount'] = @customer_bank_account.to_h if @customer_bank_account
35
39
  hash['fraudResults'] = @fraud_results.to_h if @fraud_results
36
40
  hash['paymentOption'] = @payment_option unless @payment_option.nil?
37
41
  hash['paymentProduct5001SpecificOutput'] = @payment_product5001_specific_output.to_h if @payment_product5001_specific_output
@@ -45,6 +49,10 @@ module OnlinePayments::SDK
45
49
 
46
50
  def from_hash(hash)
47
51
  super
52
+ if hash.key? 'customerBankAccount'
53
+ raise TypeError, "value '%s' is not a Hash" % [hash['customerBankAccount']] unless hash['customerBankAccount'].is_a? Hash
54
+ @customer_bank_account = OnlinePayments::SDK::Domain::CustomerBankAccount.new_from_hash(hash['customerBankAccount'])
55
+ end
48
56
  if hash.key? 'fraudResults'
49
57
  raise TypeError, "value '%s' is not a Hash" % [hash['fraudResults']] unless hash['fraudResults'].is_a? Hash
50
58
  @fraud_results = OnlinePayments::SDK::Domain::FraudResults.new_from_hash(hash['fraudResults'])
@@ -0,0 +1,30 @@
1
+ #
2
+ # This class was auto-generated.
3
+ #
4
+ require 'onlinepayments/sdk/data_object'
5
+ require 'onlinepayments/sdk/domain/customer_bank_account'
6
+
7
+ module OnlinePayments::SDK
8
+ module Domain
9
+
10
+ # @attr [OnlinePayments::SDK::Domain::CustomerBankAccount] customer_bank_account
11
+ class RedirectPaymentProduct5406SpecificInput < OnlinePayments::SDK::DataObject
12
+ attr_accessor :customer_bank_account
13
+
14
+ # @return (Hash)
15
+ def to_h
16
+ hash = super
17
+ hash['customerBankAccount'] = @customer_bank_account.to_h if @customer_bank_account
18
+ hash
19
+ end
20
+
21
+ def from_hash(hash)
22
+ super
23
+ if hash.key? 'customerBankAccount'
24
+ raise TypeError, "value '%s' is not a Hash" % [hash['customerBankAccount']] unless hash['customerBankAccount'].is_a? Hash
25
+ @customer_bank_account = OnlinePayments::SDK::Domain::CustomerBankAccount.new_from_hash(hash['customerBankAccount'])
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'onlinepayments-sdk-ruby'
3
- spec.version = '4.12.0'
3
+ spec.version = '4.14.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: 4.12.0
4
+ version: 4.14.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: 2023-07-13 00:00:00.000000000 Z
11
+ date: 2023-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httpclient
@@ -212,11 +212,13 @@ files:
212
212
  - lib/onlinepayments/sdk/domain/customer.rb
213
213
  - lib/onlinepayments/sdk/domain/customer_account.rb
214
214
  - lib/onlinepayments/sdk/domain/customer_account_authentication.rb
215
+ - lib/onlinepayments/sdk/domain/customer_bank_account.rb
215
216
  - lib/onlinepayments/sdk/domain/customer_device.rb
216
217
  - lib/onlinepayments/sdk/domain/customer_device_output.rb
217
218
  - lib/onlinepayments/sdk/domain/customer_output.rb
218
219
  - lib/onlinepayments/sdk/domain/customer_payment_activity.rb
219
220
  - lib/onlinepayments/sdk/domain/customer_token.rb
221
+ - lib/onlinepayments/sdk/domain/dcc_card_source.rb
220
222
  - lib/onlinepayments/sdk/domain/dcc_proposal.rb
221
223
  - lib/onlinepayments/sdk/domain/decrypted_payment_data.rb
222
224
  - lib/onlinepayments/sdk/domain/directory_entry.rb
@@ -260,6 +262,7 @@ files:
260
262
  - lib/onlinepayments/sdk/domain/mobile_payment_method_specific_input.rb
261
263
  - lib/onlinepayments/sdk/domain/mobile_payment_method_specific_output.rb
262
264
  - lib/onlinepayments/sdk/domain/mobile_payment_product320_specific_input.rb
265
+ - lib/onlinepayments/sdk/domain/omnichannel_payout_specific_input.rb
263
266
  - lib/onlinepayments/sdk/domain/operation_output.rb
264
267
  - lib/onlinepayments/sdk/domain/order.rb
265
268
  - lib/onlinepayments/sdk/domain/order_line_details.rb
@@ -327,6 +330,7 @@ files:
327
330
  - lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb
328
331
  - lib/onlinepayments/sdk/domain/redirect_payment_method_specific_output.rb
329
332
  - lib/onlinepayments/sdk/domain/redirect_payment_product3306_specific_input.rb
333
+ - lib/onlinepayments/sdk/domain/redirect_payment_product5406_specific_input.rb
330
334
  - lib/onlinepayments/sdk/domain/redirect_payment_product809_specific_input.rb
331
335
  - lib/onlinepayments/sdk/domain/redirect_payment_product840_specific_input.rb
332
336
  - lib/onlinepayments/sdk/domain/redirection_data.rb