mx-platform-ruby 0.34.0 → 0.35.0
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: 3efe34816d4fafa2778f7a696e31c7e3b7356fa6c04a6dbf3a52a0df15ebffea
|
4
|
+
data.tar.gz: eb6bc37246dbc4d50a318a625fb179a9ee7d89e01d7605333d5ff06877e28391
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7a81c13b037ede12ea78eb3d5b85883b1b872082e41367280c0d37c8266a5f4d3310e57fe46d3d71111ccc1ef93630735dda513d24d32ecedd4e7c6c5dbb537
|
7
|
+
data.tar.gz: a0a77bb2f1ca229da13d2ae0941a17c242b05907687f1b4620b064de81718c19a82dfede55dfe0109a1ab489e0a7c119c9502c097330b21ec11c2f40f66e7f14
|
data/Gemfile.lock
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
| **account_guid** | **String** | | [optional] |
|
8
8
|
| **account_number** | **String** | | [optional] |
|
9
9
|
| **guid** | **String** | | [optional] |
|
10
|
+
| **loan_guarantor** | **String** | | [optional] |
|
10
11
|
| **institution_number** | **String** | | [optional] |
|
11
12
|
| **member_guid** | **String** | | [optional] |
|
12
13
|
| **passed_validation** | **Boolean** | | [optional] |
|
@@ -23,6 +24,7 @@ instance = MxPlatformRuby::AccountNumberResponse.new(
|
|
23
24
|
account_guid: ACT-06d7f45b-caae-0f6e-1384-01f52e75dcb1,
|
24
25
|
account_number: 10001,
|
25
26
|
guid: ACN-8899832e-e5b4-42cd-aa25-bbf1dc889a8f,
|
27
|
+
loan_guarantor: U.S. DEPARTMENT OF EDUCATION,
|
26
28
|
institution_number: 123,
|
27
29
|
member_guid: MBR-7c6f361b-e582-15b6-60c0-358f12466b4b,
|
28
30
|
passed_validation: true,
|
@@ -21,6 +21,8 @@ module MxPlatformRuby
|
|
21
21
|
|
22
22
|
attr_accessor :guid
|
23
23
|
|
24
|
+
attr_accessor :loan_guarantor
|
25
|
+
|
24
26
|
attr_accessor :institution_number
|
25
27
|
|
26
28
|
attr_accessor :member_guid
|
@@ -39,6 +41,7 @@ module MxPlatformRuby
|
|
39
41
|
:'account_guid' => :'account_guid',
|
40
42
|
:'account_number' => :'account_number',
|
41
43
|
:'guid' => :'guid',
|
44
|
+
:'loan_guarantor' => :'loan_guarantor',
|
42
45
|
:'institution_number' => :'institution_number',
|
43
46
|
:'member_guid' => :'member_guid',
|
44
47
|
:'passed_validation' => :'passed_validation',
|
@@ -59,6 +62,7 @@ module MxPlatformRuby
|
|
59
62
|
:'account_guid' => :'String',
|
60
63
|
:'account_number' => :'String',
|
61
64
|
:'guid' => :'String',
|
65
|
+
:'loan_guarantor' => :'String',
|
62
66
|
:'institution_number' => :'String',
|
63
67
|
:'member_guid' => :'String',
|
64
68
|
:'passed_validation' => :'Boolean',
|
@@ -74,6 +78,7 @@ module MxPlatformRuby
|
|
74
78
|
:'account_guid',
|
75
79
|
:'account_number',
|
76
80
|
:'guid',
|
81
|
+
:'loan_guarantor',
|
77
82
|
:'institution_number',
|
78
83
|
:'member_guid',
|
79
84
|
:'passed_validation',
|
@@ -110,6 +115,10 @@ module MxPlatformRuby
|
|
110
115
|
self.guid = attributes[:'guid']
|
111
116
|
end
|
112
117
|
|
118
|
+
if attributes.key?(:'loan_guarantor')
|
119
|
+
self.loan_guarantor = attributes[:'loan_guarantor']
|
120
|
+
end
|
121
|
+
|
113
122
|
if attributes.key?(:'institution_number')
|
114
123
|
self.institution_number = attributes[:'institution_number']
|
115
124
|
end
|
@@ -158,6 +167,7 @@ module MxPlatformRuby
|
|
158
167
|
account_guid == o.account_guid &&
|
159
168
|
account_number == o.account_number &&
|
160
169
|
guid == o.guid &&
|
170
|
+
loan_guarantor == o.loan_guarantor &&
|
161
171
|
institution_number == o.institution_number &&
|
162
172
|
member_guid == o.member_guid &&
|
163
173
|
passed_validation == o.passed_validation &&
|
@@ -175,7 +185,7 @@ module MxPlatformRuby
|
|
175
185
|
# Calculates hash code according to all attributes.
|
176
186
|
# @return [Integer] Hash code
|
177
187
|
def hash
|
178
|
-
[account_guid, account_number, guid, institution_number, member_guid, passed_validation, routing_number, transit_number, user_guid].hash
|
188
|
+
[account_guid, account_number, guid, loan_guarantor, institution_number, member_guid, passed_validation, routing_number, transit_number, user_guid].hash
|
179
189
|
end
|
180
190
|
|
181
191
|
# Builds the object from hash
|
data/openapi/config.yml
CHANGED
@@ -43,6 +43,12 @@ describe MxPlatformRuby::AccountNumberResponse do
|
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
46
|
+
describe 'test attribute "loan_guarantor"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
46
52
|
describe 'test attribute "institution_number"' do
|
47
53
|
it 'should work' do
|
48
54
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|