mx-platform-ruby 0.18.0 → 0.19.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,6 +17,14 @@ module MxPlatformRuby
17
17
  class AccountResponse
18
18
  attr_accessor :account_number
19
19
 
20
+ attr_accessor :account_ownership
21
+
22
+ attr_accessor :annuity_policy_to_date
23
+
24
+ attr_accessor :annuity_provider
25
+
26
+ attr_accessor :annuity_term_year
27
+
20
28
  attr_accessor :apr
21
29
 
22
30
  attr_accessor :apy
@@ -49,14 +57,12 @@ module MxPlatformRuby
49
57
 
50
58
  attr_accessor :imported_at
51
59
 
60
+ attr_accessor :interest_rate
61
+
52
62
  attr_accessor :institution_code
53
63
 
54
64
  attr_accessor :insured_name
55
65
 
56
- attr_accessor :interest_rate
57
-
58
- attr_accessor :is_business
59
-
60
66
  attr_accessor :is_closed
61
67
 
62
68
  attr_accessor :is_hidden
@@ -69,6 +75,8 @@ module MxPlatformRuby
69
75
 
70
76
  attr_accessor :loan_amount
71
77
 
78
+ attr_accessor :margin_balance
79
+
72
80
  attr_accessor :matures_on
73
81
 
74
82
  attr_accessor :member_guid
@@ -99,12 +107,18 @@ module MxPlatformRuby
99
107
 
100
108
  attr_accessor :property_type
101
109
 
110
+ attr_accessor :property_type_name
111
+
102
112
  attr_accessor :routing_number
103
113
 
104
114
  attr_accessor :started_on
105
115
 
106
116
  attr_accessor :subtype
107
117
 
118
+ attr_accessor :today_ugl_amount
119
+
120
+ attr_accessor :today_ugl_percentage
121
+
108
122
  attr_accessor :total_account_value
109
123
 
110
124
  attr_accessor :type
@@ -119,6 +133,10 @@ module MxPlatformRuby
119
133
  def self.attribute_map
