Skip to content

Commit

Permalink
Generated version 0.37.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.37.0 of this library.
  • Loading branch information
devexperience committed Jul 22, 2024
1 parent 66f6be9 commit 4313cf1
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs/AccountNumberResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@
| **account_number** | **String** | | [optional] |
| **guid** | **String** | | [optional] |
| **loan_guarantor** | **String** | | [optional] |
| **loan_reference_number** | **String** | | [optional] |
| **institution_number** | **String** | | [optional] |
| **member_guid** | **String** | | [optional] |
| **passed_validation** | **Boolean** | | [optional] |
| **routing_number** | **String** | | [optional] |
| **sequence_number** | **String** | | [optional] |
| **transit_number** | **String** | | [optional] |
| **user_guid** | **String** | | [optional] |

Expand All @@ -25,10 +27,12 @@ instance = MxPlatformRuby::AccountNumberResponse.new(
account_number: 10001,
guid: ACN-8899832e-e5b4-42cd-aa25-bbf1dc889a8f,
loan_guarantor: U.S. DEPARTMENT OF EDUCATION,
loan_reference_number: 123456789012345,
institution_number: 123,
member_guid: MBR-7c6f361b-e582-15b6-60c0-358f12466b4b,
passed_validation: true,
routing_number: 68899990000000,
sequence_number: 1-01,
transit_number: 12345,
user_guid: USR-fa7537f3-48aa-a683-a02a-b18940482f54
)
Expand Down
22 changes: 21 additions & 1 deletion lib/mx-platform-ruby/models/account_number_response.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ class AccountNumberResponse

attr_accessor :loan_guarantor

attr_accessor :loan_reference_number

attr_accessor :institution_number

attr_accessor :member_guid
Expand All @@ -31,6 +33,8 @@ class AccountNumberResponse

attr_accessor :routing_number

attr_accessor :sequence_number

attr_accessor :transit_number

attr_accessor :user_guid
Expand All @@ -42,10 +46,12 @@ def self.attribute_map
:'account_number' => :'account_number',
:'guid' => :'guid',
:'loan_guarantor' => :'loan_guarantor',
:'loan_reference_number' => :'loan_reference_number',
:'institution_number' => :'institution_number',
:'member_guid' => :'member_guid',
:'passed_validation' => :'passed_validation',
:'routing_number' => :'routing_number',
:'sequence_number' => :'sequence_number',
:'transit_number' => :'transit_number',
:'user_guid' => :'user_guid'
}
Expand All @@ -63,10 +69,12 @@ def self.openapi_types
:'account_number' => :'String',
:'guid' => :'String',
:'loan_guarantor' => :'String',
:'loan_reference_number' => :'String',
:'institution_number' => :'String',
:'member_guid' => :'String',
:'passed_validation' => :'Boolean',
:'routing_number' => :'String',
:'sequence_number' => :'String',
:'transit_number' => :'String',
:'user_guid' => :'String'
}
Expand All @@ -79,10 +87,12 @@ def self.openapi_nullable
:'account_number',
:'guid',
:'loan_guarantor',
:'loan_reference_number',
:'institution_number',
:'member_guid',
:'passed_validation',
:'routing_number',
:'sequence_number',
:'transit_number',
:'user_guid'
])
Expand Down Expand Up @@ -119,6 +129,10 @@ def initialize(attributes = {})
self.loan_guarantor = attributes[:'loan_guarantor']
end

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

if attributes.key?(:'institution_number')
self.institution_number = attributes[:'institution_number']
end
Expand All @@ -135,6 +149,10 @@ def initialize(attributes = {})
self.routing_number = attributes[:'routing_number']
end

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

if attributes.key?(:'transit_number')
self.transit_number = attributes[:'transit_number']
end
Expand Down Expand Up @@ -168,10 +186,12 @@ def ==(o)
account_number == o.account_number &&
guid == o.guid &&
loan_guarantor == o.loan_guarantor &&
loan_reference_number == o.loan_reference_number &&
institution_number == o.institution_number &&
member_guid == o.member_guid &&
passed_validation == o.passed_validation &&
routing_number == o.routing_number &&
sequence_number == o.sequence_number &&
transit_number == o.transit_number &&
user_guid == o.user_guid
end
Expand All @@ -185,7 +205,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Integer] Hash code
def hash
[account_guid, account_number, guid, loan_guarantor, institution_number, member_guid, passed_validation, routing_number, transit_number, user_guid].hash
[account_guid, account_number, guid, loan_guarantor, loan_reference_number, institution_number, member_guid, passed_validation, routing_number, sequence_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.36.0'
VERSION = '0.37.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.36.0
gemVersion: 0.37.0
library: faraday
moduleName: MxPlatformRuby
12 changes: 12 additions & 0 deletions spec/models/account_number_response_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@
end
end

describe 'test attribute "loan_reference_number"' 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 All @@ -73,6 +79,12 @@
end
end

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

describe 'test attribute "transit_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 4313cf1

Please sign in to comment.