synctera_ruby_sdk 1.0.0 → 1.1.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 +4 -4
- data/README.md +1 -1
- data/lib/synctera_ruby_sdk/models/person.rb +40 -4
- data/lib/synctera_ruby_sdk/version.rb +1 -1
- data/synctera_ruby_sdk-1.1.0.gem +0 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7bbc64b2afaa8c17e4c90b09a0eead186c24af9833d91a92977c1ec40df190d
|
4
|
+
data.tar.gz: 3609586229b2a866e5fd4fd48d011de2a8c8b2c881619d75480bf449ef46c244
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e118d86d1c098731720d92e73fd0614ef5d02e1b9e16d1c02768f7a3fae1eff2e2756cf41b408ec1cfa13ab9a0da49a8a125ac112e97968d29d6f5a80bb7ba55
|
7
|
+
data.tar.gz: f8ddf0dd7093c5692becd82621c4232ec96203a0bc045af14b7dfb4cb7f1e324c0a43794849f9fb74c3cec07e19aadfdd70007d33eaff2a1f86f05cd54e4b0d8
|
data/README.md
CHANGED
@@ -28,6 +28,12 @@ module SyncteraRubySdk
|
|
28
28
|
attr_accessor :middle_name
|
29
29
|
|
30
30
|
attr_accessor :relationship_type
|
31
|
+
attr_accessor :is_customer
|
32
|
+
attr_accessor :email
|
33
|
+
attr_accessor :ssn
|
34
|
+
attr_accessor :dob
|
35
|
+
attr_accessor :status
|
36
|
+
|
31
37
|
|
32
38
|
# Attribute mapping from ruby-style variable name to JSON key.
|
33
39
|
def self.attribute_map
|
@@ -38,7 +44,12 @@ module SyncteraRubySdk
|
|
38
44
|
:'last_name' => :'last_name',
|
39
45
|
:'last_updated_time' => :'last_updated_time',
|
40
46
|
:'middle_name' => :'middle_name',
|
41
|
-
:'relationship_type' => :'relationship_type'
|
47
|
+
:'relationship_type' => :'relationship_type',
|
48
|
+
:'is_customer' => :'is_customer',
|
49
|
+
:'email' => :'email',
|
50
|
+
:'ssn' => :'ssn',
|
51
|
+
:'dob' => :'dob',
|
52
|
+
:'status' => :'status'
|
42
53
|
}
|
43
54
|
end
|
44
55
|
|
@@ -56,7 +67,12 @@ module SyncteraRubySdk
|
|
56
67
|
:'last_name' => :'String',
|
57
68
|
:'last_updated_time' => :'Time',
|
58
69
|
:'middle_name' => :'String',
|
59
|
-
:'relationship_type' => :'String'
|
70
|
+
:'relationship_type' => :'String',
|
71
|
+
:'is_customer' => :'Boolean',
|
72
|
+
:'email' => :'String',
|
73
|
+
:'ssn' => :'String',
|
74
|
+
:'dob' => :'Date',
|
75
|
+
:'status' => :'String'
|
60
76
|
}
|
61
77
|
end
|
62
78
|
|
@@ -108,6 +124,21 @@ module SyncteraRubySdk
|
|
108
124
|
if attributes.key?(:'relationship_type')
|
109
125
|
self.relationship_type = attributes[:'relationship_type']
|
110
126
|
end
|
127
|
+
if attributes.key?(:'email')
|
128
|
+
self.email = attributes[:'email']
|
129
|
+
end
|
130
|
+
if attributes.key?(:'ssn')
|
131
|
+
self.ssn = attributes[:'ssn']
|
132
|
+
end
|
133
|
+
if attributes.key?(:'is_customer')
|
134
|
+
self.is_customer = attributes[:'is_customer']
|
135
|
+
end
|
136
|
+
if attributes.key?(:'dob')
|
137
|
+
self.dob = attributes[:'dob']
|
138
|
+
end
|
139
|
+
if attributes.key?(:'status')
|
140
|
+
self.status = attributes[:'status']
|
141
|
+
end
|
111
142
|
end
|
112
143
|
|
113
144
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -134,7 +165,12 @@ module SyncteraRubySdk
|
|
134
165
|
last_name == o.last_name &&
|
135
166
|
last_updated_time == o.last_updated_time &&
|
136
167
|
middle_name == o.middle_name &&
|
137
|
-
relationship_type == o.relationship_type
|
168
|
+
relationship_type == o.relationship_type &&
|
169
|
+
email == o.email &&
|
170
|
+
ssn == o.ssn &&
|
171
|
+
is_customer == o.is_customer &&
|
172
|
+
status == o.status &&
|
173
|
+
dob == o.dob
|
138
174
|
end
|
139
175
|
|
140
176
|
# @see the `==` method
|
@@ -146,7 +182,7 @@ module SyncteraRubySdk
|
|
146
182
|
# Calculates hash code according to all attributes.
|
147
183
|
# @return [Integer] Hash code
|
148
184
|
def hash
|
149
|
-
[creation_time, first_name, id, last_name, last_updated_time, middle_name, relationship_type].hash
|
185
|
+
[creation_time, first_name, id, last_name, last_updated_time, middle_name, relationship_type, email, ssn, dob, is_customer, status].hash
|
150
186
|
end
|
151
187
|
|
152
188
|
# Builds the object from hash
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: synctera_ruby_sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Staack
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-08-
|
11
|
+
date: 2023-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -1716,6 +1716,7 @@ files:
|
|
1716
1716
|
- spec/models/wire_spec.rb
|
1717
1717
|
- spec/models/withdrawal_request_model_spec.rb
|
1718
1718
|
- spec/spec_helper.rb
|
1719
|
+
- synctera_ruby_sdk-1.1.0.gem
|
1719
1720
|
- synctera_ruby_sdk.gemspec
|
1720
1721
|
- vendor/bundle/ruby/3.2.0/bin/byebug
|
1721
1722
|
- vendor/bundle/ruby/3.2.0/bin/coderay
|