synctera_ruby_sdk 1.1.1 → 1.1.3
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/lib/synctera_ruby_sdk/models/person.rb +15 -1
- data/lib/synctera_ruby_sdk/version.rb +1 -1
- data/synctera_ruby_sdk-1.1.1.gem +0 -0
- data/synctera_ruby_sdk-1.1.2.gem +0 -0
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd70d9634af403cae0d726318ae517be94dd936ce4b02a37b107a1ecfcf95374
|
4
|
+
data.tar.gz: 54c9ce957756b18eb6aebeda451f7d343610b19b26f21c2805e6b7e68df38e7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d38a62934a0ae0194914e1c0f04cacc4be2fbd35dae45921278b7610dd9b886c20df40d884f4fa0f1ddb656dfa6437cbceda1b2021a4c28249f2fbc511784f70
|
7
|
+
data.tar.gz: 77fa4501628420559a7ef1f3ec937756bd765ed7cb41cf6b48b4626b5ee28bd6ced3b587ffb18b8832fc56d821e5637854cde01a143b55941c66bd43724ab87c
|
@@ -33,6 +33,8 @@ module SyncteraRubySdk
|
|
33
33
|
attr_accessor :ssn
|
34
34
|
attr_accessor :dob
|
35
35
|
attr_accessor :status
|
36
|
+
attr_accessor :phone_number
|
37
|
+
attr_accessor :legal_address
|
36
38
|
|
37
39
|
|
38
40
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -49,6 +51,8 @@ module SyncteraRubySdk
|
|
49
51
|
:'email' => :'email',
|
50
52
|
:'ssn' => :'ssn',
|
51
53
|
:'dob' => :'dob',
|
54
|
+
:'phone_number' => :'phone_number',
|
55
|
+
:'legal_address' => :'legal_address',
|
52
56
|
:'status' => :'status'
|
53
57
|
}
|
54
58
|
end
|
@@ -72,6 +76,8 @@ module SyncteraRubySdk
|
|
72
76
|
:'email' => :'String',
|
73
77
|
:'ssn' => :'String',
|
74
78
|
:'dob' => :'Date',
|
79
|
+
:'phone_number' => :'String',
|
80
|
+
:'legal_address' => :'LegalAddress',
|
75
81
|
:'status' => :'String'
|
76
82
|
}
|
77
83
|
end
|
@@ -139,6 +145,12 @@ module SyncteraRubySdk
|
|
139
145
|
if attributes.key?(:'status')
|
140
146
|
self.status = attributes[:'status']
|
141
147
|
end
|
148
|
+
if attributes.key?(:'phone_number')
|
149
|
+
self.phone_number = attributes[:'phone_number']
|
150
|
+
end
|
151
|
+
if attributes.key?(:'legal_address')
|
152
|
+
self.legal_address = attributes[:'legal_address']
|
153
|
+
end
|
142
154
|
end
|
143
155
|
|
144
156
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -170,6 +182,8 @@ module SyncteraRubySdk
|
|
170
182
|
ssn == o.ssn &&
|
171
183
|
is_customer == o.is_customer &&
|
172
184
|
status == o.status &&
|
185
|
+
phone_number == o.phone_number &&
|
186
|
+
legal_address == o.legal_address &&
|
173
187
|
dob == o.dob
|
174
188
|
end
|
175
189
|
|
@@ -182,7 +196,7 @@ module SyncteraRubySdk
|
|
182
196
|
# Calculates hash code according to all attributes.
|
183
197
|
# @return [Integer] Hash code
|
184
198
|
def hash
|
185
|
-
[creation_time, first_name, id, last_name, last_updated_time, middle_name, relationship_type, email, ssn, dob, is_customer, status].hash
|
199
|
+
[creation_time, first_name, id, last_name, last_updated_time, middle_name, relationship_type, email, ssn, dob, is_customer, status, phone_number, legal_address].hash
|
186
200
|
end
|
187
201
|
|
188
202
|
# Builds the object from hash
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: synctera_ruby_sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Staack
|
@@ -1717,6 +1717,8 @@ files:
|
|
1717
1717
|
- spec/models/withdrawal_request_model_spec.rb
|
1718
1718
|
- spec/spec_helper.rb
|
1719
1719
|
- synctera_ruby_sdk-1.1.0.gem
|
1720
|
+
- synctera_ruby_sdk-1.1.1.gem
|
1721
|
+
- synctera_ruby_sdk-1.1.2.gem
|
1720
1722
|
- synctera_ruby_sdk.gemspec
|
1721
1723
|
- vendor/bundle/ruby/3.2.0/bin/byebug
|
1722
1724
|
- vendor/bundle/ruby/3.2.0/bin/coderay
|