synctera_ruby_sdk 1.1.2 → 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 +8 -1
- data/lib/synctera_ruby_sdk/version.rb +1 -1
- data/synctera_ruby_sdk-1.1.2.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: 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
|
@@ -34,6 +34,7 @@ module SyncteraRubySdk
|
|
34
34
|
attr_accessor :dob
|
35
35
|
attr_accessor :status
|
36
36
|
attr_accessor :phone_number
|
37
|
+
attr_accessor :legal_address
|
37
38
|
|
38
39
|
|
39
40
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -51,6 +52,7 @@ module SyncteraRubySdk
|
|
51
52
|
:'ssn' => :'ssn',
|
52
53
|
:'dob' => :'dob',
|
53
54
|
:'phone_number' => :'phone_number',
|
55
|
+
:'legal_address' => :'legal_address',
|
54
56
|
:'status' => :'status'
|
55
57
|
}
|
56
58
|
end
|
@@ -75,6 +77,7 @@ module SyncteraRubySdk
|
|
75
77
|
:'ssn' => :'String',
|
76
78
|
:'dob' => :'Date',
|
77
79
|
:'phone_number' => :'String',
|
80
|
+
:'legal_address' => :'LegalAddress',
|
78
81
|
:'status' => :'String'
|
79
82
|
}
|
80
83
|
end
|
@@ -145,6 +148,9 @@ module SyncteraRubySdk
|
|
145
148
|
if attributes.key?(:'phone_number')
|
146
149
|
self.phone_number = attributes[:'phone_number']
|
147
150
|
end
|
151
|
+
if attributes.key?(:'legal_address')
|
152
|
+
self.legal_address = attributes[:'legal_address']
|
153
|
+
end
|
148
154
|
end
|
149
155
|
|
150
156
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -177,6 +183,7 @@ module SyncteraRubySdk
|
|
177
183
|
is_customer == o.is_customer &&
|
178
184
|
status == o.status &&
|
179
185
|
phone_number == o.phone_number &&
|
186
|
+
legal_address == o.legal_address &&
|
180
187
|
dob == o.dob
|
181
188
|
end
|
182
189
|
|
@@ -189,7 +196,7 @@ module SyncteraRubySdk
|
|
189
196
|
# Calculates hash code according to all attributes.
|
190
197
|
# @return [Integer] Hash code
|
191
198
|
def 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
|
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
|
193
200
|
end
|
194
201
|
|
195
202
|
# 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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Staack
|
@@ -1718,6 +1718,7 @@ files:
|
|
1718
1718
|
- spec/spec_helper.rb
|
1719
1719
|
- synctera_ruby_sdk-1.1.0.gem
|
1720
1720
|
- synctera_ruby_sdk-1.1.1.gem
|
1721
|
+
- synctera_ruby_sdk-1.1.2.gem
|
1721
1722
|
- synctera_ruby_sdk.gemspec
|
1722
1723
|
- vendor/bundle/ruby/3.2.0/bin/byebug
|
1723
1724
|
- vendor/bundle/ruby/3.2.0/bin/coderay
|