120
134
  {
121
135
  :'account_number' => :'account_number',
136
+ :'account_ownership' => :'account_ownership',
137
+ :'annuity_policy_to_date' => :'annuity_policy_to_date',
138
+ :'annuity_provider' => :'annuity_provider',
139
+ :'annuity_term_year' => :'annuity_term_year',
122
140
  :'apr' => :'apr',
123
141
  :'apy' => :'apy',
124
142
  :'available_balance' => :'available_balance',
@@ -135,16 +153,16 @@ module MxPlatformRuby
135
153
  :'holdings_value' => :'holdings_value',
136
154
  :'id' => :'id',
137
155
  :'imported_at' => :'imported_at',
156
+ :'interest_rate' => :'interest_rate',
138
157
  :'institution_code' => :'institution_code',
139
158
  :'insured_name' => :'insured_name',
140
- :'interest_rate' => :'interest_rate',
141
- :'is_business' => :'is_business',
142
159
  :'is_closed' => :'is_closed',
143
160
  :'is_hidden' => :'is_hidden',
144
161
  :'is_manual' => :'is_manual',
145
162
  :'last_payment' => :'last_payment',
146
163
  :'last_payment_at' => :'last_payment_at',
147
164
  :'loan_amount' => :'loan_amount',
165
+ :'margin_balance' => :'margin_balance',
148
166
  :'matures_on' => :'matures_on',
149
167
  :'member_guid' => :'member_guid',
150
168
  :'member_id' => :'member_id',
@@ -160,9 +178,12 @@ module MxPlatformRuby
160
178
  :'payoff_balance' => :'payoff_balance',
161
179
  :'premium_amount' => :'premium_amount',
162
180
  :'property_type' => :'property_type',
181
+ :'property_type_name' => :'property_type_name',
163
182
  :'routing_number' => :'routing_number',
164
183
  :'started_on' => :'started_on',
165
184
  :'subtype' => :'subtype',
185
+ :'today_ugl_amount' => :'today_ugl_amount',
186
+ :'today_ugl_percentage' => :'today_ugl_percentage',
166
187
  :'total_account_value' => :'total_account_value',
167
188
  :'type' => :'type',
168
189
  :'updated_at' => :'updated_at',
@@ -180,6 +201,10 @@ module MxPlatformRuby
180
201
  def self.openapi_types
181
202
  {
182
203
  :'account_number' => :'String',
204
+ :'account_ownership' => :'String',
205
+ :'annuity_policy_to_date' => :'String',
206
+ :'annuity_provider' => :'String',
207
+ :'annuity_term_year' => :'Float',
183
208
  :'apr' => :'Float',
184
209
  :'apy' => :'Float',
185
210
  :'available_balance' => :'Float',
@@ -196,16 +221,16 @@ module MxPlatformRuby
196
221
  :'holdings_value' => :'Float',
197
222
  :'id' => :'String',
198
223
  :'imported_at' => :'String',
224
+ :'interest_rate' => :'Float',
199
225
  :'institution_code' => :'String',
200
226
  :'insured_name' => :'String',
201
- :'interest_rate' => :'Float',
202
- :'is_business' => :'Boolean',
203
227
  :'is_closed' => :'Boolean',
204
228
  :'is_hidden' => :'Boolean',
205
229
  :'is_manual' => :'Boolean',
206
230
  :'last_payment' => :'Float',
207
231
  :'last_payment_at' => :'String',
208
232
  :'loan_amount' => :'Float',
233
+ :'margin_balance' => :'Float',
209
234
  :'matures_on' => :'String',
210
235
  :'member_guid' => :'String',
211
236
  :'member_id' => :'String',
@@ -220,10 +245,13 @@ module MxPlatformRuby
220
245
  :'payment_due_at' => :'String',
221
246
  :'payoff_balance' => :'Float',
222
247
  :'premium_amount' => :'Float',
223
- :'property_type' => :'String',
248
+ :'property_type' => :'Integer',
249
+ :'property_type_name' => :'String',
224
250
  :'routing_number' => :'String',
225
251
  :'started_on' => :'String',
226
252
  :'subtype' => :'String',
253
+ :'today_ugl_amount' => :'Float',
254
+ :'today_ugl_percentage' => :'Float',
227
255
  :'total_account_value' => :'Float',
228
256
  :'type' => :'String',
229
257
  :'updated_at' => :'String',
@@ -236,6 +264,10 @@ module MxPlatformRuby
236
264
  def self.openapi_nullable
237
265
  Set.new([
238
266
  :'account_number',
267
+ :'account_ownership',
268
+ :'annuity_policy_to_date',
269
+ :'annuity_provider',
270
+ :'annuity_term_year',
239
271
  :'apr',
240
272
  :'apy',
241
273
  :'available_balance',
@@ -243,7 +275,6 @@ module MxPlatformRuby
243
275
  :'balance',
244
276
  :'cash_balance',
245
277
  :'cash_surrender_value',
246
- :'created_at',
247
278
  :'credit_limit',
248
279
  :'currency_code',
249
280
  :'day_payment_is_due',
@@ -252,16 +283,16 @@ module MxPlatformRuby
252
283
  :'holdings_value',
253
284
  :'id',
254
285
  :'imported_at',
286
+ :'interest_rate',
255
287
  :'institution_code',
256
288
  :'insured_name',
257
- :'interest_rate',
258
- :'is_business',
259
289
  :'is_closed',
260
290
  :'is_hidden',
261
291
  :'is_manual',
262
292
  :'last_payment',
263
293
  :'last_payment_at',
264
294
  :'loan_amount',
295
+ :'margin_balance',
265
296
  :'matures_on',
266
297
  :'member_guid',
267
298
  :'member_id',
@@ -277,9 +308,12 @@ module MxPlatformRuby
277
308
  :'payoff_balance',
278
309
  :'premium_amount',
279
310
  :'property_type',
311
+ :'property_type_name',
280
312
  :'routing_number',
281
313
  :'started_on',
282
314
  :'subtype',
315
+ :'today_ugl_amount',
316
+ :'today_ugl_percentage',
283
317
  :'total_account_value',
284
318
  :'type',
285
319
  :'updated_at',
@@ -307,6 +341,22 @@ module MxPlatformRuby
307
341
  self.account_number = attributes[:'account_number']
308
342
  end
309
343
 
344
+ if attributes.key?(:'account_ownership')
345
+ self.account_ownership = attributes[:'account_ownership']
346
+ end
347
+
348
+ if attributes.key?(:'annuity_policy_to_date')
349
+ self.annuity_policy_to_date = attributes[:'annuity_policy_to_date']
350
+ end
351
+
352
+ if attributes.key?(:'annuity_provider')
353
+ self.annuity_provider = attributes[:'annuity_provider']
354
+ end
355
+
356
+ if attributes.key?(:'annuity_term_year')
357
+ self.annuity_term_year = attributes[:'annuity_term_year']
358
+ end
359
+
310
360
  if attributes.key?(:'apr')
311
361
  self.apr = attributes[:'apr']
312
362
  end
@@ -371,6 +421,10 @@ module MxPlatformRuby
371
421
  self.imported_at = attributes[:'imported_at']
372
422
  end
373
423
 
424
+ if attributes.key?(:'interest_rate')
425
+ self.interest_rate = attributes[:'interest_rate']
426
+ end
427
+
374
428
  if attributes.key?(:'institution_code')
375
429
  self.institution_code = attributes[:'institution_code']
376
430
  end
@@ -379,14 +433,6 @@ module MxPlatformRuby
379
433
  self.insured_name = attributes[:'insured_name']
380
434
  end
381
435
 
382
- if attributes.key?(:'interest_rate')
383
- self.interest_rate = attributes[:'interest_rate']
384
- end
385
-
386
- if attributes.key?(:'is_business')
387
- self.is_business = attributes[:'is_business']
388
- end
389
-
390
436
  if attributes.key?(:'is_closed')
391
437
  self.is_closed = attributes[:'is_closed']
392
438
  end
@@ -411,6 +457,10 @@ module MxPlatformRuby
411
457
  self.loan_amount = attributes[:'loan_amount']
412
458
  end
413
459
 
460
+ if attributes.key?(:'margin_balance')
461
+ self.margin_balance = attributes[:'margin_balance']
462
+ end
463
+
414
464
  if attributes.key?(:'matures_on')
415
465
  self.matures_on = attributes[:'matures_on']
416
466
  end
@@ -471,6 +521,10 @@ module MxPlatformRuby
471
521
  self.property_type = attributes[:'property_type']
472
522
  end
473
523
 
524
+ if attributes.key?(:'property_type_name')
525
+ self.property_type_name = attributes[:'property_type_name']
526
+ end
527
+
474
528
  if attributes.key?(:'routing_number')
475
529
  self.routing_number = attributes[:'routing_number']
476
530
  end
@@ -483,6 +537,14 @@ module MxPlatformRuby
483
537
  self.subtype = attributes[:'subtype']
484
538
  end
485
539
 
540
+ if attributes.key?(:'today_ugl_amount')
541
+ self.today_ugl_amount = attributes[:'today_ugl_amount']
542
+ end
543
+
544
+ if attributes.key?(:'today_ugl_percentage')
545
+ self.today_ugl_percentage = attributes[:'today_ugl_percentage']
546
+ end
547
+
486
548
  if attributes.key?(:'total_account_value')
487
549
  self.total_account_value = attributes[:'total_account_value']
488
550
  end
@@ -523,6 +585,10 @@ module MxPlatformRuby
523
585
  return true if self.equal?(o)
524
586
  self.class == o.class &&
525
587
  account_number == o.account_number &&
588
+ account_ownership == o.account_ownership &&
589
+ annuity_policy_to_date == o.annuity_policy_to_date &&
590
+ annuity_provider == o.annuity_provider &&
591
+ annuity_term_year == o.annuity_term_year &&
526
592
  apr == o.apr &&
527
593
  apy == o.apy &&
528
594
  available_balance == o.available_balance &&
@@ -539,16 +605,16 @@ module MxPlatformRuby
539
605
  holdings_value == o.holdings_value &&
540
606
  id == o.id &&
541
607
  imported_at == o.imported_at &&
608
+ interest_rate == o.interest_rate &&
542
609
  institution_code == o.institution_code &&
543
610
  insured_name == o.insured_name &&
544
- interest_rate == o.interest_rate &&
545
- is_business == o.is_business &&
546
611
  is_closed == o.is_closed &&
547
612
  is_hidden == o.is_hidden &&
548
613
  is_manual == o.is_manual &&
549
614
  last_payment == o.last_payment &&
550
615
  last_payment_at == o.last_payment_at &&
551
616
  loan_amount == o.loan_amount &&
617
+ margin_balance == o.margin_balance &&
552
618
  matures_on == o.matures_on &&
553
619
  member_guid == o.member_guid &&
554
620
  member_id == o.member_id &&
@@ -564,9 +630,12 @@ module MxPlatformRuby
564
630
  payoff_balance == o.payoff_balance &&
565
631
  premium_amount == o.premium_amount &&
566
632
  property_type == o.property_type &&
633
+ property_type_name == o.property_type_name &&
567
634
  routing_number == o.routing_number &&
568
635
  started_on == o.started_on &&
569
636
  subtype == o.subtype &&
637
+ today_ugl_amount == o.today_ugl_amount &&
638
+ today_ugl_percentage == o.today_ugl_percentage &&
570
639
  total_account_value == o.total_account_value &&
571
640
  type == o.type &&
572
641
  updated_at == o.updated_at &&
@@ -583,7 +652,7 @@ module MxPlatformRuby
583
652
  # Calculates hash code according to all attributes.
584
653
  # @return [Integer] Hash code
585
654
  def hash
586
- [account_number, 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_business, is_closed, is_hidden, is_manual, last_payment, last_payment_at, loan_amount, 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, total_account_value, type, updated_at, user_guid, user_id].hash
655
+ [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, interest_rate, institution_code, insured_name, 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, property_type_name, routing_number, started_on, subtype, today_ugl_amount, today_ugl_percentage, total_account_value, type, updated_at, user_guid, user_id].hash
587
656
  end
588
657
 
589
658
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.4.0
11
11
  =end
12
12
 
13
13
  module MxPlatformRuby
14
- VERSION = '0.18.0'
14
+ VERSION = '0.19.1'
15
15
  end
data/openapi/config.yml CHANGED
@@ -6,6 +6,6 @@ gemHomepage: https://github.com/mxenabled/mx-platform-ruby
6
6
  gemLicense: MIT
7
7
  gemName: mx-platform-ruby
8
8
  gemRequiredRubyVersion: ">= 2.6"
9
- gemVersion: 0.18.0
9
+ gemVersion: 0.19.1
10
10
  library: faraday
11
11
  moduleName: MxPlatformRuby
@@ -25,12 +25,6 @@ describe MxPlatformRuby::AccountCreateRequestBody do
25
25
  expect(instance).to be_instance_of(MxPlatformRuby::AccountCreateRequestBody)
26
26
  end
27
27
  end
28
- describe 'test attribute "skip_webhook"' do
29
- it 'should work' do
30
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
- end
32
- end
33
-
34
28
  describe 'test attribute "account"' do
35
29
  it 'should work' do
36
30
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -25,31 +25,31 @@ describe MxPlatformRuby::AccountCreateRequest do
25
25
  expect(instance).to be_instance_of(MxPlatformRuby::AccountCreateRequest)
26
26
  end
27
27
  end
28
- describe 'test attribute "account_number"' do
28
+ describe 'test attribute "account_subtype_name"' do
29
29
  it 'should work' do
30
30
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
31
  end
32
32
  end
33
33
 
34
- describe 'test attribute "apr"' do
34
+ describe 'test attribute "account_type"' do
35
35
  it 'should work' do
36
36
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
37
  end
38
38
  end
39
39
 
40
- describe 'test attribute "apy"' do
40
+ describe 'test attribute "apr"' do
41
41
  it 'should work' do
42
42
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
43
  end
44
44
  end
45
45
 
46
- describe 'test attribute "available_balance"' do
46
+ describe 'test attribute "apy"' do
47
47
  it 'should work' do
48
48
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
49
  end
50
50
  end
51
51
 
52
- describe 'test attribute "available_credit"' do
52
+ describe 'test attribute "available_balance"' do
53
53
  it 'should work' do
54
54
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
55
  end
@@ -79,25 +79,19 @@ describe MxPlatformRuby::AccountCreateRequest do
79
79
  end
80
80
  end
81
81
 
82
- describe 'test attribute "day_payment_is_due"' do
83
- it 'should work' do
84
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
85
- end
86
- end
87
-
88
82
  describe 'test attribute "death_benefit"' do
89
83
  it 'should work' do
90
84
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
91
85
  end
92
86
  end
93
87
 
94
- describe 'test attribute "id"' do
88
+ describe 'test attribute "interest_rate"' do
95
89
  it 'should work' do
96
90
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
97
91
  end
98
92
  end
99
93
 
100
- describe 'test attribute "interest_rate"' do
94
+ describe 'test attribute "is_business"' do
101
95
  it 'should work' do
102
96
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
103
97
  end
@@ -115,48 +109,18 @@ describe MxPlatformRuby::AccountCreateRequest do
115
109
  end
116
110
  end
117
111
 
118
- describe 'test attribute "last_payment"' do
119
- it 'should work' do
120
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
121
- end
122
- end
123
-
124
- describe 'test attribute "last_payment_at"' do
125
- it 'should work' do
126
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
127
- end
128
- end
129
-
130
112
  describe 'test attribute "loan_amount"' do
131
113
  it 'should work' do
132
114
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
133
115
  end
134
116
  end
135
117
 
136
- describe 'test attribute "matures_on"' do
137
- it 'should work' do
138
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
139
- end
140
- end
141
-
142
118
  describe 'test attribute "metadata"' do
143
119
  it 'should work' do
144
120
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
145
121
  end
146
122
  end
147
123
 
148
- describe 'test attribute "minimum_balance"' do
149
- it 'should work' do
150
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
151
- end
152
- end
153
-
154
- describe 'test attribute "minimum_payment"' do
155
- it 'should work' do
156
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
157
- end
158
- end
159
-
160
124
  describe 'test attribute "name"' do
161
125
  it 'should work' do
162
126
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -175,37 +139,19 @@ describe MxPlatformRuby::AccountCreateRequest do
175
139
  end
176
140
  end
177
141
 
178
- describe 'test attribute "payment_due_at"' do
179
- it 'should work' do
180
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
181
- end
182
- end
183
-
184
- describe 'test attribute "payoff_balance"' do
185
- it 'should work' do
186
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
187
- end
188
- end
189
-
190
- describe 'test attribute "routing_number"' do
191
- it 'should work' do
192
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
193
- end
194
- end
195
-
196
- describe 'test attribute "started_on"' do
142
+ describe 'test attribute "property_type"' do
197
143
  it 'should work' do
198
144
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
199
145
  end
200
146
  end
201
147
 
202
- describe 'test attribute "subtype"' do
148
+ describe 'test attribute "property_type_name"' do
203
149
  it 'should work' do
204
150
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
205
151
  end
206
152
  end
207
153
 
208
- describe 'test attribute "type"' do
154
+ describe 'test attribute "skip_webhook"' do
209
155
  it 'should work' do
210
156
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
211
157
  end
@@ -31,6 +31,30 @@ describe MxPlatformRuby::AccountResponse do
31
31
  end
32
32
  end
33
33
 
34
+ describe 'test attribute "account_ownership"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "annuity_policy_to_date"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "annuity_provider"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "annuity_term_year"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
34
58
  describe 'test attribute "apr"' do
35
59
  it 'should work' do
36
60
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -127,25 +151,19 @@ describe MxPlatformRuby::AccountResponse do
127
151
  end
128
152
  end
129
153
 
130
- describe 'test attribute "institution_code"' do
131
- it 'should work' do
132
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
133
- end
134
- end
135
-
136
- describe 'test attribute "insured_name"' do
154
+ describe 'test attribute "interest_rate"' do
137
155
  it 'should work' do
138
156
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
139
157
  end
140
158
  end
141
159
 
142
- describe 'test attribute "interest_rate"' do
160
+ describe 'test attribute "institution_code"' do
143
161
  it 'should work' do
144
162
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
145
163
  end
146
164
  end
147
165
 
148
- describe 'test attribute "is_business"' do
166
+ describe 'test attribute "insured_name"' do
149
167
  it 'should work' do
150
168
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
151
169
  end
@@ -187,6 +205,12 @@ describe MxPlatformRuby::AccountResponse do
187
205
  end
188
206
  end
189
207
 
208
+ describe 'test attribute "margin_balance"' do
209
+ it 'should work' do
210
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
211
+ end
212
+ end
213
+
190
214
  describe 'test attribute "matures_on"' do
191
215
  it 'should work' do
192
216
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -277,6 +301,12 @@ describe MxPlatformRuby::AccountResponse do
277
301
  end
278
302
  end
279
303
 
304
+ describe 'test attribute "property_type_name"' do
305
+ it 'should work' do
306
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
307
+ end
308
+ end
309
+
280
310
  describe 'test attribute "routing_number"' do
281
311
  it 'should work' do
282
312
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -295,6 +325,18 @@ describe MxPlatformRuby::AccountResponse do
295
325
  end
296
326
  end
297
327
 
328
+ describe 'test attribute "today_ugl_amount"' do
329
+ it 'should work' do
330
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
331
+ end
332
+ end
333
+
334
+ describe 'test attribute "today_ugl_percentage"' do
335
+ it 'should work' do
336
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
337
+ end
338
+ end
339
+
298
340
  describe 'test attribute "total_account_value"' do
299
341
  it 'should work' do
300
342
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers