Skip to content

Commit

Permalink
Generated version 0.35.0
Browse files Browse the repository at this point in the history
This commit was automatically created by a GitHub Action to generate version 0.35.0 of this library.
  • Loading branch information
devexperience committed Jul 11, 2024
1 parent 7ce3e85 commit 66c889e
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 3 deletions.
2 changes: 2 additions & 0 deletions docs/AccountNumberResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
| **account_guid** | **String** | | [optional] |
| **account_number** | **String** | | [optional] |
| **guid** | **String** | | [optional] |
| **loan_guarantor** | **String** | | [optional] |
| **institution_number** | **String** | | [optional] |
| **member_guid** | **String** | | [optional] |
| **passed_validation** | **Boolean** | | [optional] |
Expand All @@ -23,6 +24,7 @@ instance = MxPlatformRuby::AccountNumberResponse.new(
account_guid: ACT-06d7f45b-caae-0f6e-1384-01f52e75dcb1,
account_number: 10001,
guid: ACN-8899832e-e5b4-42cd-aa25-bbf1dc889a8f,
loan_guarantor: U.S. DEPARTMENT OF EDUCATION,
institution_number: 123,
member_guid: MBR-7c6f361b-e582-15b6-60c0-358f12466b4b,
passed_validation: true,
Expand Down
12 changes: 11 additions & 1 deletion lib/mx-platform-ruby/models/account_number_response.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ class AccountNumberResponse

attr_accessor :guid

attr_accessor :loan_guarantor

attr_accessor :institution_number

attr_accessor :member_guid
Expand All @@ -39,6 +41,7 @@ def self.attribute_map
:'account_guid' => :'account_guid',
:'account_number' => :'account_number',
:'guid' => :'guid',
:'loan_guarantor' => :'loan_guarantor',
:'institution_number' => :'institution_number',
:'member_guid' => :'member_guid',
:'passed_validation' => :'passed_validation',
Expand All @@ -59,6 +62,7 @@ def self.openapi_types
:'account_guid' => :'String',
:'account_number' => :'String',
:'guid' => :'String',
:'loan_guarantor' => :'String',
:'institution_number' => :'String',
:'member_guid' => :'String',
:'passed_validation' => :'Boolean',
Expand All @@ -74,6 +78,7 @@ def self.openapi_nullable
:'account_guid',
:'account_number',
:'guid',
:'loan_guarantor',
:'institution_number',
:'member_guid',
:'passed_validation',
Expand Down Expand Up @@ -110,6 +115,10 @@ def initialize(attributes = {})
self.guid = attributes[:'guid']
end

if attributes.key?(:'loan_guarantor')
self.loan_guarantor = attributes[:'loan_guarantor']
end

if attributes.key?(:'institution_number')
self.institution_number = attributes[:'institution_number']
end
Expand Down Expand Up @@ -158,6 +167,7 @@ def ==(o)
account_guid == o.account_guid &&
account_number == o.account_number &&
guid == o.guid &&
loan_guarantor == o.loan_guarantor &&
institution_number == o.institution_number &&
member_guid == o.member_guid &&
passed_validation == o.passed_validation &&
Expand All @@ -175,7 +185,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Integer] Hash code
def hash
[account_guid, account_number, guid, institution_number, member_guid, passed_validation, routing_number, transit_number, user_guid].hash
[account_guid, account_number, guid, loan_guarantor, institution_number, member_guid, passed_validation, routing_number, transit_number, user_guid].hash
end

# Builds the object from hash
Expand Down
2 changes: 1 addition & 1 deletion lib/mx-platform-ruby/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
=end

module MxPlatformRuby
VERSION = '0.34.0'
VERSION = '0.35.0'
end
2 changes: 1 addition & 1 deletion openapi/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ gemHomepage: https://github.com/mxenabled/mx-platform-ruby
gemLicense: MIT
gemName: mx-platform-ruby
gemRequiredRubyVersion: ">= 2.6"
gemVersion: 0.34.0
gemVersion: 0.35.0
library: faraday
moduleName: MxPlatformRuby
6 changes: 6 additions & 0 deletions spec/models/account_number_response_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@
end
end

describe 'test attribute "loan_guarantor"' do
it 'should work' do
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end
end

describe 'test attribute "institution_number"' do
it 'should work' do
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
Expand Down

0 comments on commit 66c889e

Please sign in to comment.