Skip to content

Commit 9b5524d

Browse files
author
devexperience
committed
Generated version 0.33.0
This commit was automatically created by a GitHub Action to generate version 0.33.0 of this library.
1 parent 5041c14 commit 9b5524d

5 files changed

Lines changed: 21 additions & 3 deletions

File tree

docs/AccountResponse.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
| **today_ugl_amount** | **Float** | | [optional] |
5757
| **today_ugl_percentage** | **Float** | | [optional] |
5858
| **total_account_value** | **Float** | | [optional] |
59+
| **total_account_value_ugl** | **Float** | | [optional] |
5960
| **type** | **String** | | [optional] |
6061
| **updated_at** | **String** | | [optional] |
6162
| **user_guid** | **String** | | [optional] |
@@ -119,6 +120,7 @@ instance = MxPlatformRuby::AccountResponse.new(
119120
today_ugl_amount: 1000.5,
120121
today_ugl_percentage: 6.9,
121122
total_account_value: 1.0,
123+
total_account_value_ugl: 1.1,
122124
type: SAVINGS,
123125
updated_at: 2016-10-13T18:08:00.000Z,
124126
user_guid: USR-fa7537f3-48aa-a683-a02a-b18940482f54,

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

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

120120
attr_accessor :total_account_value
121121

122+
attr_accessor :total_account_value_ugl
123+
122124
attr_accessor :type
123125

124126
attr_accessor :updated_at
@@ -182,6 +184,7 @@ def self.attribute_map
182184
:'today_ugl_amount' => :'today_ugl_amount',
183185
:'today_ugl_percentage' => :'today_ugl_percentage',
184186
:'total_account_value' => :'total_account_value',
187+
:'total_account_value_ugl' => :'total_account_value_ugl',
185188
:'type' => :'type',
186189
:'updated_at' => :'updated_at',
187190
:'user_guid' => :'user_guid',
@@ -249,6 +252,7 @@ def self.openapi_types
249252
:'today_ugl_amount' => :'Float',
250253
:'today_ugl_percentage' => :'Float',
251254
:'total_account_value' => :'Float',
255+
:'total_account_value_ugl' => :'Float',
252256
:'type' => :'String',
253257
:'updated_at' => :'String',
254258
:'user_guid' => :'String',
@@ -310,6 +314,7 @@ def self.openapi_nullable
310314
:'today_ugl_amount',
311315
:'today_ugl_percentage',
312316
:'total_account_value',
317+
:'total_account_value_ugl',
313318
:'type',
314319
:'updated_at',
315320
:'user_guid',
@@ -540,6 +545,10 @@ def initialize(attributes = {})
540545
self.total_account_value = attributes[:'total_account_value']
541546
end
542547

548+
if attributes.key?(:'total_account_value_ugl')
549+
self.total_account_value_ugl = attributes[:'total_account_value_ugl']
550+
end
551+
543552
if attributes.key?(:'type')
544553
self.type = attributes[:'type']
545554
end
@@ -629,6 +638,7 @@ def ==(o)
629638
today_ugl_amount == o.today_ugl_amount &&
630639
today_ugl_percentage == o.today_ugl_percentage &&
631640
total_account_value == o.total_account_value &&
641+
total_account_value_ugl == o.total_account_value_ugl &&
632642
type == o.type &&
633643
updated_at == o.updated_at &&
634644
user_guid == o.user_guid &&
@@ -644,7 +654,7 @@ def eql?(o)
644654
# Calculates hash code according to all attributes.
645655
# @return [Integer] Hash code
646656
def hash
647-
[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, subtype, today_ugl_amount, today_ugl_percentage, total_account_value, type, updated_at, user_guid, user_id].hash
657+
[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, subtype, today_ugl_amount, today_ugl_percentage, total_account_value, total_account_value_ugl, type, updated_at, user_guid, user_id].hash
648658
end
649659

650660
# 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.32.0'
14+
VERSION = '0.33.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.32.0
9+
gemVersion: 0.33.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
@@ -337,6 +337,12 @@
337337
end
338338
end
339339

340+
describe 'test attribute "total_account_value_ugl"' do
341+
it 'should work' do
342+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
343+
end
344+
end
345+
340346
describe 'test attribute "type"' do
341347
it 'should work' do
342348
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/

0 commit comments

Comments
 (0)