Skip to content

Commit 01d6b80

Browse files
author
devexperience
committed
Generated version 0.45.0
This commit was automatically created by a GitHub Action to generate version 0.45.0 of this library.
1 parent 0004837 commit 01d6b80

File tree

8 files changed

+40
-4
lines changed

8 files changed

+40
-4
lines changed

docs/AccountResponse.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
| **currency_code** | **String** | | [optional] |
2222
| **day_payment_is_due** | **Integer** | | [optional] |
2323
| **death_benefit** | **Integer** | | [optional] |
24+
| **federal_insurance_status** | **String** | | [optional] |
2425
| **guid** | **String** | | [optional] |
2526
| **holdings_value** | **Float** | | [optional] |
2627
| **id** | **String** | | [optional] |
@@ -86,6 +87,7 @@ instance = MxPlatformRuby::AccountResponse.new(
8687
currency_code: USD,
8788
day_payment_is_due: 20,
8889
death_benefit: 1000,
90+
federal_insurance_status: INSURED,
8991
guid: ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1,
9092
holdings_value: 1000.0,
9193
id: 1040434698,

docs/InstitutionResponse.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
| **supports_account_statement** | **Boolean** | | [optional] |
1616
| **supports_account_verification** | **Boolean** | | [optional] |
1717
| **supports_oauth** | **Boolean** | | [optional] |
18+
| **supports_tax_document** | **Boolean** | | [optional] |
1819
| **supports_transaction_history** | **Boolean** | | [optional] |
1920
| **trouble_signing_in_url** | **String** | | [optional] |
2021
| **url** | **String** | | [optional] |
@@ -36,6 +37,7 @@ instance = MxPlatformRuby::InstitutionResponse.new(
3637
supports_account_statement: true,
3738
supports_account_verification: true,
3839
supports_oauth: true,
40+
supports_tax_document: true,
3941
supports_transaction_history: true,
4042
trouble_signing_in_url: https://example.url.chase.com/login-trouble,
4143
url: https://www.chase.com

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

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ class AccountResponse
4949

5050
attr_accessor :death_benefit
5151

52+
attr_accessor :federal_insurance_status
53+
5254
attr_accessor :guid
5355

5456
attr_accessor :holdings_value
@@ -151,6 +153,7 @@ def self.attribute_map
151153
:'currency_code' => :'currency_code',
152154
:'day_payment_is_due' => :'day_payment_is_due',
153155
:'death_benefit' => :'death_benefit',
156+
:'federal_insurance_status' => :'federal_insurance_status',
154157
:'guid' => :'guid',
155158
:'holdings_value' => :'holdings_value',
156159
:'id' => :'id',
@@ -220,6 +223,7 @@ def self.openapi_types
220223
:'currency_code' => :'String',
221224
:'day_payment_is_due' => :'Integer',
222225
:'death_benefit' => :'Integer',
226+
:'federal_insurance_status' => :'String',
223227
:'guid' => :'String',
224228
:'holdings_value' => :'Float',
225229
:'id' => :'String',
@@ -283,6 +287,7 @@ def self.openapi_nullable
283287
:'currency_code',
284288
:'day_payment_is_due',
285289
:'death_benefit',
290+
:'federal_insurance_status',
286291
:'guid',
287292
:'holdings_value',
288293
:'id',
@@ -410,6 +415,10 @@ def initialize(attributes = {})
410415
self.death_benefit = attributes[:'death_benefit']
411416
end
412417

418+
if attributes.key?(:'federal_insurance_status')
419+
self.federal_insurance_status = attributes[:'federal_insurance_status']
420+
end
421+
413422
if attributes.key?(:'guid')
414423
self.guid = attributes[:'guid']
415424
end
@@ -612,6 +621,7 @@ def ==(o)
612621
currency_code == o.currency_code &&
613622
day_payment_is_due == o.day_payment_is_due &&
614623
death_benefit == o.death_benefit &&
624+
federal_insurance_status == o.federal_insurance_status &&
615625
guid == o.guid &&
616626
holdings_value == o.holdings_value &&
617627
id == o.id &&
@@ -664,7 +674,7 @@ def eql?(o)
664674
# Calculates hash code according to all attributes.
665675
# @return [Integer] Hash code
666676
def hash
667-
[account_number, account_ownership, annuity_policy_to_date, annuity_provider, annuity_term_year, apr, apy, available_balance, available_credit, balance, cash_balance, cash_surrender_value, created_at, credit_limit, currency_code, day_payment_is_due, death_benefit, guid, holdings_value, id, imported_at, institution_code, insured_name, interest_rate, is_closed, is_hidden, is_manual, last_payment, last_payment_at, loan_amount, margin_balance, matures_on, member_guid, member_id, member_is_managed_by_user, metadata, minimum_balance, minimum_payment, name, nickname, original_balance, pay_out_amount, payment_due_at, payoff_balance, premium_amount, property_type, routing_number, started_on, statement_balance, subtype, today_ugl_amount, today_ugl_percentage, total_account_value, total_account_value_ugl, type, updated_at, user_guid, user_id].hash
677+
[account_number, account_ownership, annuity_policy_to_date, annuity_provider, annuity_term_year, apr, apy, available_balance, available_credit, balance, cash_balance, cash_surrender_value, created_at, credit_limit, currency_code, day_payment_is_due, death_benefit, federal_insurance_status, guid, holdings_value, id, imported_at, institution_code, insured_name, interest_rate, is_closed, is_hidden, is_manual, last_payment, last_payment_at, loan_amount, margin_balance, matures_on, member_guid, member_id, member_is_managed_by_user, metadata, minimum_balance, minimum_payment, name, nickname, original_balance, pay_out_amount, payment_due_at, payoff_balance, premium_amount, property_type, routing_number, started_on, statement_balance, subtype, today_ugl_amount, today_ugl_percentage, total_account_value, total_account_value_ugl, type, updated_at, user_guid, user_id].hash
668678
end
669679

670680
# Builds the object from hash

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

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ class InstitutionResponse
3737

3838
attr_accessor :supports_oauth
3939

40+
attr_accessor :supports_tax_document
41+
4042
attr_accessor :supports_transaction_history
4143

4244
attr_accessor :trouble_signing_in_url
@@ -57,6 +59,7 @@ def self.attribute_map
5759
:'supports_account_statement' => :'supports_account_statement',
5860
:'supports_account_verification' => :'supports_account_verification',
5961
:'supports_oauth' => :'supports_oauth',
62+
:'supports_tax_document' => :'supports_tax_document',
6063
:'supports_transaction_history' => :'supports_transaction_history',
6164
:'trouble_signing_in_url' => :'trouble_signing_in_url',
6265
:'url' => :'url'
@@ -82,6 +85,7 @@ def self.openapi_types
8285
:'supports_account_statement' => :'Boolean',
8386
:'supports_account_verification' => :'Boolean',
8487
:'supports_oauth' => :'Boolean',
88+
:'supports_tax_document' => :'Boolean',
8589
:'supports_transaction_history' => :'Boolean',
8690
:'trouble_signing_in_url' => :'String',
8791
:'url' => :'String'
@@ -102,6 +106,7 @@ def self.openapi_nullable
102106
:'supports_account_statement',
103107
:'supports_account_verification',
104108
:'supports_oauth',
109+
:'supports_tax_document',
105110
:'supports_transaction_history',
106111
:'trouble_signing_in_url',
107112
:'url'
@@ -167,6 +172,10 @@ def initialize(attributes = {})
167172
self.supports_oauth = attributes[:'supports_oauth']
168173
end
169174

175+
if attributes.key?(:'supports_tax_document')
176+
self.supports_tax_document = attributes[:'supports_tax_document']
177+
end
178+
170179
if attributes.key?(:'supports_transaction_history')
171180
self.supports_transaction_history = attributes[:'supports_transaction_history']
172181
end
@@ -211,6 +220,7 @@ def ==(o)
211220
supports_account_statement == o.supports_account_statement &&
212221
supports_account_verification == o.supports_account_verification &&
213222
supports_oauth == o.supports_oauth &&
223+
supports_tax_document == o.supports_tax_document &&
214224
supports_transaction_history == o.supports_transaction_history &&
215225
trouble_signing_in_url == o.trouble_signing_in_url &&
216226
url == o.url
@@ -225,7 +235,7 @@ def eql?(o)
225235
# Calculates hash code according to all attributes.
226236
# @return [Integer] Hash code
227237
def hash
228-
[code, forgot_password_url, forgot_username_url, instructional_text, medium_logo_url, name, small_logo_url, supports_account_identification, supports_account_statement, supports_account_verification, supports_oauth, supports_transaction_history, trouble_signing_in_url, url].hash
238+
[code, forgot_password_url, forgot_username_url, instructional_text, medium_logo_url, name, small_logo_url, supports_account_identification, supports_account_statement, supports_account_verification, supports_oauth, supports_tax_document, supports_transaction_history, trouble_signing_in_url, url].hash
229239
end
230240

231241
# 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.44.1'
14+
VERSION = '0.45.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.44.1
9+
gemVersion: 0.45.0
1010
library: faraday
1111
moduleName: MxPlatformRuby

spec/models/account_response_spec.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,12 @@
129129
end
130130
end
131131

132+
describe 'test attribute "federal_insurance_status"' do
133+
it 'should work' do
134+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
135+
end
136+
end
137+
132138
describe 'test attribute "guid"' do
133139
it 'should work' do
134140
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/

spec/models/institution_response_spec.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,12 @@
9393
end
9494
end
9595

96+
describe 'test attribute "supports_tax_document"' do
97+
it 'should work' do
98+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99+
end
100+
end
101+
96102
describe 'test attribute "supports_transaction_history"' do
97103
it 'should work' do
98104
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/

0 commit comments

Comments
 (0)