Skip to content

Commit 66c889e

Browse files
author
devexperience
committed
Generated version 0.35.0
This commit was automatically created by a GitHub Action to generate version 0.35.0 of this library.
1 parent 7ce3e85 commit 66c889e

5 files changed

Lines changed: 21 additions & 3 deletions

File tree

docs/AccountNumberResponse.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
| **account_guid** | **String** | | [optional] |
88
| **account_number** | **String** | | [optional] |
99
| **guid** | **String** | | [optional] |
10+
| **loan_guarantor** | **String** | | [optional] |
1011
| **institution_number** | **String** | | [optional] |
1112
| **member_guid** | **String** | | [optional] |
1213
| **passed_validation** | **Boolean** | | [optional] |
@@ -23,6 +24,7 @@ instance = MxPlatformRuby::AccountNumberResponse.new(
2324
account_guid: ACT-06d7f45b-caae-0f6e-1384-01f52e75dcb1,
2425
account_number: 10001,
2526
guid: ACN-8899832e-e5b4-42cd-aa25-bbf1dc889a8f,
27+
loan_guarantor: U.S. DEPARTMENT OF EDUCATION,
2628
institution_number: 123,
2729
member_guid: MBR-7c6f361b-e582-15b6-60c0-358f12466b4b,
2830
passed_validation: true,

lib/mx-platform-ruby/models/account_number_response.rb

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ class AccountNumberResponse
2121

2222
attr_accessor :guid
2323

24+
attr_accessor :loan_guarantor
25+
2426
attr_accessor :institution_number
2527

2628
attr_accessor :member_guid
@@ -39,6 +41,7 @@ def self.attribute_map
3941
:'account_guid' => :'account_guid',
4042
:'account_number' => :'account_number',
4143
:'guid' => :'guid',
44+
:'loan_guarantor' => :'loan_guarantor',
4245
:'institution_number' => :'institution_number',
4346
:'member_guid' => :'member_guid',
4447
:'passed_validation' => :'passed_validation',
@@ -59,6 +62,7 @@ def self.openapi_types
5962
:'account_guid' => :'String',
6063
:'account_number' => :'String',
6164
:'guid' => :'String',
65+
:'loan_guarantor' => :'String',
6266
:'institution_number' => :'String',
6367
:'member_guid' => :'String',
6468
:'passed_validation' => :'Boolean',
@@ -74,6 +78,7 @@ def self.openapi_nullable
7478
:'account_guid',
7579
:'account_number',
7680
:'guid',
81+
:'loan_guarantor',
7782
:'institution_number',
7883
:'member_guid',
7984
:'passed_validation',
@@ -110,6 +115,10 @@ def initialize(attributes = {})
110115
self.guid = attributes[:'guid']
111116
end
112117

118+
if attributes.key?(:'loan_guarantor')
119+
self.loan_guarantor = attributes[:'loan_guarantor']
120+
end
121+
113122
if attributes.key?(:'institution_number')
114123
self.institution_number = attributes[:'institution_number']
115124
end
@@ -158,6 +167,7 @@ def ==(o)
158167
account_guid == o.account_guid &&
159168
account_number == o.account_number &&
160169
guid == o.guid &&
170+
loan_guarantor == o.loan_guarantor &&
161171
institution_number == o.institution_number &&
162172
member_guid == o.member_guid &&
163173
passed_validation == o.passed_validation &&
@@ -175,7 +185,7 @@ def eql?(o)
175185
# Calculates hash code according to all attributes.
176186
# @return [Integer] Hash code
177187
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
179189
end
180190

181191
# Builds the object from hash

lib/mx-platform-ruby/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
=end
1212

1313
module MxPlatformRuby
14-
VERSION = '0.34.0'
14+
VERSION = '0.35.0'
1515
end

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ gemHomepage: https://github.com/mxenabled/mx-platform-ruby
66
gemLicense: MIT
77
gemName: mx-platform-ruby
88
gemRequiredRubyVersion: ">= 2.6"
9-
gemVersion: 0.34.0
9+
gemVersion: 0.35.0
1010
library: faraday
1111
moduleName: MxPlatformRuby

spec/models/account_number_response_spec.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@
4343
end
4444
end
4545

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+
4652
describe 'test attribute "institution_number"' do
4753
it 'should work' do
4854
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/

0 commit comments

Comments
 (0)