mx-platform-ruby 0.39.0 → 0.40.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 +1 -1
- data/docs/BudgetCreateRequest.md +26 -0
- data/docs/BudgetCreateRequestBody.md +18 -0
- data/docs/BudgetResponse.md +48 -0
- data/docs/BudgetResponseBody.md +18 -0
- data/docs/BudgetUpdateRequest.md +22 -0
- data/docs/BudgetUpdateRequestBody.md +18 -0
- data/docs/BudgetsApi.md +444 -0
- data/docs/CreditCardProduct.md +8 -8
- data/docs/CreditCardProductResponse.md +2 -2
- data/docs/GoalRequest.md +38 -0
- data/docs/GoalRequestBody.md +18 -0
- data/docs/GoalResponse.md +48 -0
- data/docs/GoalResponseBody.md +18 -0
- data/docs/GoalsApi.md +450 -0
- data/docs/GoalsResponse.md +48 -0
- data/docs/GoalsResponseBody.md +20 -0
- data/docs/MonthlyCashFlowProfileRequest.md +20 -0
- data/docs/MonthlyCashFlowProfileRequestBody.md +18 -0
- data/docs/MonthlyCashFlowResponse.md +30 -0
- data/docs/MonthlyCashFlowResponseBody.md +18 -0
- data/docs/MxPlatformApi.md +291 -0
- data/docs/RepositionRequest.md +20 -0
- data/docs/RepositionRequestBody.md +18 -0
- data/docs/RepositionResponseBody.md +18 -0
- data/docs/RewardResponse.md +2 -0
- data/docs/RewardsResponse.md +2 -0
- data/docs/SplitTransactionRequest.md +24 -0
- data/docs/SplitTransactionRequestBody.md +18 -0
- data/docs/SplitTransactionsResponseBody.md +18 -0
- data/docs/UpdateGoalRequest.md +38 -0
- data/docs/UpdateGoalRequestBody.md +18 -0
- data/lib/mx-platform-ruby/api/budgets_api.rb +434 -0
- data/lib/mx-platform-ruby/api/goals_api.rb +455 -0
- data/lib/mx-platform-ruby/api/mx_platform_api.rb +278 -0
- data/lib/mx-platform-ruby/models/budget_create_request.rb +269 -0
- data/lib/mx-platform-ruby/models/budget_create_request_body.rb +214 -0
- data/lib/mx-platform-ruby/models/budget_response.rb +373 -0
- data/lib/mx-platform-ruby/models/budget_response_body.rb +214 -0
- data/lib/mx-platform-ruby/models/budget_update_request.rb +235 -0
- data/lib/mx-platform-ruby/models/budget_update_request_body.rb +214 -0
- data/lib/mx-platform-ruby/models/credit_card_product.rb +17 -21
- data/lib/mx-platform-ruby/models/credit_card_product_response.rb +7 -7
- data/lib/mx-platform-ruby/models/goal_request.rb +350 -0
- data/lib/mx-platform-ruby/models/goal_request_body.rb +214 -0
- data/lib/mx-platform-ruby/models/goal_response.rb +364 -0
- data/lib/mx-platform-ruby/models/goal_response_body.rb +214 -0
- data/lib/mx-platform-ruby/models/goals_response.rb +363 -0
- data/lib/mx-platform-ruby/models/goals_response_body.rb +225 -0
- data/lib/mx-platform-ruby/models/monthly_cash_flow_profile_request.rb +225 -0
- data/lib/mx-platform-ruby/models/monthly_cash_flow_profile_request_body.rb +214 -0
- data/lib/mx-platform-ruby/models/monthly_cash_flow_response.rb +274 -0
- data/lib/mx-platform-ruby/models/monthly_cash_flow_response_body.rb +214 -0
- data/lib/mx-platform-ruby/models/reposition_request.rb +239 -0
- data/lib/mx-platform-ruby/models/reposition_request_body.rb +216 -0
- data/lib/mx-platform-ruby/models/reposition_response_body.rb +216 -0
- data/lib/mx-platform-ruby/models/reward_response.rb +10 -1
- data/lib/mx-platform-ruby/models/rewards_response.rb +10 -1
- data/lib/mx-platform-ruby/models/split_transaction_request.rb +252 -0
- data/lib/mx-platform-ruby/models/split_transaction_request_body.rb +221 -0
- data/lib/mx-platform-ruby/models/split_transactions_response_body.rb +216 -0
- data/lib/mx-platform-ruby/models/update_goal_request.rb +315 -0
- data/lib/mx-platform-ruby/models/update_goal_request_body.rb +214 -0
- data/lib/mx-platform-ruby/version.rb +1 -1
- data/lib/mx-platform-ruby.rb +26 -0
- data/openapi/config.yml +1 -1
- data/spec/api/budgets_api_spec.rb +112 -0
- data/spec/api/goals_api_spec.rb +115 -0
- data/spec/api/mx_platform_api_spec.rb +51 -0
- data/spec/models/budget_create_request_body_spec.rb +34 -0
- data/spec/models/budget_create_request_spec.rb +58 -0
- data/spec/models/budget_response_body_spec.rb +34 -0
- data/spec/models/budget_response_spec.rb +124 -0
- data/spec/models/budget_update_request_body_spec.rb +34 -0
- data/spec/models/budget_update_request_spec.rb +46 -0
- data/spec/models/credit_card_product_response_spec.rb +1 -1
- data/spec/models/credit_card_product_spec.rb +2 -2
- data/spec/models/goal_request_body_spec.rb +34 -0
- data/spec/models/goal_request_spec.rb +94 -0
- data/spec/models/goal_response_body_spec.rb +34 -0
- data/spec/models/goal_response_spec.rb +124 -0
- data/spec/models/goals_response_body_spec.rb +40 -0
- data/spec/models/goals_response_spec.rb +124 -0
- data/spec/models/monthly_cash_flow_profile_request_body_spec.rb +34 -0
- data/spec/models/monthly_cash_flow_profile_request_spec.rb +40 -0
- data/spec/models/monthly_cash_flow_response_body_spec.rb +34 -0
- data/spec/models/monthly_cash_flow_response_spec.rb +70 -0
- data/spec/models/reposition_request_body_spec.rb +34 -0
- data/spec/models/reposition_request_spec.rb +40 -0
- data/spec/models/reposition_response_body_spec.rb +34 -0
- data/spec/models/reward_response_spec.rb +6 -0
- data/spec/models/rewards_response_spec.rb +6 -0
- data/spec/models/split_transaction_request_body_spec.rb +34 -0
- data/spec/models/split_transaction_request_spec.rb +52 -0
- data/spec/models/split_transactions_response_body_spec.rb +34 -0
- data/spec/models/update_goal_request_body_spec.rb +34 -0
- data/spec/models/update_goal_request_spec.rb +94 -0
- metadata +106 -2
|
@@ -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: 7.0.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for MxPlatformRuby::BudgetCreateRequest
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe MxPlatformRuby::BudgetCreateRequest do
|
|
21
|
+
let(:instance) { MxPlatformRuby::BudgetCreateRequest.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of BudgetCreateRequest' do
|
|
24
|
+
it 'should create an instance of BudgetCreateRequest' do
|
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::BudgetCreateRequest)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "category_guid"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
describe 'test attribute "parent_guid"' do
|
|
35
|
+
it 'should work' do
|
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "amount"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
describe 'test attribute "metadata"' do
|
|
47
|
+
it 'should work' do
|
|
48
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
describe 'test attribute "skip_webhook"' do
|
|
53
|
+
it 'should work' do
|
|
54
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
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: 7.0.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for MxPlatformRuby::BudgetResponseBody
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe MxPlatformRuby::BudgetResponseBody do
|
|
21
|
+
let(:instance) { MxPlatformRuby::BudgetResponseBody.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of BudgetResponseBody' do
|
|
24
|
+
it 'should create an instance of BudgetResponseBody' do
|
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::BudgetResponseBody)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "budget"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
end
|
|
@@ -0,0 +1,124 @@
|
|
|
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: 7.0.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for MxPlatformRuby::BudgetResponse
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe MxPlatformRuby::BudgetResponse do
|
|
21
|
+
let(:instance) { MxPlatformRuby::BudgetResponse.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of BudgetResponse' do
|
|
24
|
+
it 'should create an instance of BudgetResponse' do
|
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::BudgetResponse)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "amount"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
describe 'test attribute "category_guid"' do
|
|
35
|
+
it 'should work' do
|
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "created_at"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
describe 'test attribute "guid"' do
|
|
47
|
+
it 'should work' do
|
|
48
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
describe 'test attribute "is_exceeded"' do
|
|
53
|
+
it 'should work' do
|
|
54
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
describe 'test attribute "is_off_track"' do
|
|
59
|
+
it 'should work' do
|
|
60
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
describe 'test attribute "metadata"' do
|
|
65
|
+
it 'should work' do
|
|
66
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
describe 'test attribute "name"' do
|
|
71
|
+
it 'should work' do
|
|
72
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
describe 'test attribute "off_track_percentage"' do
|
|
77
|
+
it 'should work' do
|
|
78
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
describe 'test attribute "parent_guid"' do
|
|
83
|
+
it 'should work' do
|
|
84
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
describe 'test attribute "percent_spent"' do
|
|
89
|
+
it 'should work' do
|
|
90
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
describe 'test attribute "projected_spending"' do
|
|
95
|
+
it 'should work' do
|
|
96
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
describe 'test attribute "revision"' do
|
|
101
|
+
it 'should work' do
|
|
102
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
describe 'test attribute "transaction_total"' do
|
|
107
|
+
it 'should work' do
|
|
108
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
109
|
+
end
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
describe 'test attribute "updated_at"' do
|
|
113
|
+
it 'should work' do
|
|
114
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
describe 'test attribute "user_guid"' do
|
|
119
|
+
it 'should work' do
|
|
120
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
121
|
+
end
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
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: 7.0.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for MxPlatformRuby::BudgetUpdateRequestBody
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe MxPlatformRuby::BudgetUpdateRequestBody do
|
|
21
|
+
let(:instance) { MxPlatformRuby::BudgetUpdateRequestBody.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of BudgetUpdateRequestBody' do
|
|
24
|
+
it 'should create an instance of BudgetUpdateRequestBody' do
|
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::BudgetUpdateRequestBody)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "budget"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
end
|
|
@@ -0,0 +1,46 @@
|
|
|
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: 7.0.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for MxPlatformRuby::BudgetUpdateRequest
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe MxPlatformRuby::BudgetUpdateRequest do
|
|
21
|
+
let(:instance) { MxPlatformRuby::BudgetUpdateRequest.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of BudgetUpdateRequest' do
|
|
24
|
+
it 'should create an instance of BudgetUpdateRequest' do
|
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::BudgetUpdateRequest)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "amount"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
describe 'test attribute "metadata"' do
|
|
35
|
+
it 'should work' do
|
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "skip_webhook"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
end
|
|
@@ -25,7 +25,7 @@ describe MxPlatformRuby::CreditCardProductResponse do
|
|
|
25
25
|
expect(instance).to be_instance_of(MxPlatformRuby::CreditCardProductResponse)
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
|
-
describe 'test attribute "
|
|
28
|
+
describe 'test attribute "credit_card_product"' do
|
|
29
29
|
it 'should work' do
|
|
30
30
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
31
|
end
|
|
@@ -85,13 +85,13 @@ describe MxPlatformRuby::CreditCardProduct do
|
|
|
85
85
|
end
|
|
86
86
|
end
|
|
87
87
|
|
|
88
|
-
describe 'test attribute "
|
|
88
|
+
describe 'test attribute "is_accepting_applicants"' do
|
|
89
89
|
it 'should work' do
|
|
90
90
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
91
91
|
end
|
|
92
92
|
end
|
|
93
93
|
|
|
94
|
-
describe 'test attribute "
|
|
94
|
+
describe 'test attribute "is_active_credit_card_product"' do
|
|
95
95
|
it 'should work' do
|
|
96
96
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
97
97
|
end
|
|
@@ -0,0 +1,34 @@
|
|
|
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: 7.0.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for MxPlatformRuby::GoalRequestBody
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe MxPlatformRuby::GoalRequestBody do
|
|
21
|
+
let(:instance) { MxPlatformRuby::GoalRequestBody.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of GoalRequestBody' do
|
|
24
|
+
it 'should create an instance of GoalRequestBody' do
|
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::GoalRequestBody)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "goal"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
end
|
|
@@ -0,0 +1,94 @@
|
|
|
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: 7.0.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for MxPlatformRuby::GoalRequest
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe MxPlatformRuby::GoalRequest do
|
|
21
|
+
let(:instance) { MxPlatformRuby::GoalRequest.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of GoalRequest' do
|
|
24
|
+
it 'should create an instance of GoalRequest' do
|
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::GoalRequest)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "account_guid"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
describe 'test attribute "amount"' do
|
|
35
|
+
it 'should work' do
|
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "goal_type_name"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
describe 'test attribute "meta_type_name"' do
|
|
47
|
+
it 'should work' do
|
|
48
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
describe 'test attribute "name"' do
|
|
53
|
+
it 'should work' do
|
|
54
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
describe 'test attribute "completed_at"' do
|
|
59
|
+
it 'should work' do
|
|
60
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
describe 'test attribute "has_been_spent"' do
|
|
65
|
+
it 'should work' do
|
|
66
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
describe 'test attribute "is_complete"' do
|
|
71
|
+
it 'should work' do
|
|
72
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
describe 'test attribute "metadata"' do
|
|
77
|
+
it 'should work' do
|
|
78
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
describe 'test attribute "position"' do
|
|
83
|
+
it 'should work' do
|
|
84
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
describe 'test attribute "targeted_to_complete_at"' do
|
|
89
|
+
it 'should work' do
|
|
90
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
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: 7.0.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for MxPlatformRuby::GoalResponseBody
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe MxPlatformRuby::GoalResponseBody do
|
|
21
|
+
let(:instance) { MxPlatformRuby::GoalResponseBody.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of GoalResponseBody' do
|
|
24
|
+
it 'should create an instance of GoalResponseBody' do
|
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::GoalResponseBody)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "goal"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
end
|
|
@@ -0,0 +1,124 @@
|
|
|
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: 7.0.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for MxPlatformRuby::GoalResponse
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe MxPlatformRuby::GoalResponse do
|
|
21
|
+
let(:instance) { MxPlatformRuby::GoalResponse.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of GoalResponse' do
|
|
24
|
+
it 'should create an instance of GoalResponse' do
|
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::GoalResponse)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "account_guid"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
describe 'test attribute "amount"' do
|
|
35
|
+
it 'should work' do
|
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "completed_at"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
describe 'test attribute "current_amount"' do
|
|
47
|
+
it 'should work' do
|
|
48
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
describe 'test attribute "goal_type_name"' do
|
|
53
|
+
it 'should work' do
|
|
54
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
describe 'test attribute "guid"' do
|
|
59
|
+
it 'should work' do
|
|
60
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
describe 'test attribute "has_been_spent"' do
|
|
65
|
+
it 'should work' do
|
|
66
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
describe 'test attribute "is_complete"' do
|
|
71
|
+
it 'should work' do
|
|
72
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
describe 'test attribute "metadata"' do
|
|
77
|
+
it 'should work' do
|
|
78
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
describe 'test attribute "meta_type_name"' do
|
|
83
|
+
it 'should work' do
|
|
84
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
describe 'test attribute "name"' do
|
|
89
|
+
it 'should work' do
|
|
90
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
describe 'test attribute "position"' do
|
|
95
|
+
it 'should work' do
|
|
96
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
describe 'test attribute "projected_to_complete_at"' do
|
|
101
|
+
it 'should work' do
|
|
102
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
describe 'test attribute "targeted_to_complete_at"' do
|
|
107
|
+
it 'should work' do
|
|
108
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
109
|
+
end
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
describe 'test attribute "track_type_name"' do
|
|
113
|
+
it 'should work' do
|
|
114
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
describe 'test attribute "user_guid"' do
|
|
119
|
+
it 'should work' do
|
|
120
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
121
|
+
end
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
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: 7.0.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for MxPlatformRuby::GoalsResponseBody
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe MxPlatformRuby::GoalsResponseBody do
|
|
21
|
+
let(:instance) { MxPlatformRuby::GoalsResponseBody.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of GoalsResponseBody' do
|
|
24
|
+
it 'should create an instance of GoalsResponseBody' do
|
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::GoalsResponseBody)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "goals"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
describe 'test attribute "pagination"' do
|
|
35
|
+
it 'should work' do
|
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
end
|