synctera_ruby_sdk 1.1.1 → 1.1.2
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 +8 -1
- data/lib/synctera_ruby_sdk/version.rb +1 -1
- data/synctera_ruby_sdk-1.1.1.gem +0 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c2263f3837894368e0cf0a061acc18b5f0c079811cae7fffd16cf2327dac676
|
4
|
+
data.tar.gz: c28fbf9f49385fa725d364cf4c0c672fc1e72bb2028505a0392fb3991299adec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5c5fac93ac70825fa7df34916aed1d4c12b67ae6cb43ed9bd4dc833a73dfc6b653f449c3322cb1bc4468ef381a81d4779d4bdd7dff7cba6e488feefef056949
|
7
|
+
data.tar.gz: 786d075665d7641191b0af0518a43813dd3dff2dea93a6b9500451b64086ecb8231aacdd44cda75b117591559b10f16aa203e71105de8a27fe9e51547172aa7a
|
@@ -33,6 +33,7 @@ module SyncteraRubySdk
|
|
33
33
|
attr_accessor :ssn
|
34
34
|
attr_accessor :dob
|
35
35
|
attr_accessor :status
|
36
|
+
attr_accessor :phone_number
|
36
37
|
|
37
38
|
|
38
39
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -49,6 +50,7 @@ module SyncteraRubySdk
|
|
49
50
|
:'email' => :'email',
|
50
51
|
:'ssn' => :'ssn',
|
51
52
|
:'dob' => :'dob',
|
53
|
+
:'phone_number' => :'phone_number',
|
52
54
|
:'status' => :'status'
|
53
55
|
}
|
54
56
|
end
|
@@ -72,6 +74,7 @@ module SyncteraRubySdk
|
|
72
74
|
:'email' => :'String',
|
73
75
|
:'ssn' => :'String',
|
74
76
|
:'dob' => :'Date',
|
77
|
+
:'phone_number' => :'String',
|
75
78
|
:'status' => :'String'
|
76
79
|
}
|
77
80
|
end
|
@@ -139,6 +142,9 @@ module SyncteraRubySdk
|
|
139
142
|
if attributes.key?(:'status')
|
140
143
|
self.status = attributes[:'status']
|
141
144
|
end
|
145
|
+
if attributes.key?(:'phone_number')
|
146
|
+
self.phone_number = attributes[:'phone_number']
|
147
|
+
end
|
142
148
|
end
|
143
149
|
|
144
150
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -170,6 +176,7 @@ module SyncteraRubySdk
|
|
170
176
|
ssn == o.ssn &&
|
171
177
|
is_customer == o.is_customer &&
|
172
178
|
status == o.status &&
|
179
|
+
phone_number == o.phone_number &&
|
173
180
|
dob == o.dob
|
174
181
|
end
|
175
182
|
|
@@ -182,7 +189,7 @@ module SyncteraRubySdk
|
|
182
189
|
# Calculates hash code according to all attributes.
|
183
190
|
# @return [Integer] Hash code
|
184
191
|
def hash
|
185
|
-
[creation_time, first_name, id, last_name, last_updated_time, middle_name, relationship_type, email, ssn, dob, is_customer, status].hash
|
192
|
+
[creation_time, first_name, id, last_name, last_updated_time, middle_name, relationship_type, email, ssn, dob, is_customer, status, phone_number].hash
|
186
193
|
end
|
187
194
|
|
188
195
|
# Builds the object from hash
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Staack
|
@@ -1717,6 +1717,7 @@ 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
|
1720
1721
|
- synctera_ruby_sdk.gemspec
|
1721
1722
|
- vendor/bundle/ruby/3.2.0/bin/byebug
|
1722
1723
|
- vendor/bundle/ruby/3.2.0/bin/coderay
|