mx-platform-ruby 0.17.0 → 0.19.0
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +8 -6
- data/docs/AccountCreateRequest.md +60 -0
- data/docs/AccountCreateRequestBody.md +20 -0
- data/docs/AccountResponse.md +22 -6
- data/docs/MxPlatformApi.md +145 -0
- data/lib/mx-platform-ruby/api/mx_platform_api.rb +141 -0
- data/lib/mx-platform-ruby/models/account_create_request.rb +417 -0
- data/lib/mx-platform-ruby/models/account_create_request_body.rb +228 -0
- data/lib/mx-platform-ruby/models/account_response.rb +91 -12
- data/lib/mx-platform-ruby/version.rb +1 -1
- data/lib/mx-platform-ruby.rb +2 -0
- data/openapi/config.yml +1 -1
- data/spec/api/mx_platform_api_spec.rb +26 -0
- data/spec/models/account_create_request_body_spec.rb +40 -0
- data/spec/models/account_create_request_spec.rb +160 -0
- data/spec/models/account_response_spec.rb +51 -3
- metadata +112 -104
@@ -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,22 +57,26 @@ 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
66
|
attr_accessor :is_closed
|
59
67
|
|
60
68
|
attr_accessor :is_hidden
|
61
69
|
|
70
|
+
attr_accessor :is_manual
|
71
|
+
|
62
72
|
attr_accessor :last_payment
|
63
73
|
|
64
74
|
attr_accessor :last_payment_at
|
65
75
|
|
66
76
|
attr_accessor :loan_amount
|
67
77
|
|
78
|
+
attr_accessor :margin_balance
|
79
|
+
|
68
80
|
attr_accessor :matures_on
|
69
81
|
|
70
82
|
attr_accessor :member_guid
|
@@ -99,6 +111,10 @@ module MxPlatformRuby
|
|
99
111
|
|
100
112
|
attr_accessor :subtype
|
101
113
|
|
114
|
+
attr_accessor :today_ugl_amount
|
115
|
+
|
116
|
+
attr_accessor :today_ugl_percentage
|
117
|
+
|
102
118
|
attr_accessor :total_account_value
|
103
119
|
|
104
120
|
attr_accessor :type
|
@@ -113,6 +129,10 @@ module MxPlatformRuby
|
|
113
129
|
def self.attribute_map
|
114
130
|
{
|
115
131
|
:'account_number' => :'account_number',
|
132
|
+
:'account_ownership' => :'account_ownership',
|
133
|
+
:'annuity_policy_to_date' => :'annuity_policy_to_date',
|
134
|
+
:'annuity_provider' => :'annuity_provider',
|
135
|
+
:'annuity_term_year' => :'annuity_term_year',
|
116
136
|
:'apr' => :'apr',
|
117
137
|
:'apy' => :'apy',
|
118
138
|
:'available_balance' => :'available_balance',
|
@@ -129,14 +149,16 @@ module MxPlatformRuby
|
|
129
149
|
:'holdings_value' => :'holdings_value',
|
130
150
|
:'id' => :'id',
|
131
151
|
:'imported_at' => :'imported_at',
|
152
|
+
:'interest_rate' => :'interest_rate',
|
132
153
|
:'institution_code' => :'institution_code',
|
133
154
|
:'insured_name' => :'insured_name',
|
134
|
-
:'interest_rate' => :'interest_rate',
|
135
155
|
:'is_closed' => :'is_closed',
|
136
156
|
:'is_hidden' => :'is_hidden',
|
157
|
+
:'is_manual' => :'is_manual',
|
137
158
|
:'last_payment' => :'last_payment',
|
138
159
|
:'last_payment_at' => :'last_payment_at',
|
139
160
|
:'loan_amount' => :'loan_amount',
|
161
|
+
:'margin_balance' => :'margin_balance',
|
140
162
|
:'matures_on' => :'matures_on',
|
141
163
|
:'member_guid' => :'member_guid',
|
142
164
|
:'member_id' => :'member_id',
|
@@ -154,6 +176,8 @@ module MxPlatformRuby
|
|
154
176
|
:'routing_number' => :'routing_number',
|
155
177
|
:'started_on' => :'started_on',
|
156
178
|
:'subtype' => :'subtype',
|
179
|
+
:'today_ugl_amount' => :'today_ugl_amount',
|
180
|
+
:'today_ugl_percentage' => :'today_ugl_percentage',
|
157
181
|
:'total_account_value' => :'total_account_value',
|
158
182
|
:'type' => :'type',
|
159
183
|
:'updated_at' => :'updated_at',
|
@@ -171,6 +195,10 @@ module MxPlatformRuby
|
|
171
195
|
def self.openapi_types
|
172
196
|
{
|
173
197
|
:'account_number' => :'String',
|
198
|
+
:'account_ownership' => :'String',
|
199
|
+
:'annuity_policy_to_date' => :'String',
|
200
|
+
:'annuity_provider' => :'String',
|
201
|
+
:'annuity_term_year' => :'Float',
|
174
202
|
:'apr' => :'Float',
|
175
203
|
:'apy' => :'Float',
|
176
204
|
:'available_balance' => :'Float',
|
@@ -187,14 +215,16 @@ module MxPlatformRuby
|
|
187
215
|
:'holdings_value' => :'Float',
|
188
216
|
:'id' => :'String',
|
189
217
|
:'imported_at' => :'String',
|
218
|
+
:'interest_rate' => :'Float',
|
190
219
|
:'institution_code' => :'String',
|
191
220
|
:'insured_name' => :'String',
|
192
|
-
:'interest_rate' => :'Float',
|
193
221
|
:'is_closed' => :'Boolean',
|
194
222
|
:'is_hidden' => :'Boolean',
|
223
|
+
:'is_manual' => :'Boolean',
|
195
224
|
:'last_payment' => :'Float',
|
196
225
|
:'last_payment_at' => :'String',
|
197
226
|
:'loan_amount' => :'Float',
|
227
|
+
:'margin_balance' => :'Float',
|
198
228
|
:'matures_on' => :'String',
|
199
229
|
:'member_guid' => :'String',
|
200
230
|
:'member_id' => :'String',
|
@@ -212,6 +242,8 @@ module MxPlatformRuby
|
|
212
242
|
:'routing_number' => :'String',
|
213
243
|
:'started_on' => :'String',
|
214
244
|
:'subtype' => :'String',
|
245
|
+
:'today_ugl_amount' => :'Float',
|
246
|
+
:'today_ugl_percentage' => :'Float',
|
215
247
|
:'total_account_value' => :'Float',
|
216
248
|
:'type' => :'String',
|
217
249
|
:'updated_at' => :'String',
|
@@ -224,6 +256,10 @@ module MxPlatformRuby
|
|
224
256
|
def self.openapi_nullable
|
225
257
|
Set.new([
|
226
258
|
:'account_number',
|
259
|
+
:'account_ownership',
|
260
|
+
:'annuity_policy_to_date',
|
261
|
+
:'annuity_provider',
|
262
|
+
:'annuity_term_year',
|
227
263
|
:'apr',
|
228
264
|
:'apy',
|
229
265
|
:'available_balance',
|
@@ -231,7 +267,6 @@ module MxPlatformRuby
|
|
231
267
|
:'balance',
|
232
268
|
:'cash_balance',
|
233
269
|
:'cash_surrender_value',
|
234
|
-
:'created_at',
|
235
270
|
:'credit_limit',
|
236
271
|
:'currency_code',
|
237
272
|
:'day_payment_is_due',
|
@@ -240,14 +275,16 @@ module MxPlatformRuby
|
|
240
275
|
:'holdings_value',
|
241
276
|
:'id',
|
242
277
|
:'imported_at',
|
278
|
+
:'interest_rate',
|
243
279
|
:'institution_code',
|
244
280
|
:'insured_name',
|
245
|
-
:'interest_rate',
|
246
281
|
:'is_closed',
|
247
282
|
:'is_hidden',
|
283
|
+
:'is_manual',
|
248
284
|
:'last_payment',
|
249
285
|
:'last_payment_at',
|
250
286
|
:'loan_amount',
|
287
|
+
:'margin_balance',
|
251
288
|
:'matures_on',
|
252
289
|
:'member_guid',
|
253
290
|
:'member_id',
|
@@ -265,6 +302,8 @@ module MxPlatformRuby
|
|
265
302
|
:'routing_number',
|
266
303
|
:'started_on',
|
267
304
|
:'subtype',
|
305
|
+
:'today_ugl_amount',
|
306
|
+
:'today_ugl_percentage',
|
268
307
|
:'total_account_value',
|
269
308
|
:'type',
|
270
309
|
:'updated_at',
|
@@ -292,6 +331,22 @@ module MxPlatformRuby
|
|
292
331
|
self.account_number = attributes[:'account_number']
|
293
332
|
end
|
294
333
|
|
334
|
+
if attributes.key?(:'account_ownership')
|
335
|
+
self.account_ownership = attributes[:'account_ownership']
|
336
|
+
end
|
337
|
+
|
338
|
+
if attributes.key?(:'annuity_policy_to_date')
|
339
|
+
self.annuity_policy_to_date = attributes[:'annuity_policy_to_date']
|
340
|
+
end
|
341
|
+
|
342
|
+
if attributes.key?(:'annuity_provider')
|
343
|
+
self.annuity_provider = attributes[:'annuity_provider']
|
344
|
+
end
|
345
|
+
|
346
|
+
if attributes.key?(:'annuity_term_year')
|
347
|
+
self.annuity_term_year = attributes[:'annuity_term_year']
|
348
|
+
end
|
349
|
+
|
295
350
|
if attributes.key?(:'apr')
|
296
351
|
self.apr = attributes[:'apr']
|
297
352
|
end
|
@@ -356,6 +411,10 @@ module MxPlatformRuby
|
|
356
411
|
self.imported_at = attributes[:'imported_at']
|
357
412
|
end
|
358
413
|
|
414
|
+
if attributes.key?(:'interest_rate')
|
415
|
+
self.interest_rate = attributes[:'interest_rate']
|
416
|
+
end
|
417
|
+
|
359
418
|
if attributes.key?(:'institution_code')
|
360
419
|
self.institution_code = attributes[:'institution_code']
|
361
420
|
end
|
@@ -364,10 +423,6 @@ module MxPlatformRuby
|
|
364
423
|
self.insured_name = attributes[:'insured_name']
|
365
424
|
end
|
366
425
|
|
367
|
-
if attributes.key?(:'interest_rate')
|
368
|
-
self.interest_rate = attributes[:'interest_rate']
|
369
|
-
end
|
370
|
-
|
371
426
|
if attributes.key?(:'is_closed')
|
372
427
|
self.is_closed = attributes[:'is_closed']
|
373
428
|
end
|
@@ -376,6 +431,10 @@ module MxPlatformRuby
|
|
376
431
|
self.is_hidden = attributes[:'is_hidden']
|
377
432
|
end
|
378
433
|
|
434
|
+
if attributes.key?(:'is_manual')
|
435
|
+
self.is_manual = attributes[:'is_manual']
|
436
|
+
end
|
437
|
+
|
379
438
|
if attributes.key?(:'last_payment')
|
380
439
|
self.last_payment = attributes[:'last_payment']
|
381
440
|
end
|
@@ -388,6 +447,10 @@ module MxPlatformRuby
|
|
388
447
|
self.loan_amount = attributes[:'loan_amount']
|
389
448
|
end
|
390
449
|
|
450
|
+
if attributes.key?(:'margin_balance')
|
451
|
+
self.margin_balance = attributes[:'margin_balance']
|
452
|
+
end
|
453
|
+
|
391
454
|
if attributes.key?(:'matures_on')
|
392
455
|
self.matures_on = attributes[:'matures_on']
|
393
456
|
end
|
@@ -456,6 +519,14 @@ module MxPlatformRuby
|
|
456
519
|
self.subtype = attributes[:'subtype']
|
457
520
|
end
|
458
521
|
|
522
|
+
if attributes.key?(:'today_ugl_amount')
|
523
|
+
self.today_ugl_amount = attributes[:'today_ugl_amount']
|
524
|
+
end
|
525
|
+
|
526
|
+
if attributes.key?(:'today_ugl_percentage')
|
527
|
+
self.today_ugl_percentage = attributes[:'today_ugl_percentage']
|
528
|
+
end
|
529
|
+
|
459
530
|
if attributes.key?(:'total_account_value')
|
460
531
|
self.total_account_value = attributes[:'total_account_value']
|
461
532
|
end
|
@@ -496,6 +567,10 @@ module MxPlatformRuby
|
|
496
567
|
return true if self.equal?(o)
|
497
568
|
self.class == o.class &&
|
498
569
|
account_number == o.account_number &&
|
570
|
+
account_ownership == o.account_ownership &&
|
571
|
+
annuity_policy_to_date == o.annuity_policy_to_date &&
|
572
|
+
annuity_provider == o.annuity_provider &&
|
573
|
+
annuity_term_year == o.annuity_term_year &&
|
499
574
|
apr == o.apr &&
|
500
575
|
apy == o.apy &&
|
501
576
|
available_balance == o.available_balance &&
|
@@ -512,14 +587,16 @@ module MxPlatformRuby
|
|
512
587
|
holdings_value == o.holdings_value &&
|
513
588
|
id == o.id &&
|
514
589
|
imported_at == o.imported_at &&
|
590
|
+
interest_rate == o.interest_rate &&
|
515
591
|
institution_code == o.institution_code &&
|
516
592
|
insured_name == o.insured_name &&
|
517
|
-
interest_rate == o.interest_rate &&
|
518
593
|
is_closed == o.is_closed &&
|
519
594
|
is_hidden == o.is_hidden &&
|
595
|
+
is_manual == o.is_manual &&
|
520
596
|
last_payment == o.last_payment &&
|
521
597
|
last_payment_at == o.last_payment_at &&
|
522
598
|
loan_amount == o.loan_amount &&
|
599
|
+
margin_balance == o.margin_balance &&
|
523
600
|
matures_on == o.matures_on &&
|
524
601
|
member_guid == o.member_guid &&
|
525
602
|
member_id == o.member_id &&
|
@@ -537,6 +614,8 @@ module MxPlatformRuby
|
|
537
614
|
routing_number == o.routing_number &&
|
538
615
|
started_on == o.started_on &&
|
539
616
|
subtype == o.subtype &&
|
617
|
+
today_ugl_amount == o.today_ugl_amount &&
|
618
|
+
today_ugl_percentage == o.today_ugl_percentage &&
|
540
619
|
total_account_value == o.total_account_value &&
|
541
620
|
type == o.type &&
|
542
621
|
updated_at == o.updated_at &&
|
@@ -553,7 +632,7 @@ module MxPlatformRuby
|
|
553
632
|
# Calculates hash code according to all attributes.
|
554
633
|
# @return [Integer] Hash code
|
555
634
|
def hash
|
556
|
-
[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,
|
635
|
+
[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, routing_number, started_on, subtype, today_ugl_amount, today_ugl_percentage, total_account_value, type, updated_at, user_guid, user_id].hash
|
557
636
|
end
|
558
637
|
|
559
638
|
# Builds the object from hash
|
data/lib/mx-platform-ruby.rb
CHANGED
@@ -17,6 +17,8 @@ require 'mx-platform-ruby/version'
|
|
17
17
|
require 'mx-platform-ruby/configuration'
|
18
18
|
|
19
19
|
# Models
|
20
|
+
require 'mx-platform-ruby/models/account_create_request'
|
21
|
+
require 'mx-platform-ruby/models/account_create_request_body'
|
20
22
|
require 'mx-platform-ruby/models/account_number_response'
|
21
23
|
require 'mx-platform-ruby/models/account_numbers_response_body'
|
22
24
|
require 'mx-platform-ruby/models/account_owner_response'
|
data/openapi/config.yml
CHANGED
@@ -113,6 +113,19 @@ describe 'MxPlatformApi' do
|
|
113
113
|
end
|
114
114
|
end
|
115
115
|
|
116
|
+
# unit tests for create_manual_account
|
117
|
+
# Create manual account
|
118
|
+
# This endpoint can only be used to create manual accounts. Creating a manual account will automatically create it under the Manual Institution member. Since a manual account has no credentials tied to the member, the account will never aggregate or include data from a data feed..
|
119
|
+
# @param user_guid The unique id for a `user`.
|
120
|
+
# @param account_create_request_body Manual account object to be created.
|
121
|
+
# @param [Hash] opts the optional parameters
|
122
|
+
# @return [AccountResponseBody]
|
123
|
+
describe 'create_manual_account test' do
|
124
|
+
it 'should work' do
|
125
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
116
129
|
# unit tests for create_member
|
117
130
|
# Create member
|
118
131
|
# This endpoint allows you to create a new member. Members are created with the required parameters credentials and institution_code, and the optional parameters id and metadata. When creating a member, youll need to include the correct type of credential required by the financial institution and provided by the user. You can find out which credential type is required with the `/institutions/{institution_code}/credentials` endpoint. If successful, the MX Platform API will respond with the newly-created member object. Once you successfully create a member, MX will immediately validate the provided credentials and attempt to aggregate data for accounts and transactions.
|
@@ -232,6 +245,19 @@ describe 'MxPlatformApi' do
|
|
232
245
|
end
|
233
246
|
end
|
234
247
|
|
248
|
+
# unit tests for delete_manual_account
|
249
|
+
# Delete manual account
|
250
|
+
# This endpoint deletes accounts that were manually created. The API will respond with an empty object and a status of `204 No Content`.
|
251
|
+
# @param account_guid The unique id for an `account`.
|
252
|
+
# @param user_guid The unique id for a `user`.
|
253
|
+
# @param [Hash] opts the optional parameters
|
254
|
+
# @return [nil]
|
255
|
+
describe 'delete_manual_account test' do
|
256
|
+
it 'should work' do
|
257
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
258
|
+
end
|
259
|
+
end
|
260
|
+
|
235
261
|
# unit tests for delete_member
|
236
262
|
# Delete member
|
237
263
|
# Accessing this endpoint will permanently delete a member.
|
@@ -0,0 +1,40 @@
|
|
1
|
+
=begin
|
2
|
+
#MX Platform API
|
3
|
+
|
4
|
+
#The MX Platform API is a powerful, fully-featured API designed to make aggregating and enhancing financial data easy and reliable. It can seamlessly connect your app or website to tens of thousands of financial institutions.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.4.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for MxPlatformRuby::AccountCreateRequestBody
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MxPlatformRuby::AccountCreateRequestBody do
|
21
|
+
let(:instance) { MxPlatformRuby::AccountCreateRequestBody.new }
|
22
|
+
|
23
|
+
describe 'test an instance of AccountCreateRequestBody' do
|
24
|
+
it 'should create an instance of AccountCreateRequestBody' do
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::AccountCreateRequestBody)
|
26
|
+
end
|
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
|
+
describe 'test attribute "account"' 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
|
+
end
|
@@ -0,0 +1,160 @@
|
|
1
|
+
=begin
|
2
|
+
#MX Platform API
|
3
|
+
|
4
|
+
#The MX Platform API is a powerful, fully-featured API designed to make aggregating and enhancing financial data easy and reliable. It can seamlessly connect your app or website to tens of thousands of financial institutions.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.4.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for MxPlatformRuby::AccountCreateRequest
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MxPlatformRuby::AccountCreateRequest do
|
21
|
+
let(:instance) { MxPlatformRuby::AccountCreateRequest.new }
|
22
|
+
|
23
|
+
describe 'test an instance of AccountCreateRequest' do
|
24
|
+
it 'should create an instance of AccountCreateRequest' do
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::AccountCreateRequest)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "account_subtype_name"' 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
|
+
describe 'test attribute "account_type"' 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 "apr"' 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 "apy"' 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 "available_balance"' 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
|
+
|
58
|
+
describe 'test attribute "balance"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "cash_surrender_value"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe 'test attribute "credit_limit"' do
|
71
|
+
it 'should work' do
|
72
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
describe 'test attribute "currency_code"' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
describe 'test attribute "death_benefit"' 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
|
+
describe 'test attribute "interest_rate"' do
|
89
|
+
it 'should work' do
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
describe 'test attribute "is_business"' do
|
95
|
+
it 'should work' do
|
96
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
describe 'test attribute "is_closed"' do
|
101
|
+
it 'should work' do
|
102
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
describe 'test attribute "is_hidden"' do
|
107
|
+
it 'should work' do
|
108
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
describe 'test attribute "loan_amount"' do
|
113
|
+
it 'should work' do
|
114
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
describe 'test attribute "metadata"' 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 "name"' 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
|
+
describe 'test attribute "nickname"' 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 "original_balance"' 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
|
+
describe 'test attribute "property_type"' do
|
143
|
+
it 'should work' do
|
144
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
148
|
+
describe 'test attribute "property_type_name"' 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 "skip_webhook"' 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
|
+
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,19 +151,19 @@ describe MxPlatformRuby::AccountResponse do
|
|
127
151
|
end
|
128
152
|
end
|
129
153
|
|
130
|
-
describe 'test attribute "
|
154
|
+
describe 'test attribute "interest_rate"' do
|
131
155
|
it 'should work' do
|
132
156
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
133
157
|
end
|
134
158
|
end
|
135
159
|
|
136
|
-
describe 'test attribute "
|
160
|
+
describe 'test attribute "institution_code"' do
|
137
161
|
it 'should work' do
|
138
162
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
139
163
|
end
|
140
164
|
end
|
141
165
|
|
142
|
-
describe 'test attribute "
|
166
|
+
describe 'test attribute "insured_name"' do
|
143
167
|
it 'should work' do
|
144
168
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
145
169
|
end
|
@@ -157,6 +181,12 @@ describe MxPlatformRuby::AccountResponse do
|
|
157
181
|
end
|
158
182
|
end
|
159
183
|
|
184
|
+
describe 'test attribute "is_manual"' 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
|
+
|
160
190
|
describe 'test attribute "last_payment"' do
|
161
191
|
it 'should work' do
|
162
192
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -175,6 +205,12 @@ describe MxPlatformRuby::AccountResponse do
|
|
175
205
|
end
|
176
206
|
end
|
177
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
|
+
|
178
214
|
describe 'test attribute "matures_on"' do
|
179
215
|
it 'should work' do
|
180
216
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -277,6 +313,18 @@ describe MxPlatformRuby::AccountResponse do
|
|
277
313
|
end
|
278
314
|
end
|
279
315
|
|
316
|
+
describe 'test attribute "today_ugl_amount"' do
|
317
|
+
it 'should work' do
|
318
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
319
|
+
end
|
320
|
+
end
|
321
|
+
|
322
|
+
describe 'test attribute "today_ugl_percentage"' do
|
323
|
+
it 'should work' do
|
324
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
325
|
+
end
|
326
|
+
end
|
327
|
+
|
280
328
|
describe 'test attribute "total_account_value"' do
|
281
329
|
it 'should work' do
|
282
330
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|