mx-platform-ruby 0.16.0 → 0.18.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 +78 -0
- data/docs/AccountCreateRequestBody.md +20 -0
- data/docs/AccountResponse.md +6 -0
- data/docs/InstitutionResponse.md +6 -0
- 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 +503 -0
- data/lib/mx-platform-ruby/models/account_create_request_body.rb +228 -0
- data/lib/mx-platform-ruby/models/account_response.rb +31 -1
- data/lib/mx-platform-ruby/models/institution_response.rb +31 -1
- 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 +214 -0
- data/spec/models/account_response_spec.rb +18 -0
- data/spec/models/institution_response_spec.rb +18 -0
- metadata +112 -104
@@ -0,0 +1,214 @@
|
|
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_number"' 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 "apr"' 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 "apy"' 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 "available_balance"' 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_credit"' 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 "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
|
+
describe 'test attribute "death_benefit"' 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 "id"' 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 "interest_rate"' 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_closed"' 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 "is_hidden"' 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 "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
|
+
describe 'test attribute "loan_amount"' 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 "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
|
+
describe 'test attribute "metadata"' 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 "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
|
+
describe 'test attribute "name"' do
|
161
|
+
it 'should work' do
|
162
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
describe 'test attribute "nickname"' do
|
167
|
+
it 'should work' do
|
168
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
169
|
+
end
|
170
|
+
end
|
171
|
+
|
172
|
+
describe 'test attribute "original_balance"' do
|
173
|
+
it 'should work' do
|
174
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
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
|
197
|
+
it 'should work' do
|
198
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
describe 'test attribute "subtype"' do
|
203
|
+
it 'should work' do
|
204
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
describe 'test attribute "type"' 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
|
+
|
214
|
+
end
|
@@ -145,6 +145,12 @@ describe MxPlatformRuby::AccountResponse do
|
|
145
145
|
end
|
146
146
|
end
|
147
147
|
|
148
|
+
describe 'test attribute "is_business"' 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
|
+
|
148
154
|
describe 'test attribute "is_closed"' do
|
149
155
|
it 'should work' do
|
150
156
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -157,6 +163,12 @@ describe MxPlatformRuby::AccountResponse do
|
|
157
163
|
end
|
158
164
|
end
|
159
165
|
|
166
|
+
describe 'test attribute "is_manual"' do
|
167
|
+
it 'should work' do
|
168
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
169
|
+
end
|
170
|
+
end
|
171
|
+
|
160
172
|
describe 'test attribute "last_payment"' do
|
161
173
|
it 'should work' do
|
162
174
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -259,6 +271,12 @@ describe MxPlatformRuby::AccountResponse do
|
|
259
271
|
end
|
260
272
|
end
|
261
273
|
|
274
|
+
describe 'test attribute "property_type"' do
|
275
|
+
it 'should work' do
|
276
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
277
|
+
end
|
278
|
+
end
|
279
|
+
|
262
280
|
describe 'test attribute "routing_number"' do
|
263
281
|
it 'should work' do
|
264
282
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -31,6 +31,18 @@ describe MxPlatformRuby::InstitutionResponse do
|
|
31
31
|
end
|
32
32
|
end
|
33
33
|
|
34
|
+
describe 'test attribute "forgot_password_url"' 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 "forgot_username_url"' 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
|
+
|
34
46
|
describe 'test attribute "instructional_text"' do
|
35
47
|
it 'should work' do
|
36
48
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -85,6 +97,12 @@ describe MxPlatformRuby::InstitutionResponse do
|
|
85
97
|
end
|
86
98
|
end
|
87
99
|
|
100
|
+
describe 'test attribute "trouble_signing_in_url"' 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
|
+
|
88
106
|
describe 'test attribute "url"' do
|
89
107
|
it 'should work' do
|
90
108
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
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.18.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-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -62,6 +62,8 @@ files:
|
|
62
62
|
- LICENSE
|
63
63
|
- README.md
|
64
64
|
- Rakefile
|
65
|
+
- docs/AccountCreateRequest.md
|
66
|
+
- docs/AccountCreateRequestBody.md
|
65
67
|
- docs/AccountNumberResponse.md
|
66
68
|
- docs/AccountNumbersResponseBody.md
|
67
69
|
- docs/AccountOwnerResponse.md
|
@@ -187,6 +189,8 @@ files:
|
|
187
189
|
- lib/mx-platform-ruby/api_client.rb
|
188
190
|
- lib/mx-platform-ruby/api_error.rb
|
189
191
|
- lib/mx-platform-ruby/configuration.rb
|
192
|
+
- lib/mx-platform-ruby/models/account_create_request.rb
|
193
|
+
- lib/mx-platform-ruby/models/account_create_request_body.rb
|
190
194
|
- lib/mx-platform-ruby/models/account_number_response.rb
|
191
195
|
- lib/mx-platform-ruby/models/account_numbers_response_body.rb
|
192
196
|
- lib/mx-platform-ruby/models/account_owner_response.rb
|
@@ -314,6 +318,8 @@ files:
|
|
314
318
|
- spec/api/mx_platform_api_spec.rb
|
315
319
|
- spec/api_client_spec.rb
|
316
320
|
- spec/configuration_spec.rb
|
321
|
+
- spec/models/account_create_request_body_spec.rb
|
322
|
+
- spec/models/account_create_request_spec.rb
|
317
323
|
- spec/models/account_number_response_spec.rb
|
318
324
|
- spec/models/account_numbers_response_body_spec.rb
|
319
325
|
- spec/models/account_owner_response_spec.rb
|
@@ -461,123 +467,125 @@ test_files:
|
|
461
467
|
- spec/api/mx_platform_api_spec.rb
|
462
468
|
- spec/api_client_spec.rb
|
463
469
|
- spec/configuration_spec.rb
|
464
|
-
- spec/models/
|
465
|
-
- spec/models/authorization_code_request_spec.rb
|
466
|
-
- spec/models/payment_processor_authorization_code_request_spec.rb
|
467
|
-
- spec/models/tag_update_request_body_spec.rb
|
468
|
-
- spec/models/transaction_rule_response_spec.rb
|
469
|
-
- spec/models/institution_response_body_spec.rb
|
470
|
-
- spec/models/member_resume_request_spec.rb
|
471
|
-
- spec/models/category_create_request_body_spec.rb
|
472
|
-
- spec/models/challenge_response_spec.rb
|
473
|
-
- spec/models/category_create_request_spec.rb
|
474
|
-
- spec/models/tag_response_spec.rb
|
475
|
-
- spec/models/accounts_response_body_spec.rb
|
470
|
+
- spec/models/user_response_body_spec.rb
|
476
471
|
- spec/models/user_response_spec.rb
|
477
|
-
- spec/models/
|
478
|
-
- spec/models/
|
479
|
-
- spec/models/
|
480
|
-
- spec/models/enhance_transactions_request_spec.rb
|
481
|
-
- spec/models/users_response_body_spec.rb
|
482
|
-
- spec/models/tax_documents_response_body_spec.rb
|
483
|
-
- spec/models/tagging_response_spec.rb
|
484
|
-
- spec/models/connect_widget_request_spec.rb
|
485
|
-
- spec/models/members_response_body_spec.rb
|
486
|
-
- spec/models/connect_widget_response_spec.rb
|
487
|
-
- spec/models/payment_processor_authorization_code_response_body_spec.rb
|
488
|
-
- spec/models/holding_response_spec.rb
|
489
|
-
- spec/models/transaction_rule_response_body_spec.rb
|
490
|
-
- spec/models/payment_processor_authorization_code_response_spec.rb
|
491
|
-
- spec/models/managed_member_update_request_body_spec.rb
|
492
|
-
- spec/models/member_resume_request_body_spec.rb
|
493
|
-
- spec/models/credential_request_spec.rb
|
472
|
+
- spec/models/category_update_request_body_spec.rb
|
473
|
+
- spec/models/account_response_spec.rb
|
474
|
+
- spec/models/enhance_transaction_response_spec.rb
|
494
475
|
- spec/models/managed_account_update_request_body_spec.rb
|
476
|
+
- spec/models/o_auth_window_response_spec.rb
|
477
|
+
- spec/models/tag_create_request_spec.rb
|
478
|
+
- spec/models/widget_request_spec.rb
|
479
|
+
- spec/models/user_update_request_spec.rb
|
480
|
+
- spec/models/payment_processor_authorization_code_request_body_spec.rb
|
481
|
+
- spec/models/enhance_transactions_response_body_spec.rb
|
482
|
+
- spec/models/transaction_response_spec.rb
|
483
|
+
- spec/models/connect_widget_response_spec.rb
|
484
|
+
- spec/models/institution_response_body_spec.rb
|
485
|
+
- spec/models/category_update_request_spec.rb
|
486
|
+
- spec/models/member_response_body_spec.rb
|
487
|
+
- spec/models/account_number_response_spec.rb
|
488
|
+
- spec/models/authorization_code_response_spec.rb
|
495
489
|
- spec/models/transaction_update_request_body_spec.rb
|
496
|
-
- spec/models/institution_response_spec.rb
|
497
|
-
- spec/models/widget_request_body_spec.rb
|
498
|
-
- spec/models/account_owners_response_body_spec.rb
|
499
|
-
- spec/models/managed_transaction_update_request_body_spec.rb
|
500
|
-
- spec/models/tagging_response_body_spec.rb
|
501
|
-
- spec/models/managed_account_update_request_spec.rb
|
502
|
-
- spec/models/tagging_create_request_spec.rb
|
503
|
-
- spec/models/merchant_location_response_body_spec.rb
|
504
|
-
- spec/models/tag_create_request_body_spec.rb
|
505
|
-
- spec/models/image_option_response_spec.rb
|
506
|
-
- spec/models/credentials_response_body_spec.rb
|
507
|
-
- spec/models/merchant_location_response_spec.rb
|
508
|
-
- spec/models/enhance_transaction_response_spec.rb
|
509
490
|
- spec/models/merchant_response_body_spec.rb
|
510
|
-
- spec/models/
|
491
|
+
- spec/models/institutions_response_body_spec.rb
|
492
|
+
- spec/models/managed_member_update_request_body_spec.rb
|
493
|
+
- spec/models/option_response_spec.rb
|
494
|
+
- spec/models/user_update_request_body_spec.rb
|
495
|
+
- spec/models/transaction_update_request_spec.rb
|
496
|
+
- spec/models/transaction_rule_response_body_spec.rb
|
497
|
+
- spec/models/pagination_response_spec.rb
|
498
|
+
- spec/models/transaction_rule_create_request_spec.rb
|
511
499
|
- spec/models/transaction_response_body_spec.rb
|
512
|
-
- spec/models/
|
513
|
-
- spec/models/
|
514
|
-
- spec/models/
|
500
|
+
- spec/models/members_response_body_spec.rb
|
501
|
+
- spec/models/managed_account_update_request_spec.rb
|
502
|
+
- spec/models/tagging_response_spec.rb
|
503
|
+
- spec/models/category_response_body_spec.rb
|
515
504
|
- spec/models/connect_widget_request_body_spec.rb
|
516
|
-
- spec/models/
|
517
|
-
- spec/models/
|
518
|
-
- spec/models/
|
519
|
-
- spec/models/
|
520
|
-
- spec/models/transaction_response_spec.rb
|
521
|
-
- spec/models/payment_processor_authorization_code_request_body_spec.rb
|
522
|
-
- spec/models/managed_member_create_request_spec.rb
|
523
|
-
- spec/models/authorization_code_response_body_spec.rb
|
524
|
-
- spec/models/pagination_response_spec.rb
|
525
|
-
- spec/models/merchant_response_spec.rb
|
526
|
-
- spec/models/category_update_request_body_spec.rb
|
527
|
-
- spec/models/transaction_update_request_spec.rb
|
528
|
-
- spec/models/account_owner_response_spec.rb
|
529
|
-
- spec/models/account_numbers_response_body_spec.rb
|
530
|
-
- spec/models/tax_document_response_spec.rb
|
531
|
-
- spec/models/enhance_transactions_response_body_spec.rb
|
505
|
+
- spec/models/managed_member_update_request_spec.rb
|
506
|
+
- spec/models/member_status_response_body_spec.rb
|
507
|
+
- spec/models/credential_response_spec.rb
|
508
|
+
- spec/models/account_owners_response_body_spec.rb
|
532
509
|
- spec/models/member_response_spec.rb
|
533
|
-
- spec/models/
|
510
|
+
- spec/models/merchants_response_body_spec.rb
|
534
511
|
- spec/models/enhance_transactions_request_body_spec.rb
|
535
|
-
- spec/models/member_create_request_spec.rb
|
536
|
-
- spec/models/transaction_rule_update_request_spec.rb
|
537
|
-
- spec/models/transaction_rules_response_body_spec.rb
|
538
|
-
- spec/models/institutions_response_body_spec.rb
|
539
|
-
- spec/models/managed_transaction_update_request_spec.rb
|
540
|
-
- spec/models/tag_create_request_spec.rb
|
541
|
-
- spec/models/managed_account_create_request_body_spec.rb
|
542
512
|
- spec/models/taggings_response_body_spec.rb
|
543
|
-
- spec/models/
|
544
|
-
- spec/models/
|
545
|
-
- spec/models/
|
546
|
-
- spec/models/transactions_response_body_spec.rb
|
547
|
-
- spec/models/transaction_rule_create_request_spec.rb
|
548
|
-
- spec/models/account_update_request_spec.rb
|
549
|
-
- spec/models/account_number_response_spec.rb
|
550
|
-
- spec/models/statement_response_spec.rb
|
551
|
-
- spec/models/tag_update_request_spec.rb
|
552
|
-
- spec/models/credential_response_spec.rb
|
553
|
-
- spec/models/tagging_update_request_spec.rb
|
554
|
-
- spec/models/authorization_code_response_spec.rb
|
555
|
-
- spec/models/connect_widget_response_body_spec.rb
|
556
|
-
- spec/models/managed_member_update_request_spec.rb
|
513
|
+
- spec/models/account_create_request_spec.rb
|
514
|
+
- spec/models/payment_processor_authorization_code_response_spec.rb
|
515
|
+
- spec/models/transaction_rule_response_spec.rb
|
557
516
|
- spec/models/member_update_request_spec.rb
|
558
|
-
- spec/models/
|
559
|
-
- spec/models/
|
517
|
+
- spec/models/credentials_response_body_spec.rb
|
518
|
+
- spec/models/statements_response_body_spec.rb
|
560
519
|
- spec/models/category_response_spec.rb
|
520
|
+
- spec/models/managed_member_create_request_body_spec.rb
|
521
|
+
- spec/models/widget_request_body_spec.rb
|
522
|
+
- spec/models/challenge_response_spec.rb
|
523
|
+
- spec/models/tag_update_request_spec.rb
|
524
|
+
- spec/models/statement_response_spec.rb
|
525
|
+
- spec/models/merchant_location_response_spec.rb
|
526
|
+
- spec/models/account_owner_response_spec.rb
|
527
|
+
- spec/models/accounts_response_body_spec.rb
|
528
|
+
- spec/models/transaction_rule_update_request_spec.rb
|
529
|
+
- spec/models/managed_transaction_update_request_body_spec.rb
|
530
|
+
- spec/models/authorization_code_request_body_spec.rb
|
531
|
+
- spec/models/widget_response_spec.rb
|
532
|
+
- spec/models/tagging_response_body_spec.rb
|
533
|
+
- spec/models/tagging_update_request_body_spec.rb
|
534
|
+
- spec/models/widget_response_body_spec.rb
|
535
|
+
- spec/models/account_update_request_spec.rb
|
536
|
+
- spec/models/authorization_code_response_body_spec.rb
|
537
|
+
- spec/models/user_create_request_spec.rb
|
538
|
+
- spec/models/member_status_response_spec.rb
|
539
|
+
- spec/models/transaction_rule_create_request_body_spec.rb
|
540
|
+
- spec/models/connect_widget_response_body_spec.rb
|
541
|
+
- spec/models/holding_response_body_spec.rb
|
542
|
+
- spec/models/credential_request_spec.rb
|
543
|
+
- spec/models/account_create_request_body_spec.rb
|
544
|
+
- spec/models/account_response_body_spec.rb
|
545
|
+
- spec/models/managed_transaction_create_request_spec.rb
|
546
|
+
- spec/models/holdings_response_body_spec.rb
|
547
|
+
- spec/models/member_resume_request_spec.rb
|
548
|
+
- spec/models/tags_response_body_spec.rb
|
549
|
+
- spec/models/managed_account_create_request_body_spec.rb
|
550
|
+
- spec/models/user_create_request_body_spec.rb
|
561
551
|
- spec/models/managed_transaction_create_request_body_spec.rb
|
552
|
+
- spec/models/tax_document_response_body_spec.rb
|
553
|
+
- spec/models/category_create_request_body_spec.rb
|
554
|
+
- spec/models/payment_processor_authorization_code_response_body_spec.rb
|
555
|
+
- spec/models/enhance_transactions_request_spec.rb
|
556
|
+
- spec/models/member_create_request_spec.rb
|
557
|
+
- spec/models/member_update_request_body_spec.rb
|
558
|
+
- spec/models/transaction_rule_update_request_body_spec.rb
|
559
|
+
- spec/models/authorization_code_request_spec.rb
|
562
560
|
- spec/models/o_auth_window_response_body_spec.rb
|
563
|
-
- spec/models/
|
561
|
+
- spec/models/transaction_rules_response_body_spec.rb
|
564
562
|
- spec/models/categories_response_body_spec.rb
|
565
|
-
- spec/models/
|
566
|
-
- spec/models/
|
567
|
-
- spec/models/
|
568
|
-
- spec/models/
|
569
|
-
- spec/models/category_update_request_spec.rb
|
570
|
-
- spec/models/member_response_body_spec.rb
|
563
|
+
- spec/models/connect_widget_request_spec.rb
|
564
|
+
- spec/models/account_numbers_response_body_spec.rb
|
565
|
+
- spec/models/managed_transaction_update_request_spec.rb
|
566
|
+
- spec/models/tax_document_response_spec.rb
|
571
567
|
- spec/models/statement_response_body_spec.rb
|
572
|
-
- spec/models/holdings_response_body_spec.rb
|
573
|
-
- spec/models/category_response_body_spec.rb
|
574
|
-
- spec/models/statements_response_body_spec.rb
|
575
|
-
- spec/models/holding_response_body_spec.rb
|
576
|
-
- spec/models/widget_response_body_spec.rb
|
577
|
-
- spec/models/account_response_spec.rb
|
578
|
-
- spec/models/transaction_rule_create_request_body_spec.rb
|
579
|
-
- spec/models/widget_response_spec.rb
|
580
|
-
- spec/models/tagging_update_request_body_spec.rb
|
581
568
|
- spec/models/member_create_request_body_spec.rb
|
569
|
+
- spec/models/transactions_response_body_spec.rb
|
570
|
+
- spec/models/merchant_response_spec.rb
|
571
|
+
- spec/models/managed_account_create_request_spec.rb
|
572
|
+
- spec/models/tax_documents_response_body_spec.rb
|
573
|
+
- spec/models/tagging_create_request_body_spec.rb
|
574
|
+
- spec/models/tag_create_request_body_spec.rb
|
575
|
+
- spec/models/tagging_update_request_spec.rb
|
576
|
+
- spec/models/tag_response_body_spec.rb
|
577
|
+
- spec/models/users_response_body_spec.rb
|
578
|
+
- spec/models/tag_response_spec.rb
|
579
|
+
- spec/models/institution_response_spec.rb
|
580
|
+
- spec/models/account_update_request_body_spec.rb
|
582
581
|
- spec/models/challenges_response_body_spec.rb
|
582
|
+
- spec/models/tagging_create_request_spec.rb
|
583
|
+
- spec/models/tag_update_request_body_spec.rb
|
584
|
+
- spec/models/merchant_location_response_body_spec.rb
|
585
|
+
- spec/models/category_create_request_spec.rb
|
586
|
+
- spec/models/managed_member_create_request_spec.rb
|
587
|
+
- spec/models/holding_response_spec.rb
|
588
|
+
- spec/models/payment_processor_authorization_code_request_spec.rb
|
589
|
+
- spec/models/member_resume_request_body_spec.rb
|
590
|
+
- spec/models/image_option_response_spec.rb
|
583
591
|
- spec/spec_helper.rb
|