univapay-client-sdk 1.2.0 → 1.2.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5f4402995cd9013fd6aa0b0150546848704005a26300e5a910480bac1a2c5d7e
|
|
4
|
+
data.tar.gz: e21fbd9a1009960d6c78f7f6c41f759bd344bc51d2f152f0c57ec0183388ebcf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce48b1a366ae7aabe808d93a743ee343bc5a9789aaae4af8673168601e96cd7272ed7427fa8126a7e9e5d69774243f98770ff59a751bf85a5a78c1b8137014de
|
|
7
|
+
data.tar.gz: d12b56876b512bfa5db381cec463d9b87edf0fcc31a8d1b0b73c822fe71bc8e5ab8532ae95b0bd8635ea11ec0b7c5d0eb60d6cea81d944701e7e4f05b30f2314
|
data/README.md
CHANGED
|
@@ -36,16 +36,16 @@ We will assume that all requests are going to originate from a backend server th
|
|
|
36
36
|
Install the gem from the command line:
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
gem install univapay-client-sdk -v 1.2.
|
|
39
|
+
gem install univapay-client-sdk -v 1.2.1
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
Or add the gem to your Gemfile and run `bundle`:
|
|
43
43
|
|
|
44
44
|
```ruby
|
|
45
|
-
gem 'univapay-client-sdk', '1.2.
|
|
45
|
+
gem 'univapay-client-sdk', '1.2.1'
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
-
For additional gem details, see the [RubyGems page for the univapay-client-sdk gem](https://rubygems.org/gems/univapay-client-sdk/versions/1.2.
|
|
48
|
+
For additional gem details, see the [RubyGems page for the univapay-client-sdk gem](https://rubygems.org/gems/univapay-client-sdk/versions/1.2.1).
|
|
49
49
|
|
|
50
50
|
## IRB Console Usage
|
|
51
51
|
|
|
@@ -10,7 +10,7 @@ module UnivapayClientSdk
|
|
|
10
10
|
attr_accessor :config, :http_call_back
|
|
11
11
|
|
|
12
12
|
def self.user_agent
|
|
13
|
-
'Ruby-SDK/1.2.
|
|
13
|
+
'Ruby-SDK/1.2.1 (OS: {os-info}, Engine: {engine}/{engine-version})'
|
|
14
14
|
end
|
|
15
15
|
|
|
16
16
|
def self.user_agent_parameters
|
|
@@ -39,7 +39,7 @@ module UnivapayClientSdk
|
|
|
39
39
|
# @return [TrueClass | FalseClass]
|
|
40
40
|
attr_accessor :verified
|
|
41
41
|
|
|
42
|
-
# Merchant configuration snapshot serialized by
|
|
42
|
+
# Merchant configuration snapshot as serialized by the backend.
|
|
43
43
|
# @return [MerchantWebhookConfiguration]
|
|
44
44
|
attr_accessor :configuration
|
|
45
45
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
# by APIMATIC v3.0 ( https://www.apimatic.io ).
|
|
5
5
|
|
|
6
6
|
module UnivapayClientSdk
|
|
7
|
-
# Merchant configuration object serialized by
|
|
7
|
+
# Merchant configuration object as serialized by the backend.
|
|
8
8
|
class MerchantWebhookConfiguration < BaseModel
|
|
9
9
|
SKIP = Object.new
|
|
10
10
|
private_constant :SKIP
|
|
@@ -24,8 +24,8 @@ module UnivapayClientSdk
|
|
|
24
24
|
# @return [DateTime]
|
|
25
25
|
attr_accessor :created_on
|
|
26
26
|
|
|
27
|
-
# Store-scoped configuration snapshot serialized by
|
|
28
|
-
#
|
|
27
|
+
# Store-scoped configuration snapshot as serialized by the backend. It uses
|
|
28
|
+
# the same flattened serializer as merchant configuration, but omits
|
|
29
29
|
# `transfer_schedule`.
|
|
30
30
|
# @return [MerchantWebhookConfiguration]
|
|
31
31
|
attr_accessor :configuration
|