mx-platform-ruby 0.41.0 → 0.43.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/MicrodepositRequest.md +30 -0
- data/docs/MicrodepositRequestBody.md +18 -0
- data/docs/MicrodepositResponse.md +44 -0
- data/docs/MicrodepositResponseBody.md +18 -0
- data/docs/MicrodepositVerifyRequest.md +20 -0
- data/docs/MicrodepositVerifyRequestBody.md +18 -0
- data/docs/MicrodepositsApi.md +371 -0
- data/docs/MicrodepositsResponseBody.md +20 -0
- data/docs/TransactionCreateRequest.md +40 -0
- data/docs/TransactionCreateRequestBody.md +18 -0
- data/docs/TransactionCreateResponseBody.md +104 -0
- data/docs/TransactionsApi.md +82 -0
- data/lib/mx-platform-ruby/api/microdeposits_api.rb +365 -0
- data/lib/mx-platform-ruby/api/transactions_api.rb +102 -0
- data/lib/mx-platform-ruby/models/microdeposit_request.rb +289 -0
- data/lib/mx-platform-ruby/models/microdeposit_request_body.rb +214 -0
- data/lib/mx-platform-ruby/models/microdeposit_response.rb +331 -0
- data/lib/mx-platform-ruby/models/microdeposit_response_body.rb +214 -0
- data/lib/mx-platform-ruby/models/microdeposit_verify_request.rb +223 -0
- data/lib/mx-platform-ruby/models/microdeposit_verify_request_body.rb +214 -0
- data/lib/mx-platform-ruby/models/microdeposits_response_body.rb +225 -0
- data/lib/mx-platform-ruby/models/transaction_create_request.rb +344 -0
- data/lib/mx-platform-ruby/models/transaction_create_request_body.rb +214 -0
- data/lib/mx-platform-ruby/models/transaction_create_response_body.rb +642 -0
- data/lib/mx-platform-ruby/version.rb +1 -1
- data/lib/mx-platform-ruby.rb +12 -0
- data/openapi/config.yml +1 -1
- data/spec/api/microdeposits_api_spec.rb +99 -0
- data/spec/api/transactions_api_spec.rb +49 -0
- data/spec/models/microdeposit_request_body_spec.rb +34 -0
- data/spec/models/microdeposit_request_spec.rb +70 -0
- data/spec/models/microdeposit_response_body_spec.rb +34 -0
- data/spec/models/microdeposit_response_spec.rb +112 -0
- data/spec/models/microdeposit_verify_request_body_spec.rb +34 -0
- data/spec/models/microdeposit_verify_request_spec.rb +40 -0
- data/spec/models/microdeposits_response_body_spec.rb +40 -0
- data/spec/models/transaction_create_request_body_spec.rb +34 -0
- data/spec/models/transaction_create_request_spec.rb +100 -0
- data/spec/models/transaction_create_response_body_spec.rb +292 -0
- metadata +50 -2
@@ -0,0 +1,292 @@
|
|
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::TransactionCreateResponseBody
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MxPlatformRuby::TransactionCreateResponseBody do
|
21
|
+
let(:instance) { MxPlatformRuby::TransactionCreateResponseBody.new }
|
22
|
+
|
23
|
+
describe 'test an instance of TransactionCreateResponseBody' do
|
24
|
+
it 'should create an instance of TransactionCreateResponseBody' do
|
25
|
+
expect(instance).to be_instance_of(MxPlatformRuby::TransactionCreateResponseBody)
|
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 "account_id"' 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 "category"' 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 "category_guid"' 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 "check_number_string"' 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 "created_at"' 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 "currency_code"' 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 "date"' 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 "description"' 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 "extended_transaction_type"' 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 "guid"' 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 "id"' 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 "is_bill_pay"' 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 "is_direct_deposit"' 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 "is_expense"' 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
|
+
describe 'test attribute "is_fee"' do
|
125
|
+
it 'should work' do
|
126
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
describe 'test attribute "is_income"' do
|
131
|
+
it 'should work' do
|
132
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
describe 'test attribute "is_international"' do
|
137
|
+
it 'should work' do
|
138
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
139
|
+
end
|
140
|
+
end
|
141
|
+
|
142
|
+
describe 'test attribute "is_manual"' do
|
143
|
+
it 'should work' do
|
144
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
148
|
+
describe 'test attribute "is_overdraft_fee"' do
|
149
|
+
it 'should work' do
|
150
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
154
|
+
describe 'test attribute "is_payroll_advance"' do
|
155
|
+
it 'should work' do
|
156
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
157
|
+
end
|
158
|
+
end
|
159
|
+
|
160
|
+
describe 'test attribute "is_recurring"' do
|
161
|
+
it 'should work' do
|
162
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
describe 'test attribute "is_subscription"' do
|
167
|
+
it 'should work' do
|
168
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
169
|
+
end
|
170
|
+
end
|
171
|
+
|
172
|
+
describe 'test attribute "latitude"' do
|
173
|
+
it 'should work' do
|
174
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
describe 'test attribute "localized_description"' do
|
179
|
+
it 'should work' do
|
180
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
181
|
+
end
|
182
|
+
end
|
183
|
+
|
184
|
+
describe 'test attribute "localized_memo"' do
|
185
|
+
it 'should work' do
|
186
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
187
|
+
end
|
188
|
+
end
|
189
|
+
|
190
|
+
describe 'test attribute "longitude"' do
|
191
|
+
it 'should work' do
|
192
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
describe 'test attribute "member_guid"' do
|
197
|
+
it 'should work' do
|
198
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
describe 'test attribute "member_is_managed_by_user"' do
|
203
|
+
it 'should work' do
|
204
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
describe 'test attribute "memo"' do
|
209
|
+
it 'should work' do
|
210
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
211
|
+
end
|
212
|
+
end
|
213
|
+
|
214
|
+
describe 'test attribute "merchant_category_code"' do
|
215
|
+
it 'should work' do
|
216
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
217
|
+
end
|
218
|
+
end
|
219
|
+
|
220
|
+
describe 'test attribute "merchant_guid"' do
|
221
|
+
it 'should work' do
|
222
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
223
|
+
end
|
224
|
+
end
|
225
|
+
|
226
|
+
describe 'test attribute "merchant_location_guid"' do
|
227
|
+
it 'should work' do
|
228
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
229
|
+
end
|
230
|
+
end
|
231
|
+
|
232
|
+
describe 'test attribute "metadata"' do
|
233
|
+
it 'should work' do
|
234
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
238
|
+
describe 'test attribute "original_description"' do
|
239
|
+
it 'should work' do
|
240
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
241
|
+
end
|
242
|
+
end
|
243
|
+
|
244
|
+
describe 'test attribute "posted_at"' do
|
245
|
+
it 'should work' do
|
246
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
247
|
+
end
|
248
|
+
end
|
249
|
+
|
250
|
+
describe 'test attribute "status"' do
|
251
|
+
it 'should work' do
|
252
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
253
|
+
end
|
254
|
+
end
|
255
|
+
|
256
|
+
describe 'test attribute "top_level_category"' do
|
257
|
+
it 'should work' do
|
258
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
259
|
+
end
|
260
|
+
end
|
261
|
+
|
262
|
+
describe 'test attribute "transacted_at"' do
|
263
|
+
it 'should work' do
|
264
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
265
|
+
end
|
266
|
+
end
|
267
|
+
|
268
|
+
describe 'test attribute "type"' do
|
269
|
+
it 'should work' do
|
270
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
271
|
+
end
|
272
|
+
end
|
273
|
+
|
274
|
+
describe 'test attribute "updated_at"' do
|
275
|
+
it 'should work' do
|
276
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
277
|
+
end
|
278
|
+
end
|
279
|
+
|
280
|
+
describe 'test attribute "user_guid"' do
|
281
|
+
it 'should work' do
|
282
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
283
|
+
end
|
284
|
+
end
|
285
|
+
|
286
|
+
describe 'test attribute "user_id"' do
|
287
|
+
it 'should work' do
|
288
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
289
|
+
end
|
290
|
+
end
|
291
|
+
|
292
|
+
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.43.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MX
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -167,6 +167,14 @@ files:
|
|
167
167
|
- docs/MerchantResponse.md
|
168
168
|
- docs/MerchantResponseBody.md
|
169
169
|
- docs/MerchantsResponseBody.md
|
170
|
+
- docs/MicrodepositRequest.md
|
171
|
+
- docs/MicrodepositRequestBody.md
|
172
|
+
- docs/MicrodepositResponse.md
|
173
|
+
- docs/MicrodepositResponseBody.md
|
174
|
+
- docs/MicrodepositVerifyRequest.md
|
175
|
+
- docs/MicrodepositVerifyRequestBody.md
|
176
|
+
- docs/MicrodepositsApi.md
|
177
|
+
- docs/MicrodepositsResponseBody.md
|
170
178
|
- docs/MonthlyCashFlowProfileRequest.md
|
171
179
|
- docs/MonthlyCashFlowProfileRequestBody.md
|
172
180
|
- docs/MonthlyCashFlowResponse.md
|
@@ -222,6 +230,9 @@ files:
|
|
222
230
|
- docs/TaxDocumentResponse.md
|
223
231
|
- docs/TaxDocumentResponseBody.md
|
224
232
|
- docs/TaxDocumentsResponseBody.md
|
233
|
+
- docs/TransactionCreateRequest.md
|
234
|
+
- docs/TransactionCreateRequestBody.md
|
235
|
+
- docs/TransactionCreateResponseBody.md
|
225
236
|
- docs/TransactionResponse.md
|
226
237
|
- docs/TransactionResponseBody.md
|
227
238
|
- docs/TransactionRuleCreateRequest.md
|
@@ -233,6 +244,7 @@ files:
|
|
233
244
|
- docs/TransactionRulesResponseBody.md
|
234
245
|
- docs/TransactionUpdateRequest.md
|
235
246
|
- docs/TransactionUpdateRequestBody.md
|
247
|
+
- docs/TransactionsApi.md
|
236
248
|
- docs/TransactionsResponseBody.md
|
237
249
|
- docs/UpdateGoalRequest.md
|
238
250
|
- docs/UpdateGoalRequestBody.md
|
@@ -251,8 +263,10 @@ files:
|
|
251
263
|
- lib/mx-platform-ruby/api/budgets_api.rb
|
252
264
|
- lib/mx-platform-ruby/api/goals_api.rb
|
253
265
|
- lib/mx-platform-ruby/api/insights_api.rb
|
266
|
+
- lib/mx-platform-ruby/api/microdeposits_api.rb
|
254
267
|
- lib/mx-platform-ruby/api/mx_platform_api.rb
|
255
268
|
- lib/mx-platform-ruby/api/spending_plan_api.rb
|
269
|
+
- lib/mx-platform-ruby/api/transactions_api.rb
|
256
270
|
- lib/mx-platform-ruby/api_client.rb
|
257
271
|
- lib/mx-platform-ruby/api_error.rb
|
258
272
|
- lib/mx-platform-ruby/configuration.rb
|
@@ -344,6 +358,13 @@ files:
|
|
344
358
|
- lib/mx-platform-ruby/models/merchant_response.rb
|
345
359
|
- lib/mx-platform-ruby/models/merchant_response_body.rb
|
346
360
|
- lib/mx-platform-ruby/models/merchants_response_body.rb
|
361
|
+
- lib/mx-platform-ruby/models/microdeposit_request.rb
|
362
|
+
- lib/mx-platform-ruby/models/microdeposit_request_body.rb
|
363
|
+
- lib/mx-platform-ruby/models/microdeposit_response.rb
|
364
|
+
- lib/mx-platform-ruby/models/microdeposit_response_body.rb
|
365
|
+
- lib/mx-platform-ruby/models/microdeposit_verify_request.rb
|
366
|
+
- lib/mx-platform-ruby/models/microdeposit_verify_request_body.rb
|
367
|
+
- lib/mx-platform-ruby/models/microdeposits_response_body.rb
|
347
368
|
- lib/mx-platform-ruby/models/monthly_cash_flow_profile_request.rb
|
348
369
|
- lib/mx-platform-ruby/models/monthly_cash_flow_profile_request_body.rb
|
349
370
|
- lib/mx-platform-ruby/models/monthly_cash_flow_response.rb
|
@@ -397,6 +418,9 @@ files:
|
|
397
418
|
- lib/mx-platform-ruby/models/tax_document_response.rb
|
398
419
|
- lib/mx-platform-ruby/models/tax_document_response_body.rb
|
399
420
|
- lib/mx-platform-ruby/models/tax_documents_response_body.rb
|
421
|
+
- lib/mx-platform-ruby/models/transaction_create_request.rb
|
422
|
+
- lib/mx-platform-ruby/models/transaction_create_request_body.rb
|
423
|
+
- lib/mx-platform-ruby/models/transaction_create_response_body.rb
|
400
424
|
- lib/mx-platform-ruby/models/transaction_response.rb
|
401
425
|
- lib/mx-platform-ruby/models/transaction_response_body.rb
|
402
426
|
- lib/mx-platform-ruby/models/transaction_rule_create_request.rb
|
@@ -430,8 +454,10 @@ files:
|
|
430
454
|
- spec/api/budgets_api_spec.rb
|
431
455
|
- spec/api/goals_api_spec.rb
|
432
456
|
- spec/api/insights_api_spec.rb
|
457
|
+
- spec/api/microdeposits_api_spec.rb
|
433
458
|
- spec/api/mx_platform_api_spec.rb
|
434
459
|
- spec/api/spending_plan_api_spec.rb
|
460
|
+
- spec/api/transactions_api_spec.rb
|
435
461
|
- spec/api_client_spec.rb
|
436
462
|
- spec/configuration_spec.rb
|
437
463
|
- spec/models/account_create_request_body_spec.rb
|
@@ -522,6 +548,13 @@ files:
|
|
522
548
|
- spec/models/merchant_response_body_spec.rb
|
523
549
|
- spec/models/merchant_response_spec.rb
|
524
550
|
- spec/models/merchants_response_body_spec.rb
|
551
|
+
- spec/models/microdeposit_request_body_spec.rb
|
552
|
+
- spec/models/microdeposit_request_spec.rb
|
553
|
+
- spec/models/microdeposit_response_body_spec.rb
|
554
|
+
- spec/models/microdeposit_response_spec.rb
|
555
|
+
- spec/models/microdeposit_verify_request_body_spec.rb
|
556
|
+
- spec/models/microdeposit_verify_request_spec.rb
|
557
|
+
- spec/models/microdeposits_response_body_spec.rb
|
525
558
|
- spec/models/monthly_cash_flow_profile_request_body_spec.rb
|
526
559
|
- spec/models/monthly_cash_flow_profile_request_spec.rb
|
527
560
|
- spec/models/monthly_cash_flow_response_body_spec.rb
|
@@ -575,6 +608,9 @@ files:
|
|
575
608
|
- spec/models/tax_document_response_body_spec.rb
|
576
609
|
- spec/models/tax_document_response_spec.rb
|
577
610
|
- spec/models/tax_documents_response_body_spec.rb
|
611
|
+
- spec/models/transaction_create_request_body_spec.rb
|
612
|
+
- spec/models/transaction_create_request_spec.rb
|
613
|
+
- spec/models/transaction_create_response_body_spec.rb
|
578
614
|
- spec/models/transaction_response_body_spec.rb
|
579
615
|
- spec/models/transaction_response_spec.rb
|
580
616
|
- spec/models/transaction_rule_create_request_body_spec.rb
|
@@ -627,9 +663,11 @@ summary: MX Platform API Ruby Gem
|
|
627
663
|
test_files:
|
628
664
|
- spec/api/goals_api_spec.rb
|
629
665
|
- spec/api/spending_plan_api_spec.rb
|
666
|
+
- spec/api/microdeposits_api_spec.rb
|
630
667
|
- spec/api/insights_api_spec.rb
|
631
668
|
- spec/api/budgets_api_spec.rb
|
632
669
|
- spec/api/mx_platform_api_spec.rb
|
670
|
+
- spec/api/transactions_api_spec.rb
|
633
671
|
- spec/api_client_spec.rb
|
634
672
|
- spec/configuration_spec.rb
|
635
673
|
- spec/models/monthly_cash_flow_response_body_spec.rb
|
@@ -638,6 +676,7 @@ test_files:
|
|
638
676
|
- spec/models/statement_response_body_spec.rb
|
639
677
|
- spec/models/managed_transaction_update_request_body_spec.rb
|
640
678
|
- spec/models/tagging_response_spec.rb
|
679
|
+
- spec/models/microdeposit_response_spec.rb
|
641
680
|
- spec/models/budget_update_request_spec.rb
|
642
681
|
- spec/models/account_owners_response_body_spec.rb
|
643
682
|
- spec/models/spending_plan_iteration_item_create_request_body_spec.rb
|
@@ -669,6 +708,7 @@ test_files:
|
|
669
708
|
- spec/models/challenge_response_spec.rb
|
670
709
|
- spec/models/holding_response_spec.rb
|
671
710
|
- spec/models/goal_request_body_spec.rb
|
711
|
+
- spec/models/microdeposit_verify_request_body_spec.rb
|
672
712
|
- spec/models/managed_member_create_request_body_spec.rb
|
673
713
|
- spec/models/spending_plan_accounts_response_spec.rb
|
674
714
|
- spec/models/connect_widget_request_body_spec.rb
|
@@ -701,6 +741,7 @@ test_files:
|
|
701
741
|
- spec/models/challenges_response_body_spec.rb
|
702
742
|
- spec/models/tax_document_response_spec.rb
|
703
743
|
- spec/models/insights_response_body_spec.rb
|
744
|
+
- spec/models/microdeposit_request_body_spec.rb
|
704
745
|
- spec/models/transaction_rule_create_request_body_spec.rb
|
705
746
|
- spec/models/goal_request_spec.rb
|
706
747
|
- spec/models/update_goal_request_body_spec.rb
|
@@ -736,9 +777,11 @@ test_files:
|
|
736
777
|
- spec/models/budget_create_request_spec.rb
|
737
778
|
- spec/models/o_auth_window_response_body_spec.rb
|
738
779
|
- spec/models/widget_request_body_spec.rb
|
780
|
+
- spec/models/transaction_create_request_body_spec.rb
|
739
781
|
- spec/models/goals_response_spec.rb
|
740
782
|
- spec/models/tag_update_request_body_spec.rb
|
741
783
|
- spec/models/update_goal_request_spec.rb
|
784
|
+
- spec/models/transaction_create_request_spec.rb
|
742
785
|
- spec/models/users_response_body_spec.rb
|
743
786
|
- spec/models/insight_update_request_spec.rb
|
744
787
|
- spec/models/widget_response_body_spec.rb
|
@@ -753,6 +796,7 @@ test_files:
|
|
753
796
|
- spec/models/monthly_cash_flow_response_spec.rb
|
754
797
|
- spec/models/managed_account_update_request_spec.rb
|
755
798
|
- spec/models/credit_card_product_response_spec.rb
|
799
|
+
- spec/models/transaction_create_response_body_spec.rb
|
756
800
|
- spec/models/transaction_update_request_spec.rb
|
757
801
|
- spec/models/authorization_code_response_body_spec.rb
|
758
802
|
- spec/models/account_create_request_spec.rb
|
@@ -766,12 +810,14 @@ test_files:
|
|
766
810
|
- spec/models/user_create_request_spec.rb
|
767
811
|
- spec/models/member_resume_request_spec.rb
|
768
812
|
- spec/models/reward_response_body_spec.rb
|
813
|
+
- spec/models/microdeposit_verify_request_spec.rb
|
769
814
|
- spec/models/member_create_request_spec.rb
|
770
815
|
- spec/models/member_create_request_body_spec.rb
|
771
816
|
- spec/models/spending_plan_iteration_item_response_spec.rb
|
772
817
|
- spec/models/managed_account_update_request_body_spec.rb
|
773
818
|
- spec/models/user_update_request_body_spec.rb
|
774
819
|
- spec/models/o_auth_window_response_spec.rb
|
820
|
+
- spec/models/microdeposit_request_spec.rb
|
775
821
|
- spec/models/reposition_request_body_spec.rb
|
776
822
|
- spec/models/category_update_request_body_spec.rb
|
777
823
|
- spec/models/holdings_response_body_spec.rb
|
@@ -796,6 +842,8 @@ test_files:
|
|
796
842
|
- spec/models/image_option_response_spec.rb
|
797
843
|
- spec/models/tagging_create_request_body_spec.rb
|
798
844
|
- spec/models/merchant_location_response_body_spec.rb
|
845
|
+
- spec/models/microdeposit_response_body_spec.rb
|
799
846
|
- spec/models/transaction_rules_response_body_spec.rb
|
847
|
+
- spec/models/microdeposits_response_body_spec.rb
|
800
848
|
- spec/models/insight_response_body_spec.rb
|
801
849
|
- spec/spec_helper.rb
|