six_saferpay 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/six_saferpay/models/liability.rb +2 -2
- data/lib/six_saferpay/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70c4ae41d296ce6f288372b26ca6cf3e4018195b719bd1fc9bc286d12f2c7c52
|
4
|
+
data.tar.gz: 1bf466e8e40809e5d26ee9aa19fe4d2196de5806649de618757823f8c8f26594
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf12cc2312ceb6b79e583b05fbd9adab62b3025dbc7aa55dbfffa982d955927af1b04a9e2893a6c42d4e7f9b7d805521b39784fd0574ac03adcfb2882204161b
|
7
|
+
data.tar.gz: 6db7eb3b44cd61552164e3123edb45f40e8cbac3e060d353f235895138984e2ab7b6066a1e74f535ce2bad55ede0798a2d705d592bd4a7f9f9031776cf34129e
|
@@ -22,8 +22,8 @@ module SixSaferpay
|
|
22
22
|
body = Hash.new
|
23
23
|
body.merge!(liability_shift: @liability_shift)
|
24
24
|
body.merge!(liable_entity: @liable_entity)
|
25
|
-
body.merge!(three_ds: @three_ds) if @three_ds
|
26
|
-
body.merge!(fraud_free: @fraud_free) if @fraud_free
|
25
|
+
body.merge!(three_ds: @three_ds.to_h) if @three_ds
|
26
|
+
body.merge!(fraud_free: @fraud_free.to_h) if @fraud_free
|
27
27
|
body
|
28
28
|
end
|
29
29
|
alias_method :to_h, :to_hash
|
data/lib/six_saferpay/version.rb
CHANGED