connect-sdk-ruby 2.21.0 → 2.25.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.
- checksums.yaml +4 -4
- data/connect-sdk-ruby.gemspec +1 -1
- data/examples/merchant/payouts/create_payout_example.rb +17 -13
- data/lib/ingenico/connect/sdk/domain/payment/abstract_three_d_secure.rb +7 -0
- data/lib/ingenico/connect/sdk/domain/payment/customer_account_authentication.rb +7 -0
- data/lib/ingenico/connect/sdk/domain/payment/device_render_options.rb +13 -0
- data/lib/ingenico/connect/sdk/domain/payment/redirect_payment_product4101_specific_input.rb +12 -5
- data/lib/ingenico/connect/sdk/domain/payout/bank_transfer_payout_method_specific_input.rb +2 -0
- data/lib/ingenico/connect/sdk/domain/payout/card_payout_method_specific_input.rb +9 -0
- data/lib/ingenico/connect/sdk/domain/payout/create_payout_request.rb +14 -1
- data/lib/ingenico/connect/sdk/domain/payout/payout_details.rb +52 -0
- data/lib/ingenico/connect/sdk/domain/payout/payout_recipient.rb +46 -0
- data/lib/ingenico/connect/sdk/meta_data_provider.rb +1 -1
- data/lib/ingenico/connect/sdk/request_header.rb +4 -5
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d3544e10cd38ce540eed9db96f91d7528f199344048fdf30a1c0e2fbfac7d88
|
4
|
+
data.tar.gz: 98805c926124ced5fe4237ad63d2ed40dc0e76fb16ca6ea12d510f50f809ea08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c6d44127b3971794d6dc04d1156da56b45bc778af36e55d90eca4695b6369f660b44de56f53336ee95e15db3de85035b45b3d0e7e5ed5f77c0b1895f9856479
|
7
|
+
data.tar.gz: 13727982fff96b31b113738cbbc3242703b84236ebb0bfd040e180e25311762ecdadf6f112b725384cfbf2b3b451f841103ff7a3ca92a2911ac10bb5156e096d
|
data/connect-sdk-ruby.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = 'connect-sdk-ruby'
|
3
|
-
spec.version = '2.
|
3
|
+
spec.version = '2.25.0'
|
4
4
|
spec.authors = ['Ingenico ePayments']
|
5
5
|
spec.email = ['github@epay.ingenico.com']
|
6
6
|
spec.summary = %q{SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API}
|
@@ -14,6 +14,7 @@ require 'ingenico/connect/sdk/domain/payment/personal_name'
|
|
14
14
|
require 'ingenico/connect/sdk/domain/payout/bank_transfer_payout_method_specific_input'
|
15
15
|
require 'ingenico/connect/sdk/domain/payout/create_payout_request'
|
16
16
|
require 'ingenico/connect/sdk/domain/payout/payout_customer'
|
17
|
+
require 'ingenico/connect/sdk/domain/payout/payout_details'
|
17
18
|
require 'ingenico/connect/sdk/domain/payout/payout_references'
|
18
19
|
|
19
20
|
Definitions = Ingenico::Connect::SDK::Domain::Definitions
|
@@ -22,14 +23,20 @@ Payout = Ingenico::Connect::SDK::Domain::Payout
|
|
22
23
|
|
23
24
|
def example
|
24
25
|
get_client do |client|
|
25
|
-
amount_of_money = Definitions::AmountOfMoney.new
|
26
|
-
amount_of_money.amount = 2345
|
27
|
-
amount_of_money.currency_code = 'EUR'
|
28
|
-
|
29
26
|
bank_account_iban = Definitions::BankAccountIban.new
|
30
27
|
bank_account_iban.account_holder_name = 'Wile E. Coyote'
|
31
28
|
bank_account_iban.iban = 'IT60X0542811101000000123456'
|
32
29
|
|
30
|
+
bank_transfer_payout_method_specific_input = Payout::BankTransferPayoutMethodSpecificInput.new
|
31
|
+
bank_transfer_payout_method_specific_input.bank_account_iban = bank_account_iban
|
32
|
+
bank_transfer_payout_method_specific_input.payout_date = '20150102'
|
33
|
+
bank_transfer_payout_method_specific_input.payout_text = 'Payout Acme'
|
34
|
+
bank_transfer_payout_method_specific_input.swift_code = 'swift'
|
35
|
+
|
36
|
+
amount_of_money = Definitions::AmountOfMoney.new
|
37
|
+
amount_of_money.amount = 2345
|
38
|
+
amount_of_money.currency_code = 'EUR'
|
39
|
+
|
33
40
|
address = Definitions::Address.new
|
34
41
|
address.city = 'Burbank'
|
35
42
|
address.country_code = 'US'
|
@@ -56,20 +63,17 @@ def example
|
|
56
63
|
customer.contact_details = contact_details
|
57
64
|
customer.name = name
|
58
65
|
|
59
|
-
bank_transfer_payout_method_specific_input = Payout::BankTransferPayoutMethodSpecificInput.new
|
60
|
-
bank_transfer_payout_method_specific_input.bank_account_iban = bank_account_iban
|
61
|
-
bank_transfer_payout_method_specific_input.customer = customer
|
62
|
-
bank_transfer_payout_method_specific_input.payout_date = '20150102'
|
63
|
-
bank_transfer_payout_method_specific_input.payout_text = 'Payout Acme'
|
64
|
-
bank_transfer_payout_method_specific_input.swift_code = 'swift'
|
65
|
-
|
66
66
|
references = Payout::PayoutReferences.new
|
67
67
|
references.merchant_reference = 'AcmeOrder001'
|
68
68
|
|
69
|
+
payout_details = Payout::PayoutDetails.new
|
70
|
+
payout_details.amount_of_money = amount_of_money
|
71
|
+
payout_details.customer = customer
|
72
|
+
payout_details.references = references
|
73
|
+
|
69
74
|
body = Payout::CreatePayoutRequest.new
|
70
|
-
body.amount_of_money = amount_of_money
|
71
75
|
body.bank_transfer_payout_method_specific_input = bank_transfer_payout_method_specific_input
|
72
|
-
body.
|
76
|
+
body.payout_details = payout_details
|
73
77
|
|
74
78
|
begin
|
75
79
|
response = client.merchant('merchantId').payouts.create(body)
|
@@ -19,6 +19,7 @@ module Ingenico::Connect::SDK
|
|
19
19
|
# @attr [Ingenico::Connect::SDK::Domain::Payment::ThreeDSecureData] prior_three_d_secure_data
|
20
20
|
# @attr [Ingenico::Connect::SDK::Domain::Payment::SdkDataInput] sdk_data
|
21
21
|
# @attr [true/false] skip_authentication
|
22
|
+
# @attr [String] transaction_risk_level
|
22
23
|
class AbstractThreeDSecure < Ingenico::Connect::SDK::DataObject
|
23
24
|
|
24
25
|
attr_accessor :authentication_amount
|
@@ -37,6 +38,8 @@ module Ingenico::Connect::SDK
|
|
37
38
|
|
38
39
|
attr_accessor :skip_authentication
|
39
40
|
|
41
|
+
attr_accessor :transaction_risk_level
|
42
|
+
|
40
43
|
# @return (Hash)
|
41
44
|
def to_h
|
42
45
|
hash = super
|
@@ -48,6 +51,7 @@ module Ingenico::Connect::SDK
|
|
48
51
|
hash['priorThreeDSecureData'] = @prior_three_d_secure_data.to_h unless @prior_three_d_secure_data.nil?
|
49
52
|
hash['sdkData'] = @sdk_data.to_h unless @sdk_data.nil?
|
50
53
|
hash['skipAuthentication'] = @skip_authentication unless @skip_authentication.nil?
|
54
|
+
hash['transactionRiskLevel'] = @transaction_risk_level unless @transaction_risk_level.nil?
|
51
55
|
hash
|
52
56
|
end
|
53
57
|
|
@@ -80,6 +84,9 @@ module Ingenico::Connect::SDK
|
|
80
84
|
if hash.has_key? 'skipAuthentication'
|
81
85
|
@skip_authentication = hash['skipAuthentication']
|
82
86
|
end
|
87
|
+
if hash.has_key? 'transactionRiskLevel'
|
88
|
+
@transaction_risk_level = hash['transactionRiskLevel']
|
89
|
+
end
|
83
90
|
end
|
84
91
|
end
|
85
92
|
end
|
@@ -8,10 +8,13 @@ module Ingenico::Connect::SDK
|
|
8
8
|
module Domain
|
9
9
|
module Payment
|
10
10
|
|
11
|
+
# @attr [String] data
|
11
12
|
# @attr [String] method
|
12
13
|
# @attr [String] utc_timestamp
|
13
14
|
class CustomerAccountAuthentication < Ingenico::Connect::SDK::DataObject
|
14
15
|
|
16
|
+
attr_accessor :data
|
17
|
+
|
15
18
|
attr_accessor :method
|
16
19
|
|
17
20
|
attr_accessor :utc_timestamp
|
@@ -19,6 +22,7 @@ module Ingenico::Connect::SDK
|
|
19
22
|
# @return (Hash)
|
20
23
|
def to_h
|
21
24
|
hash = super
|
25
|
+
hash['data'] = @data unless @data.nil?
|
22
26
|
hash['method'] = @method unless @method.nil?
|
23
27
|
hash['utcTimestamp'] = @utc_timestamp unless @utc_timestamp.nil?
|
24
28
|
hash
|
@@ -26,6 +30,9 @@ module Ingenico::Connect::SDK
|
|
26
30
|
|
27
31
|
def from_hash(hash)
|
28
32
|
super
|
33
|
+
if hash.has_key? 'data'
|
34
|
+
@data = hash['data']
|
35
|
+
end
|
29
36
|
if hash.has_key? 'method'
|
30
37
|
@method = hash['method']
|
31
38
|
end
|
@@ -10,17 +10,23 @@ module Ingenico::Connect::SDK
|
|
10
10
|
|
11
11
|
# @attr [String] sdk_interface
|
12
12
|
# @attr [String] sdk_ui_type
|
13
|
+
# @attr [Array<String>] sdk_ui_types
|
13
14
|
class DeviceRenderOptions < Ingenico::Connect::SDK::DataObject
|
14
15
|
|
15
16
|
attr_accessor :sdk_interface
|
16
17
|
|
18
|
+
#
|
19
|
+
# @deprecated Use deviceRenderOptions.sdkUiTypes instead
|
17
20
|
attr_accessor :sdk_ui_type
|
18
21
|
|
22
|
+
attr_accessor :sdk_ui_types
|
23
|
+
|
19
24
|
# @return (Hash)
|
20
25
|
def to_h
|
21
26
|
hash = super
|
22
27
|
hash['sdkInterface'] = @sdk_interface unless @sdk_interface.nil?
|
23
28
|
hash['sdkUiType'] = @sdk_ui_type unless @sdk_ui_type.nil?
|
29
|
+
hash['sdkUiTypes'] = @sdk_ui_types unless @sdk_ui_types.nil?
|
24
30
|
hash
|
25
31
|
end
|
26
32
|
|
@@ -32,6 +38,13 @@ module Ingenico::Connect::SDK
|
|
32
38
|
if hash.has_key? 'sdkUiType'
|
33
39
|
@sdk_ui_type = hash['sdkUiType']
|
34
40
|
end
|
41
|
+
if hash.has_key? 'sdkUiTypes'
|
42
|
+
raise TypeError, "value '%s' is not an Array" % [hash['sdkUiTypes']] unless hash['sdkUiTypes'].is_a? Array
|
43
|
+
@sdk_ui_types = []
|
44
|
+
hash['sdkUiTypes'].each do |e|
|
45
|
+
@sdk_ui_types << e
|
46
|
+
end
|
47
|
+
end
|
35
48
|
end
|
36
49
|
end
|
37
50
|
end
|
@@ -8,29 +8,36 @@ module Ingenico::Connect::SDK
|
|
8
8
|
module Domain
|
9
9
|
module Payment
|
10
10
|
|
11
|
+
# @attr [String] display_name
|
11
12
|
# @attr [String] integration_type
|
12
|
-
# @attr [String]
|
13
|
+
# @attr [String] virtual_payment_address
|
13
14
|
class RedirectPaymentProduct4101SpecificInput < Ingenico::Connect::SDK::DataObject
|
14
15
|
|
16
|
+
attr_accessor :display_name
|
17
|
+
|
15
18
|
attr_accessor :integration_type
|
16
19
|
|
17
|
-
attr_accessor :
|
20
|
+
attr_accessor :virtual_payment_address
|
18
21
|
|
19
22
|
# @return (Hash)
|
20
23
|
def to_h
|
21
24
|
hash = super
|
25
|
+
hash['displayName'] = @display_name unless @display_name.nil?
|
22
26
|
hash['integrationType'] = @integration_type unless @integration_type.nil?
|
23
|
-
hash['
|
27
|
+
hash['virtualPaymentAddress'] = @virtual_payment_address unless @virtual_payment_address.nil?
|
24
28
|
hash
|
25
29
|
end
|
26
30
|
|
27
31
|
def from_hash(hash)
|
28
32
|
super
|
33
|
+
if hash.has_key? 'displayName'
|
34
|
+
@display_name = hash['displayName']
|
35
|
+
end
|
29
36
|
if hash.has_key? 'integrationType'
|
30
37
|
@integration_type = hash['integrationType']
|
31
38
|
end
|
32
|
-
if hash.has_key? '
|
33
|
-
@
|
39
|
+
if hash.has_key? 'virtualPaymentAddress'
|
40
|
+
@virtual_payment_address = hash['virtualPaymentAddress']
|
34
41
|
end
|
35
42
|
end
|
36
43
|
end
|
@@ -4,6 +4,7 @@
|
|
4
4
|
#
|
5
5
|
require 'ingenico/connect/sdk/domain/definitions/card'
|
6
6
|
require 'ingenico/connect/sdk/domain/payout/abstract_payout_method_specific_input'
|
7
|
+
require 'ingenico/connect/sdk/domain/payout/payout_recipient'
|
7
8
|
|
8
9
|
module Ingenico::Connect::SDK
|
9
10
|
module Domain
|
@@ -11,6 +12,7 @@ module Ingenico::Connect::SDK
|
|
11
12
|
|
12
13
|
# @attr [Ingenico::Connect::SDK::Domain::Definitions::Card] card
|
13
14
|
# @attr [Integer] payment_product_id
|
15
|
+
# @attr [Ingenico::Connect::SDK::Domain::Payout::PayoutRecipient] recipient
|
14
16
|
# @attr [String] token
|
15
17
|
class CardPayoutMethodSpecificInput < Ingenico::Connect::SDK::Domain::Payout::AbstractPayoutMethodSpecificInput
|
16
18
|
|
@@ -18,6 +20,8 @@ module Ingenico::Connect::SDK
|
|
18
20
|
|
19
21
|
attr_accessor :payment_product_id
|
20
22
|
|
23
|
+
attr_accessor :recipient
|
24
|
+
|
21
25
|
attr_accessor :token
|
22
26
|
|
23
27
|
# @return (Hash)
|
@@ -25,6 +29,7 @@ module Ingenico::Connect::SDK
|
|
25
29
|
hash = super
|
26
30
|
hash['card'] = @card.to_h unless @card.nil?
|
27
31
|
hash['paymentProductId'] = @payment_product_id unless @payment_product_id.nil?
|
32
|
+
hash['recipient'] = @recipient.to_h unless @recipient.nil?
|
28
33
|
hash['token'] = @token unless @token.nil?
|
29
34
|
hash
|
30
35
|
end
|
@@ -38,6 +43,10 @@ module Ingenico::Connect::SDK
|
|
38
43
|
if hash.has_key? 'paymentProductId'
|
39
44
|
@payment_product_id = hash['paymentProductId']
|
40
45
|
end
|
46
|
+
if hash.has_key? 'recipient'
|
47
|
+
raise TypeError, "value '%s' is not a Hash" % [hash['recipient']] unless hash['recipient'].is_a? Hash
|
48
|
+
@recipient = Ingenico::Connect::SDK::Domain::Payout::PayoutRecipient.new_from_hash(hash['recipient'])
|
49
|
+
end
|
41
50
|
if hash.has_key? 'token'
|
42
51
|
@token = hash['token']
|
43
52
|
end
|
@@ -9,6 +9,7 @@ require 'ingenico/connect/sdk/domain/definitions/bank_account_iban'
|
|
9
9
|
require 'ingenico/connect/sdk/domain/payout/bank_transfer_payout_method_specific_input'
|
10
10
|
require 'ingenico/connect/sdk/domain/payout/card_payout_method_specific_input'
|
11
11
|
require 'ingenico/connect/sdk/domain/payout/payout_customer'
|
12
|
+
require 'ingenico/connect/sdk/domain/payout/payout_details'
|
12
13
|
require 'ingenico/connect/sdk/domain/payout/payout_references'
|
13
14
|
|
14
15
|
module Ingenico::Connect::SDK
|
@@ -22,11 +23,14 @@ module Ingenico::Connect::SDK
|
|
22
23
|
# @attr [Ingenico::Connect::SDK::Domain::Payout::CardPayoutMethodSpecificInput] card_payout_method_specific_input
|
23
24
|
# @attr [Ingenico::Connect::SDK::Domain::Payout::PayoutCustomer] customer
|
24
25
|
# @attr [String] payout_date
|
26
|
+
# @attr [Ingenico::Connect::SDK::Domain::Payout::PayoutDetails] payout_details
|
25
27
|
# @attr [String] payout_text
|
26
28
|
# @attr [Ingenico::Connect::SDK::Domain::Payout::PayoutReferences] references
|
27
29
|
# @attr [String] swift_code
|
28
30
|
class CreatePayoutRequest < Ingenico::Connect::SDK::DataObject
|
29
31
|
|
32
|
+
#
|
33
|
+
# @deprecated Moved to PayoutDetails
|
30
34
|
attr_accessor :amount_of_money
|
31
35
|
|
32
36
|
#
|
@@ -42,17 +46,21 @@ module Ingenico::Connect::SDK
|
|
42
46
|
attr_accessor :card_payout_method_specific_input
|
43
47
|
|
44
48
|
#
|
45
|
-
# @deprecated Moved to
|
49
|
+
# @deprecated Moved to PayoutDetails
|
46
50
|
attr_accessor :customer
|
47
51
|
|
48
52
|
#
|
49
53
|
# @deprecated Moved to BankTransferPayoutMethodSpecificInput
|
50
54
|
attr_accessor :payout_date
|
51
55
|
|
56
|
+
attr_accessor :payout_details
|
57
|
+
|
52
58
|
#
|
53
59
|
# @deprecated Moved to BankTransferPayoutMethodSpecificInput
|
54
60
|
attr_accessor :payout_text
|
55
61
|
|
62
|
+
#
|
63
|
+
# @deprecated Moved to PayoutDetails
|
56
64
|
attr_accessor :references
|
57
65
|
|
58
66
|
#
|
@@ -69,6 +77,7 @@ module Ingenico::Connect::SDK
|
|
69
77
|
hash['cardPayoutMethodSpecificInput'] = @card_payout_method_specific_input.to_h unless @card_payout_method_specific_input.nil?
|
70
78
|
hash['customer'] = @customer.to_h unless @customer.nil?
|
71
79
|
hash['payoutDate'] = @payout_date unless @payout_date.nil?
|
80
|
+
hash['payoutDetails'] = @payout_details.to_h unless @payout_details.nil?
|
72
81
|
hash['payoutText'] = @payout_text unless @payout_text.nil?
|
73
82
|
hash['references'] = @references.to_h unless @references.nil?
|
74
83
|
hash['swiftCode'] = @swift_code unless @swift_code.nil?
|
@@ -104,6 +113,10 @@ module Ingenico::Connect::SDK
|
|
104
113
|
if hash.has_key? 'payoutDate'
|
105
114
|
@payout_date = hash['payoutDate']
|
106
115
|
end
|
116
|
+
if hash.has_key? 'payoutDetails'
|
117
|
+
raise TypeError, "value '%s' is not a Hash" % [hash['payoutDetails']] unless hash['payoutDetails'].is_a? Hash
|
118
|
+
@payout_details = Ingenico::Connect::SDK::Domain::Payout::PayoutDetails.new_from_hash(hash['payoutDetails'])
|
119
|
+
end
|
107
120
|
if hash.has_key? 'payoutText'
|
108
121
|
@payout_text = hash['payoutText']
|
109
122
|
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
#
|
2
|
+
# This class was auto-generated from the API references found at
|
3
|
+
# https://epayments-api.developer-ingenico.com/s2sapi/v1/
|
4
|
+
#
|
5
|
+
require 'ingenico/connect/sdk/data_object'
|
6
|
+
require 'ingenico/connect/sdk/domain/definitions/amount_of_money'
|
7
|
+
require 'ingenico/connect/sdk/domain/payout/payout_customer'
|
8
|
+
require 'ingenico/connect/sdk/domain/payout/payout_references'
|
9
|
+
|
10
|
+
module Ingenico::Connect::SDK
|
11
|
+
module Domain
|
12
|
+
module Payout
|
13
|
+
|
14
|
+
# @attr [Ingenico::Connect::SDK::Domain::Definitions::AmountOfMoney] amount_of_money
|
15
|
+
# @attr [Ingenico::Connect::SDK::Domain::Payout::PayoutCustomer] customer
|
16
|
+
# @attr [Ingenico::Connect::SDK::Domain::Payout::PayoutReferences] references
|
17
|
+
class PayoutDetails < Ingenico::Connect::SDK::DataObject
|
18
|
+
|
19
|
+
attr_accessor :amount_of_money
|
20
|
+
|
21
|
+
attr_accessor :customer
|
22
|
+
|
23
|
+
attr_accessor :references
|
24
|
+
|
25
|
+
# @return (Hash)
|
26
|
+
def to_h
|
27
|
+
hash = super
|
28
|
+
hash['amountOfMoney'] = @amount_of_money.to_h unless @amount_of_money.nil?
|
29
|
+
hash['customer'] = @customer.to_h unless @customer.nil?
|
30
|
+
hash['references'] = @references.to_h unless @references.nil?
|
31
|
+
hash
|
32
|
+
end
|
33
|
+
|
34
|
+
def from_hash(hash)
|
35
|
+
super
|
36
|
+
if hash.has_key? 'amountOfMoney'
|
37
|
+
raise TypeError, "value '%s' is not a Hash" % [hash['amountOfMoney']] unless hash['amountOfMoney'].is_a? Hash
|
38
|
+
@amount_of_money = Ingenico::Connect::SDK::Domain::Definitions::AmountOfMoney.new_from_hash(hash['amountOfMoney'])
|
39
|
+
end
|
40
|
+
if hash.has_key? 'customer'
|
41
|
+
raise TypeError, "value '%s' is not a Hash" % [hash['customer']] unless hash['customer'].is_a? Hash
|
42
|
+
@customer = Ingenico::Connect::SDK::Domain::Payout::PayoutCustomer.new_from_hash(hash['customer'])
|
43
|
+
end
|
44
|
+
if hash.has_key? 'references'
|
45
|
+
raise TypeError, "value '%s' is not a Hash" % [hash['references']] unless hash['references'].is_a? Hash
|
46
|
+
@references = Ingenico::Connect::SDK::Domain::Payout::PayoutReferences.new_from_hash(hash['references'])
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
#
|
2
|
+
# This class was auto-generated from the API references found at
|
3
|
+
# https://epayments-api.developer-ingenico.com/s2sapi/v1/
|
4
|
+
#
|
5
|
+
require 'ingenico/connect/sdk/data_object'
|
6
|
+
|
7
|
+
module Ingenico::Connect::SDK
|
8
|
+
module Domain
|
9
|
+
module Payout
|
10
|
+
|
11
|
+
# @attr [String] first_name
|
12
|
+
# @attr [String] surname
|
13
|
+
# @attr [String] surname_prefix
|
14
|
+
class PayoutRecipient < Ingenico::Connect::SDK::DataObject
|
15
|
+
|
16
|
+
attr_accessor :first_name
|
17
|
+
|
18
|
+
attr_accessor :surname
|
19
|
+
|
20
|
+
attr_accessor :surname_prefix
|
21
|
+
|
22
|
+
# @return (Hash)
|
23
|
+
def to_h
|
24
|
+
hash = super
|
25
|
+
hash['firstName'] = @first_name unless @first_name.nil?
|
26
|
+
hash['surname'] = @surname unless @surname.nil?
|
27
|
+
hash['surnamePrefix'] = @surname_prefix unless @surname_prefix.nil?
|
28
|
+
hash
|
29
|
+
end
|
30
|
+
|
31
|
+
def from_hash(hash)
|
32
|
+
super
|
33
|
+
if hash.has_key? 'firstName'
|
34
|
+
@first_name = hash['firstName']
|
35
|
+
end
|
36
|
+
if hash.has_key? 'surname'
|
37
|
+
@surname = hash['surname']
|
38
|
+
end
|
39
|
+
if hash.has_key? 'surnamePrefix'
|
40
|
+
@surname_prefix = hash['surnamePrefix']
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -7,7 +7,7 @@ module Ingenico::Connect::SDK
|
|
7
7
|
#
|
8
8
|
# @attr_reader [Array<Ingenico::Connect::SDK::RequestHeader>] meta_data_headers List of headers that should be used in all requests.
|
9
9
|
class MetaDataProvider
|
10
|
-
@@SDK_VERSION = '2.
|
10
|
+
@@SDK_VERSION = '2.25.0'
|
11
11
|
@@SERVER_META_INFO_HEADER = 'X-GCS-ServerMetaInfo'
|
12
12
|
@@PROHIBITED_HEADERS = [@@SERVER_META_INFO_HEADER, 'X-GCS-Idempotence-Key',
|
13
13
|
'Date', 'Content-Type', 'Authorization'].sort!.freeze
|
@@ -47,11 +47,10 @@ module Ingenico::Connect::SDK
|
|
47
47
|
if value.nil? || value.empty?
|
48
48
|
return value
|
49
49
|
end
|
50
|
-
# Replace all sequences of
|
51
|
-
# This
|
52
|
-
#
|
53
|
-
|
54
|
-
value.gsub(/[\s&&[^\r\n]]*(\r?\n)[\s&&[^\r\n]]*/, '\1 ')
|
50
|
+
# Replace all sequences of linebreak-whitespace* with a single linebreak-space
|
51
|
+
# This matches the normalization done by DefaultAuthenticator, and ensures that multiline headers
|
52
|
+
# will not cause authentication failures
|
53
|
+
value.gsub(/\r?\n[\s&&[^\r\n]]*/, ' ')
|
55
54
|
end
|
56
55
|
end
|
57
56
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: connect-sdk-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ingenico ePayments
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-10-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httpclient
|
@@ -464,7 +464,9 @@ files:
|
|
464
464
|
- lib/ingenico/connect/sdk/domain/payout/create_payout_request.rb
|
465
465
|
- lib/ingenico/connect/sdk/domain/payout/find_payouts_response.rb
|
466
466
|
- lib/ingenico/connect/sdk/domain/payout/payout_customer.rb
|
467
|
+
- lib/ingenico/connect/sdk/domain/payout/payout_details.rb
|
467
468
|
- lib/ingenico/connect/sdk/domain/payout/payout_error_response.rb
|
469
|
+
- lib/ingenico/connect/sdk/domain/payout/payout_recipient.rb
|
468
470
|
- lib/ingenico/connect/sdk/domain/payout/payout_references.rb
|
469
471
|
- lib/ingenico/connect/sdk/domain/payout/payout_response.rb
|
470
472
|
- lib/ingenico/connect/sdk/domain/payout/payout_result.rb
|