mx-platform-ruby 0.20.0 → 0.22.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 +2 -2
- data/docs/MemberCreateRequestBody.md +2 -0
- data/docs/MxPlatformApi.md +1588 -507
- data/docs/SpendingPlanAccountResponse.md +30 -0
- data/docs/SpendingPlanAccountsResponse.md +20 -0
- data/docs/SpendingPlanIterationItemCreateRequestBody.md +26 -0
- data/docs/SpendingPlanIterationItemResponse.md +40 -0
- data/docs/SpendingPlanIterationItemsResponseBody.md +20 -0
- data/docs/SpendingPlanIterationResponse.md +32 -0
- data/docs/SpendingPlanIterationsResponse.md +20 -0
- data/docs/SpendingPlanResponse.md +26 -0
- data/docs/SpendingPlansResponseBody.md +20 -0
- data/lib/mx-platform-ruby/api/mx_platform_api.rb +1065 -8
- data/lib/mx-platform-ruby/models/member_create_request_body.rb +10 -1
- data/lib/mx-platform-ruby/models/spending_plan_account_response.rb +272 -0
- data/lib/mx-platform-ruby/models/spending_plan_accounts_response.rb +229 -0
- data/lib/mx-platform-ruby/models/spending_plan_iteration_item_create_request_body.rb +259 -0
- data/lib/mx-platform-ruby/models/spending_plan_iteration_item_response.rb +330 -0
- data/lib/mx-platform-ruby/models/spending_plan_iteration_items_response_body.rb +229 -0
- data/lib/mx-platform-ruby/models/spending_plan_iteration_response.rb +289 -0
- data/lib/mx-platform-ruby/models/spending_plan_iterations_response.rb +229 -0
- data/lib/mx-platform-ruby/models/spending_plan_response.rb +259 -0
- data/lib/mx-platform-ruby/models/spending_plans_response_body.rb +229 -0
- data/lib/mx-platform-ruby/version.rb +1 -1
- data/lib/mx-platform-ruby.rb +9 -0
- data/openapi/config.yml +1 -1
- data/spec/api/mx_platform_api_spec.rb +205 -0
- data/spec/models/member_create_request_body_spec.rb +6 -0
- data/spec/models/spending_plan_account_response_spec.rb +70 -0
- data/spec/models/spending_plan_accounts_response_spec.rb +40 -0
- data/spec/models/spending_plan_iteration_item_create_request_body_spec.rb +58 -0
- data/spec/models/spending_plan_iteration_item_response_spec.rb +100 -0
- data/spec/models/spending_plan_iteration_items_response_body_spec.rb +40 -0
- data/spec/models/spending_plan_iteration_response_spec.rb +76 -0
- data/spec/models/spending_plan_iterations_response_spec.rb +40 -0
- data/spec/models/spending_plan_response_spec.rb +58 -0
- data/spec/models/spending_plans_response_body_spec.rb +40 -0
- metadata +142 -106
@@ -0,0 +1,76 @@
|
|
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::SpendingPlanIterationResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MxPlatformRuby::SpendingPlanIterationResponse do
|
21
|
+
let(:instance) { MxPlatformRuby::SpendingPlanIterationResponse.new }
|
22
|
+
|
23
|
+
describe 'test an instance of SpendingPlanIterationResponse' do
|
24
|
+
it 'should create an instance of SpendingPlanIterationResponse' do
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::SpendingPlanIterationResponse)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "created_at"' 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 "end_on"' 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 "guid"' 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 "iteration_number"' 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 "spending_plan_guid"' 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 "start_on"' 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 "updated_at"' 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 "user_guid"' 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
|
+
end
|
@@ -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::SpendingPlanIterationsResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MxPlatformRuby::SpendingPlanIterationsResponse do
|
21
|
+
let(:instance) { MxPlatformRuby::SpendingPlanIterationsResponse.new }
|
22
|
+
|
23
|
+
describe 'test an instance of SpendingPlanIterationsResponse' do
|
24
|
+
it 'should create an instance of SpendingPlanIterationsResponse' do
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::SpendingPlanIterationsResponse)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "iterations"' 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 "pagination"' 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,58 @@
|
|
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::SpendingPlanResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MxPlatformRuby::SpendingPlanResponse do
|
21
|
+
let(:instance) { MxPlatformRuby::SpendingPlanResponse.new }
|
22
|
+
|
23
|
+
describe 'test an instance of SpendingPlanResponse' do
|
24
|
+
it 'should create an instance of SpendingPlanResponse' do
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::SpendingPlanResponse)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "created_at"' 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 "current_iteration_number"' 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 "guid"' 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 "updated_at"' 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 "user_guid"' 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
|
+
end
|
@@ -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::SpendingPlansResponseBody
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MxPlatformRuby::SpendingPlansResponseBody do
|
21
|
+
let(:instance) { MxPlatformRuby::SpendingPlansResponseBody.new }
|
22
|
+
|
23
|
+
describe 'test an instance of SpendingPlansResponseBody' do
|
24
|
+
it 'should create an instance of SpendingPlansResponseBody' do
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::SpendingPlansResponseBody)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "iteration_items"' 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 "pagination"' 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
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mx-platform-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MX
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -141,6 +141,15 @@ files:
|
|
141
141
|
- docs/PaymentProcessorAuthorizationCodeRequestBody.md
|
142
142
|
- docs/PaymentProcessorAuthorizationCodeResponse.md
|
143
143
|
- docs/PaymentProcessorAuthorizationCodeResponseBody.md
|
144
|
+
- docs/SpendingPlanAccountResponse.md
|
145
|
+
- docs/SpendingPlanAccountsResponse.md
|
146
|
+
- docs/SpendingPlanIterationItemCreateRequestBody.md
|
147
|
+
- docs/SpendingPlanIterationItemResponse.md
|
148
|
+
- docs/SpendingPlanIterationItemsResponseBody.md
|
149
|
+
- docs/SpendingPlanIterationResponse.md
|
150
|
+
- docs/SpendingPlanIterationsResponse.md
|
151
|
+
- docs/SpendingPlanResponse.md
|
152
|
+
- docs/SpendingPlansResponseBody.md
|
144
153
|
- docs/StatementResponse.md
|
145
154
|
- docs/StatementResponseBody.md
|
146
155
|
- docs/StatementsResponseBody.md
|
@@ -267,6 +276,15 @@ files:
|
|
267
276
|
- lib/mx-platform-ruby/models/payment_processor_authorization_code_request_body.rb
|
268
277
|
- lib/mx-platform-ruby/models/payment_processor_authorization_code_response.rb
|
269
278
|
- lib/mx-platform-ruby/models/payment_processor_authorization_code_response_body.rb
|
279
|
+
- lib/mx-platform-ruby/models/spending_plan_account_response.rb
|
280
|
+
- lib/mx-platform-ruby/models/spending_plan_accounts_response.rb
|
281
|
+
- lib/mx-platform-ruby/models/spending_plan_iteration_item_create_request_body.rb
|
282
|
+
- lib/mx-platform-ruby/models/spending_plan_iteration_item_response.rb
|
283
|
+
- lib/mx-platform-ruby/models/spending_plan_iteration_items_response_body.rb
|
284
|
+
- lib/mx-platform-ruby/models/spending_plan_iteration_response.rb
|
285
|
+
- lib/mx-platform-ruby/models/spending_plan_iterations_response.rb
|
286
|
+
- lib/mx-platform-ruby/models/spending_plan_response.rb
|
287
|
+
- lib/mx-platform-ruby/models/spending_plans_response_body.rb
|
270
288
|
- lib/mx-platform-ruby/models/statement_response.rb
|
271
289
|
- lib/mx-platform-ruby/models/statement_response_body.rb
|
272
290
|
- lib/mx-platform-ruby/models/statements_response_body.rb
|
@@ -396,6 +414,15 @@ files:
|
|
396
414
|
- spec/models/payment_processor_authorization_code_request_spec.rb
|
397
415
|
- spec/models/payment_processor_authorization_code_response_body_spec.rb
|
398
416
|
- spec/models/payment_processor_authorization_code_response_spec.rb
|
417
|
+
- spec/models/spending_plan_account_response_spec.rb
|
418
|
+
- spec/models/spending_plan_accounts_response_spec.rb
|
419
|
+
- spec/models/spending_plan_iteration_item_create_request_body_spec.rb
|
420
|
+
- spec/models/spending_plan_iteration_item_response_spec.rb
|
421
|
+
- spec/models/spending_plan_iteration_items_response_body_spec.rb
|
422
|
+
- spec/models/spending_plan_iteration_response_spec.rb
|
423
|
+
- spec/models/spending_plan_iterations_response_spec.rb
|
424
|
+
- spec/models/spending_plan_response_spec.rb
|
425
|
+
- spec/models/spending_plans_response_body_spec.rb
|
399
426
|
- spec/models/statement_response_body_spec.rb
|
400
427
|
- spec/models/statement_response_spec.rb
|
401
428
|
- spec/models/statements_response_body_spec.rb
|
@@ -467,125 +494,134 @@ test_files:
|
|
467
494
|
- spec/api/mx_platform_api_spec.rb
|
468
495
|
- spec/api_client_spec.rb
|
469
496
|
- spec/configuration_spec.rb
|
497
|
+
- spec/models/managed_transaction_update_request_spec.rb
|
498
|
+
- spec/models/taggings_response_body_spec.rb
|
499
|
+
- spec/models/transaction_rule_response_body_spec.rb
|
500
|
+
- spec/models/authorization_code_request_spec.rb
|
470
501
|
- spec/models/transaction_rule_create_request_spec.rb
|
471
|
-
- spec/models/
|
472
|
-
- spec/models/
|
473
|
-
- spec/models/
|
474
|
-
- spec/models/
|
475
|
-
- spec/models/
|
476
|
-
- spec/models/
|
477
|
-
- spec/models/
|
478
|
-
- spec/models/
|
479
|
-
- spec/models/institution_response_spec.rb
|
480
|
-
- spec/models/transaction_response_body_spec.rb
|
481
|
-
- spec/models/transaction_rule_response_spec.rb
|
482
|
-
- spec/models/account_response_spec.rb
|
483
|
-
- spec/models/o_auth_window_response_body_spec.rb
|
502
|
+
- spec/models/transaction_update_request_spec.rb
|
503
|
+
- spec/models/members_response_body_spec.rb
|
504
|
+
- spec/models/account_update_request_body_spec.rb
|
505
|
+
- spec/models/spending_plan_account_response_spec.rb
|
506
|
+
- spec/models/account_owners_response_body_spec.rb
|
507
|
+
- spec/models/category_create_request_spec.rb
|
508
|
+
- spec/models/tagging_update_request_spec.rb
|
509
|
+
- spec/models/merchant_location_response_body_spec.rb
|
484
510
|
- spec/models/connect_widget_request_spec.rb
|
485
|
-
- spec/models/
|
486
|
-
- spec/models/
|
487
|
-
- spec/models/merchant_location_response_spec.rb
|
488
|
-
- spec/models/member_resume_request_spec.rb
|
489
|
-
- spec/models/tax_documents_response_body_spec.rb
|
490
|
-
- spec/models/tag_create_request_spec.rb
|
491
|
-
- spec/models/transactions_response_body_spec.rb
|
492
|
-
- spec/models/connect_widget_request_body_spec.rb
|
511
|
+
- spec/models/categories_response_body_spec.rb
|
512
|
+
- spec/models/tag_response_body_spec.rb
|
493
513
|
- spec/models/tagging_response_body_spec.rb
|
494
|
-
- spec/models/transaction_update_request_body_spec.rb
|
495
|
-
- spec/models/member_response_body_spec.rb
|
496
|
-
- spec/models/holdings_response_body_spec.rb
|
497
|
-
- spec/models/enhance_transactions_request_body_spec.rb
|
498
|
-
- spec/models/managed_account_create_request_spec.rb
|
499
|
-
- spec/models/accounts_response_body_spec.rb
|
500
|
-
- spec/models/tax_document_response_body_spec.rb
|
501
|
-
- spec/models/category_update_request_body_spec.rb
|
502
|
-
- spec/models/account_response_body_spec.rb
|
503
|
-
- spec/models/credential_request_spec.rb
|
504
|
-
- spec/models/statement_response_body_spec.rb
|
505
|
-
- spec/models/payment_processor_authorization_code_request_spec.rb
|
506
|
-
- spec/models/managed_transaction_create_request_body_spec.rb
|
507
|
-
- spec/models/holding_response_spec.rb
|
508
|
-
- spec/models/holding_response_body_spec.rb
|
509
|
-
- spec/models/users_response_body_spec.rb
|
510
|
-
- spec/models/account_owner_response_spec.rb
|
511
|
-
- spec/models/connect_widget_response_spec.rb
|
512
|
-
- spec/models/transaction_rule_update_request_spec.rb
|
513
|
-
- spec/models/user_update_request_body_spec.rb
|
514
|
-
- spec/models/merchant_response_spec.rb
|
515
|
-
- spec/models/institution_response_body_spec.rb
|
516
|
-
- spec/models/category_create_request_spec.rb
|
517
|
-
- spec/models/credentials_response_body_spec.rb
|
518
|
-
- spec/models/widget_response_body_spec.rb
|
519
|
-
- spec/models/category_response_body_spec.rb
|
520
|
-
- spec/models/category_create_request_body_spec.rb
|
521
514
|
- spec/models/managed_account_update_request_spec.rb
|
522
|
-
- spec/models/
|
523
|
-
- spec/models/managed_transaction_update_request_spec.rb
|
515
|
+
- spec/models/institution_response_body_spec.rb
|
524
516
|
- spec/models/o_auth_window_response_spec.rb
|
525
|
-
- spec/models/
|
526
|
-
- spec/models/
|
517
|
+
- spec/models/statement_response_body_spec.rb
|
518
|
+
- spec/models/connect_widget_request_body_spec.rb
|
519
|
+
- spec/models/widget_request_spec.rb
|
520
|
+
- spec/models/category_update_request_spec.rb
|
521
|
+
- spec/models/merchant_response_spec.rb
|
522
|
+
- spec/models/enhance_transactions_request_spec.rb
|
523
|
+
- spec/models/transaction_rule_create_request_body_spec.rb
|
524
|
+
- spec/models/member_update_request_spec.rb
|
525
|
+
- spec/models/transaction_update_request_body_spec.rb
|
526
|
+
- spec/models/spending_plan_accounts_response_spec.rb
|
527
|
+
- spec/models/challenges_response_body_spec.rb
|
528
|
+
- spec/models/managed_account_create_request_body_spec.rb
|
529
|
+
- spec/models/account_owner_response_spec.rb
|
530
|
+
- spec/models/spending_plan_iteration_response_spec.rb
|
531
|
+
- spec/models/tagging_update_request_body_spec.rb
|
532
|
+
- spec/models/tag_create_request_spec.rb
|
533
|
+
- spec/models/user_update_request_spec.rb
|
534
|
+
- spec/models/connect_widget_response_body_spec.rb
|
535
|
+
- spec/models/user_response_spec.rb
|
536
|
+
- spec/models/tags_response_body_spec.rb
|
537
|
+
- spec/models/widget_request_body_spec.rb
|
538
|
+
- spec/models/member_resume_request_body_spec.rb
|
539
|
+
- spec/models/enhance_transactions_response_body_spec.rb
|
540
|
+
- spec/models/member_create_request_spec.rb
|
527
541
|
- spec/models/user_create_request_body_spec.rb
|
528
|
-
- spec/models/
|
529
|
-
- spec/models/
|
542
|
+
- spec/models/managed_member_create_request_body_spec.rb
|
543
|
+
- spec/models/statements_response_body_spec.rb
|
544
|
+
- spec/models/spending_plans_response_body_spec.rb
|
530
545
|
- spec/models/tagging_create_request_spec.rb
|
531
|
-
- spec/models/
|
546
|
+
- spec/models/spending_plan_iterations_response_spec.rb
|
532
547
|
- spec/models/tag_update_request_spec.rb
|
533
|
-
- spec/models/
|
534
|
-
- spec/models/
|
535
|
-
- spec/models/
|
536
|
-
- spec/models/
|
548
|
+
- spec/models/institutions_response_body_spec.rb
|
549
|
+
- spec/models/accounts_response_body_spec.rb
|
550
|
+
- spec/models/option_response_spec.rb
|
551
|
+
- spec/models/spending_plan_iteration_items_response_body_spec.rb
|
537
552
|
- spec/models/widget_response_spec.rb
|
538
|
-
- spec/models/
|
539
|
-
- spec/models/
|
540
|
-
- spec/models/
|
541
|
-
- spec/models/
|
542
|
-
- spec/models/
|
543
|
-
- spec/models/enhance_transactions_response_body_spec.rb
|
544
|
-
- spec/models/widget_request_spec.rb
|
545
|
-
- spec/models/account_owners_response_body_spec.rb
|
546
|
-
- spec/models/statements_response_body_spec.rb
|
547
|
-
- spec/models/taggings_response_body_spec.rb
|
553
|
+
- spec/models/spending_plan_iteration_item_response_spec.rb
|
554
|
+
- spec/models/merchant_location_response_spec.rb
|
555
|
+
- spec/models/tagging_create_request_body_spec.rb
|
556
|
+
- spec/models/transaction_response_spec.rb
|
557
|
+
- spec/models/account_numbers_response_body_spec.rb
|
548
558
|
- spec/models/account_update_request_spec.rb
|
559
|
+
- spec/models/transaction_rule_response_spec.rb
|
560
|
+
- spec/models/connect_widget_response_spec.rb
|
561
|
+
- spec/models/user_create_request_spec.rb
|
562
|
+
- spec/models/user_update_request_body_spec.rb
|
563
|
+
- spec/models/institution_response_spec.rb
|
549
564
|
- spec/models/authorization_code_request_body_spec.rb
|
550
|
-
- spec/models/
|
551
|
-
- spec/models/
|
552
|
-
- spec/models/tagging_update_request_spec.rb
|
553
|
-
- spec/models/image_option_response_spec.rb
|
554
|
-
- spec/models/enhance_transactions_request_spec.rb
|
555
|
-
- spec/models/transaction_update_request_spec.rb
|
556
|
-
- spec/models/tags_response_body_spec.rb
|
557
|
-
- spec/models/tag_response_spec.rb
|
558
|
-
- spec/models/payment_processor_authorization_code_response_body_spec.rb
|
559
|
-
- spec/models/member_update_request_body_spec.rb
|
560
|
-
- spec/models/payment_processor_authorization_code_request_body_spec.rb
|
561
|
-
- spec/models/account_number_response_spec.rb
|
562
|
-
- spec/models/enhance_transaction_response_spec.rb
|
565
|
+
- spec/models/transaction_rule_update_request_body_spec.rb
|
566
|
+
- spec/models/user_response_body_spec.rb
|
563
567
|
- spec/models/authorization_code_response_body_spec.rb
|
564
|
-
- spec/models/
|
565
|
-
- spec/models/tagging_create_request_body_spec.rb
|
568
|
+
- spec/models/tagging_response_spec.rb
|
566
569
|
- spec/models/managed_account_update_request_body_spec.rb
|
567
|
-
- spec/models/
|
568
|
-
- spec/models/
|
570
|
+
- spec/models/users_response_body_spec.rb
|
571
|
+
- spec/models/member_status_response_body_spec.rb
|
572
|
+
- spec/models/transaction_response_body_spec.rb
|
573
|
+
- spec/models/spending_plan_iteration_item_create_request_body_spec.rb
|
574
|
+
- spec/models/merchant_response_body_spec.rb
|
575
|
+
- spec/models/credential_response_spec.rb
|
576
|
+
- spec/models/widget_response_body_spec.rb
|
577
|
+
- spec/models/credential_request_spec.rb
|
578
|
+
- spec/models/enhance_transactions_request_body_spec.rb
|
569
579
|
- spec/models/merchants_response_body_spec.rb
|
570
|
-
- spec/models/authorization_code_response_spec.rb
|
571
|
-
- spec/models/transaction_rule_create_request_body_spec.rb
|
572
580
|
- spec/models/category_response_spec.rb
|
573
|
-
- spec/models/
|
574
|
-
- spec/models/
|
575
|
-
- spec/models/
|
576
|
-
- spec/models/
|
577
|
-
- spec/models/
|
578
|
-
- spec/models/credential_response_spec.rb
|
579
|
-
- spec/models/authorization_code_request_spec.rb
|
580
|
-
- spec/models/categories_response_body_spec.rb
|
581
|
-
- spec/models/managed_member_create_request_spec.rb
|
582
|
-
- spec/models/member_resume_request_body_spec.rb
|
583
|
-
- spec/models/user_response_body_spec.rb
|
584
|
-
- spec/models/managed_account_create_request_body_spec.rb
|
585
|
-
- spec/models/tagging_update_request_body_spec.rb
|
581
|
+
- spec/models/account_create_request_spec.rb
|
582
|
+
- spec/models/category_update_request_body_spec.rb
|
583
|
+
- spec/models/managed_account_create_request_spec.rb
|
584
|
+
- spec/models/holding_response_spec.rb
|
585
|
+
- spec/models/challenge_response_spec.rb
|
586
586
|
- spec/models/tax_document_response_spec.rb
|
587
|
-
- spec/models/
|
587
|
+
- spec/models/member_response_body_spec.rb
|
588
|
+
- spec/models/spending_plan_response_spec.rb
|
589
|
+
- spec/models/statement_response_spec.rb
|
590
|
+
- spec/models/category_create_request_body_spec.rb
|
591
|
+
- spec/models/managed_member_update_request_body_spec.rb
|
592
|
+
- spec/models/account_response_spec.rb
|
593
|
+
- spec/models/account_response_body_spec.rb
|
594
|
+
- spec/models/payment_processor_authorization_code_request_body_spec.rb
|
595
|
+
- spec/models/pagination_response_spec.rb
|
596
|
+
- spec/models/member_create_request_body_spec.rb
|
597
|
+
- spec/models/payment_processor_authorization_code_request_spec.rb
|
598
|
+
- spec/models/payment_processor_authorization_code_response_spec.rb
|
599
|
+
- spec/models/member_resume_request_spec.rb
|
600
|
+
- spec/models/tag_create_request_body_spec.rb
|
601
|
+
- spec/models/category_response_body_spec.rb
|
588
602
|
- spec/models/managed_member_update_request_spec.rb
|
589
|
-
- spec/models/
|
590
|
-
- spec/models/
|
603
|
+
- spec/models/tax_document_response_body_spec.rb
|
604
|
+
- spec/models/transaction_rule_update_request_spec.rb
|
605
|
+
- spec/models/holdings_response_body_spec.rb
|
606
|
+
- spec/models/tax_documents_response_body_spec.rb
|
607
|
+
- spec/models/payment_processor_authorization_code_response_body_spec.rb
|
608
|
+
- spec/models/tag_update_request_body_spec.rb
|
609
|
+
- spec/models/member_update_request_body_spec.rb
|
610
|
+
- spec/models/member_response_spec.rb
|
611
|
+
- spec/models/credentials_response_body_spec.rb
|
612
|
+
- spec/models/transaction_rules_response_body_spec.rb
|
613
|
+
- spec/models/holding_response_body_spec.rb
|
614
|
+
- spec/models/o_auth_window_response_body_spec.rb
|
615
|
+
- spec/models/account_number_response_spec.rb
|
616
|
+
- spec/models/transactions_response_body_spec.rb
|
617
|
+
- spec/models/managed_transaction_create_request_body_spec.rb
|
618
|
+
- spec/models/managed_member_create_request_spec.rb
|
619
|
+
- spec/models/tag_response_spec.rb
|
620
|
+
- spec/models/account_create_request_body_spec.rb
|
621
|
+
- spec/models/managed_transaction_create_request_spec.rb
|
622
|
+
- spec/models/member_status_response_spec.rb
|
623
|
+
- spec/models/image_option_response_spec.rb
|
624
|
+
- spec/models/managed_transaction_update_request_body_spec.rb
|
625
|
+
- spec/models/enhance_transaction_response_spec.rb
|
626
|
+
- spec/models/authorization_code_response_spec.rb
|
591
627
|
- spec/spec_helper.rb
|