budgea_client 3.0.1 → 4.0.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/budgea_openapi.json +6 -4
- data/docs/Connector.md +1 -0
- data/lib/budgea_client/models/connector.rb +15 -4
- data/lib/budgea_client/version.rb +1 -1
- data/pkg/budgea_client-3.0.1.gem +0 -0
- data/spec/api/administration_api_spec.rb +225 -23
- data/spec/api/authentication_api_spec.rb +81 -11
- data/spec/api/banks_api_spec.rb +379 -236
- data/spec/api/connections_api_spec.rb +76 -39
- data/spec/api/documents_api_spec.rb +124 -114
- data/spec/api/ocr_api_spec.rb +13 -3
- data/spec/api/oidc_api_spec.rb +14 -4
- data/spec/api/pfm_api_spec.rb +61 -51
- data/spec/api/providers_api_spec.rb +260 -238
- data/spec/api/recipients_api_spec.rb +23 -9
- data/spec/api/terms_api_spec.rb +17 -8
- data/spec/api/transfers_api_spec.rb +88 -57
- data/spec/api/users_management_api_spec.rb +25 -15
- data/spec/api/wealth_api_spec.rb +150 -24
- data/spec/api_client_spec.rb +45 -35
- data/spec/configuration_spec.rb +19 -9
- data/spec/models/access_spec.rb +16 -7
- data/spec/models/account_log_spec.rb +21 -12
- data/spec/models/account_spec.rb +59 -20
- data/spec/models/account_type_spec.rb +19 -10
- data/spec/models/alert_spec.rb +19 -10
- data/spec/models/category_spec.rb +21 -12
- data/spec/models/client_spec.rb +25 -28
- data/spec/models/connection_log_spec.rb +38 -17
- data/spec/models/connection_spec.rb +33 -12
- data/spec/models/connector_logo_spec.rb +16 -7
- data/spec/models/connector_spec.rb +18 -0
- data/spec/models/currency_spec.rb +38 -5
- data/spec/models/device_spec.rb +18 -9
- data/spec/models/document_spec.rb +37 -34
- data/spec/models/document_type_spec.rb +14 -5
- data/spec/models/field_spec.rb +32 -11
- data/spec/models/field_value_spec.rb +13 -4
- data/spec/models/file_spec.rb +15 -6
- data/spec/models/group_spec.rb +19 -10
- data/spec/models/hash_table_spec.rb +15 -6
- data/spec/models/inline_response_200_10_spec.rb +19 -4
- data/spec/models/inline_response_200_11_spec.rb +19 -4
- data/spec/models/inline_response_200_12_spec.rb +19 -4
- data/spec/models/inline_response_200_13_spec.rb +19 -4
- data/spec/models/inline_response_200_14_spec.rb +19 -4
- data/spec/models/inline_response_200_15_spec.rb +19 -4
- data/spec/models/inline_response_200_16_spec.rb +19 -4
- data/spec/models/inline_response_200_17_spec.rb +19 -4
- data/spec/models/inline_response_200_18_spec.rb +19 -4
- data/spec/models/inline_response_200_19_spec.rb +13 -4
- data/spec/models/inline_response_200_1_spec.rb +13 -4
- data/spec/models/inline_response_200_20_spec.rb +19 -4
- data/spec/models/inline_response_200_21_spec.rb +19 -4
- data/spec/models/inline_response_200_22_spec.rb +19 -4
- data/spec/models/inline_response_200_23_spec.rb +19 -4
- data/spec/models/inline_response_200_24_spec.rb +19 -4
- data/spec/models/inline_response_200_25_spec.rb +19 -4
- data/spec/models/inline_response_200_26_spec.rb +19 -4
- data/spec/models/inline_response_200_27_spec.rb +19 -4
- data/spec/models/inline_response_200_28_spec.rb +19 -4
- data/spec/models/inline_response_200_29_spec.rb +19 -4
- data/spec/models/inline_response_200_2_spec.rb +14 -5
- data/spec/models/inline_response_200_30_spec.rb +19 -4
- data/spec/models/inline_response_200_31_spec.rb +19 -4
- data/spec/models/inline_response_200_32_spec.rb +19 -4
- data/spec/models/inline_response_200_33_spec.rb +19 -4
- data/spec/models/inline_response_200_34_spec.rb +7 -1
- data/spec/models/inline_response_200_35_spec.rb +7 -1
- data/spec/models/inline_response_200_36_spec.rb +7 -1
- data/spec/models/inline_response_200_37_spec.rb +7 -1
- data/spec/models/inline_response_200_38_spec.rb +7 -1
- data/spec/models/inline_response_200_3_spec.rb +15 -12
- data/spec/models/inline_response_200_4_spec.rb +14 -17
- data/spec/models/inline_response_200_5_spec.rb +33 -6
- data/spec/models/inline_response_200_6_spec.rb +15 -12
- data/spec/models/inline_response_200_7_spec.rb +25 -4
- data/spec/models/inline_response_200_8_spec.rb +19 -4
- data/spec/models/inline_response_200_9_spec.rb +19 -4
- data/spec/models/inline_response_200_spec.rb +18 -3
- data/spec/models/investment_spec.rb +36 -27
- data/spec/models/investment_value_spec.rb +17 -8
- data/spec/models/invite_spec.rb +17 -8
- data/spec/models/locked_user_spec.rb +14 -5
- data/spec/models/oidc_whitelist_spec.rb +13 -4
- data/spec/models/pocket_spec.rb +21 -12
- data/spec/models/profile_spec.rb +23 -14
- data/spec/models/project_spec.rb +20 -11
- data/spec/models/project_type_spec.rb +14 -5
- data/spec/models/recipient_log_spec.rb +6 -0
- data/spec/models/recipient_spec.rb +44 -17
- data/spec/models/security_spec.rb +16 -7
- data/spec/models/subscription_spec.rb +28 -13
- data/spec/models/terms_of_service_spec.rb +16 -7
- data/spec/models/transaction_information_spec.rb +15 -6
- data/spec/models/transaction_spec.rb +71 -32
- data/spec/models/transactions_cluster_spec.rb +20 -11
- data/spec/models/transfer_log_spec.rb +6 -0
- data/spec/models/transfer_spec.rb +33 -18
- data/spec/models/user_alert_spec.rb +25 -16
- data/spec/models/user_spec.rb +18 -9
- data/spec/models/webhook_spec.rb +31 -10
- data/spec/spec_helper.rb +62 -2
- metadata +3 -14
- data/docs/Bank.md +0 -20
- data/docs/BankCategory.md +0 -9
- data/docs/ConnectionContact.md +0 -17
- data/lib/budgea_client/models/bank.rb +0 -335
- data/lib/budgea_client/models/bank_category.rb +0 -206
- data/lib/budgea_client/models/connection_contact.rb +0 -274
- data/spec/models/bank_category_spec.rb +0 -38
- data/spec/models/bank_spec.rb +0 -92
- data/spec/models/connection_contact_spec.rb +0 -86
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
=begin
|
|
2
|
+
#Budgea API Documentation
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
2
12
|
|
|
3
13
|
require 'spec_helper'
|
|
4
14
|
require 'json'
|
|
@@ -27,48 +37,48 @@ describe 'ProvidersApi' do
|
|
|
27
37
|
#
|
|
28
38
|
# @param [Hash] opts the optional parameters
|
|
29
39
|
# @option opts [String] :expand
|
|
30
|
-
# @return [
|
|
40
|
+
# @return [InlineResponse2008]
|
|
31
41
|
describe 'banks_get test' do
|
|
32
|
-
it
|
|
42
|
+
it 'should work' do
|
|
33
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
34
44
|
end
|
|
35
45
|
end
|
|
36
46
|
|
|
37
|
-
# unit tests for
|
|
38
|
-
# Get all links to the files associated with this
|
|
39
|
-
# This endpoint returns all links to files associated with this
|
|
40
|
-
# @param
|
|
47
|
+
# unit tests for banks_id_connector_logos_get
|
|
48
|
+
# Get all links to the files associated with this connector.
|
|
49
|
+
# This endpoint returns all links to files associated with this connector.<br><br>
|
|
50
|
+
# @param id_connector
|
|
41
51
|
# @param [Hash] opts the optional parameters
|
|
42
52
|
# @option opts [String] :expand
|
|
43
|
-
# @return [
|
|
44
|
-
describe '
|
|
45
|
-
it
|
|
53
|
+
# @return [InlineResponse20010]
|
|
54
|
+
describe 'banks_id_connector_logos_get test' do
|
|
55
|
+
it 'should work' do
|
|
46
56
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
47
57
|
end
|
|
48
58
|
end
|
|
49
59
|
|
|
50
|
-
# unit tests for
|
|
51
|
-
# Get all links to the files associated with this
|
|
52
|
-
# This endpoint returns all links to files associated with this
|
|
53
|
-
# @param
|
|
60
|
+
# unit tests for banks_id_connector_logos_main_get
|
|
61
|
+
# Get all links to the files associated with this connector.
|
|
62
|
+
# This endpoint returns all links to files associated with this connector.<br><br>
|
|
63
|
+
# @param id_connector
|
|
54
64
|
# @param [Hash] opts the optional parameters
|
|
55
65
|
# @option opts [String] :expand
|
|
56
|
-
# @return [
|
|
57
|
-
describe '
|
|
58
|
-
it
|
|
66
|
+
# @return [InlineResponse20010]
|
|
67
|
+
describe 'banks_id_connector_logos_main_get test' do
|
|
68
|
+
it 'should work' do
|
|
59
69
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
60
70
|
end
|
|
61
71
|
end
|
|
62
72
|
|
|
63
|
-
# unit tests for
|
|
64
|
-
# Get all links to the files associated with this
|
|
65
|
-
# This endpoint returns all links to files associated with this
|
|
66
|
-
# @param
|
|
73
|
+
# unit tests for banks_id_connector_logos_thumbnail_get
|
|
74
|
+
# Get all links to the files associated with this connector.
|
|
75
|
+
# This endpoint returns all links to files associated with this connector.<br><br>
|
|
76
|
+
# @param id_connector
|
|
67
77
|
# @param [Hash] opts the optional parameters
|
|
68
78
|
# @option opts [String] :expand
|
|
69
|
-
# @return [
|
|
70
|
-
describe '
|
|
71
|
-
it
|
|
79
|
+
# @return [InlineResponse20010]
|
|
80
|
+
describe 'banks_id_connector_logos_thumbnail_get test' do
|
|
81
|
+
it 'should work' do
|
|
72
82
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
73
83
|
end
|
|
74
84
|
end
|
|
@@ -78,9 +88,9 @@ describe 'ProvidersApi' do
|
|
|
78
88
|
#
|
|
79
89
|
# @param [Hash] opts the optional parameters
|
|
80
90
|
# @option opts [String] :expand
|
|
81
|
-
# @return [
|
|
91
|
+
# @return [InlineResponse2009]
|
|
82
92
|
describe 'connections_get test' do
|
|
83
|
-
it
|
|
93
|
+
it 'should work' do
|
|
84
94
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
85
95
|
end
|
|
86
96
|
end
|
|
@@ -90,102 +100,102 @@ describe 'ProvidersApi' do
|
|
|
90
100
|
#
|
|
91
101
|
# @param [Hash] opts the optional parameters
|
|
92
102
|
# @option opts [String] :expand
|
|
93
|
-
# @return [
|
|
103
|
+
# @return [InlineResponse20014]
|
|
94
104
|
describe 'connectors_get test' do
|
|
95
|
-
it
|
|
105
|
+
it 'should work' do
|
|
96
106
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
97
107
|
end
|
|
98
108
|
end
|
|
99
109
|
|
|
100
|
-
# unit tests for
|
|
101
|
-
# Get all links to the files associated with this
|
|
102
|
-
# This endpoint returns all links to files associated with this
|
|
103
|
-
# @param
|
|
110
|
+
# unit tests for connectors_id_connector_logos_get
|
|
111
|
+
# Get all links to the files associated with this connector.
|
|
112
|
+
# This endpoint returns all links to files associated with this connector.<br><br>
|
|
113
|
+
# @param id_connector
|
|
104
114
|
# @param [Hash] opts the optional parameters
|
|
105
115
|
# @option opts [String] :expand
|
|
106
|
-
# @return [
|
|
107
|
-
describe '
|
|
108
|
-
it
|
|
116
|
+
# @return [InlineResponse20010]
|
|
117
|
+
describe 'connectors_id_connector_logos_get test' do
|
|
118
|
+
it 'should work' do
|
|
109
119
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
110
120
|
end
|
|
111
121
|
end
|
|
112
122
|
|
|
113
|
-
# unit tests for
|
|
123
|
+
# unit tests for connectors_id_connector_logos_id_logo_delete
|
|
114
124
|
# Delete a single Logo object.
|
|
115
125
|
#
|
|
116
|
-
# @param
|
|
126
|
+
# @param id_connector
|
|
117
127
|
# @param id_logo
|
|
118
128
|
# @param [Hash] opts the optional parameters
|
|
119
129
|
# @option opts [String] :expand
|
|
120
130
|
# @return [ConnectorLogo]
|
|
121
|
-
describe '
|
|
122
|
-
it
|
|
131
|
+
describe 'connectors_id_connector_logos_id_logo_delete test' do
|
|
132
|
+
it 'should work' do
|
|
123
133
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
124
134
|
end
|
|
125
135
|
end
|
|
126
136
|
|
|
127
|
-
# unit tests for
|
|
128
|
-
# Create or Update a
|
|
129
|
-
# This endpoint creates or update a
|
|
130
|
-
# @param
|
|
137
|
+
# unit tests for connectors_id_connector_logos_id_logo_put
|
|
138
|
+
# Create or Update a connector Logo.
|
|
139
|
+
# This endpoint creates or update a connector logo. This logo is a mapping between a file (/file route) and a connector (/connectors route) or a provider (/providers route).<br><br>Form params: - id_file (integer): The id of the file to link with that connector.<br><br>
|
|
140
|
+
# @param id_connector
|
|
131
141
|
# @param id_logo
|
|
132
142
|
# @param [Hash] opts the optional parameters
|
|
133
143
|
# @option opts [String] :expand
|
|
134
144
|
# @return [ConnectorLogo]
|
|
135
|
-
describe '
|
|
136
|
-
it
|
|
145
|
+
describe 'connectors_id_connector_logos_id_logo_put test' do
|
|
146
|
+
it 'should work' do
|
|
137
147
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
138
148
|
end
|
|
139
149
|
end
|
|
140
150
|
|
|
141
|
-
# unit tests for
|
|
142
|
-
# Get all links to the files associated with this
|
|
143
|
-
# This endpoint returns all links to files associated with this
|
|
144
|
-
# @param
|
|
151
|
+
# unit tests for connectors_id_connector_logos_main_get
|
|
152
|
+
# Get all links to the files associated with this connector.
|
|
153
|
+
# This endpoint returns all links to files associated with this connector.<br><br>
|
|
154
|
+
# @param id_connector
|
|
145
155
|
# @param [Hash] opts the optional parameters
|
|
146
156
|
# @option opts [String] :expand
|
|
147
|
-
# @return [
|
|
148
|
-
describe '
|
|
149
|
-
it
|
|
157
|
+
# @return [InlineResponse20010]
|
|
158
|
+
describe 'connectors_id_connector_logos_main_get test' do
|
|
159
|
+
it 'should work' do
|
|
150
160
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
151
161
|
end
|
|
152
162
|
end
|
|
153
163
|
|
|
154
|
-
# unit tests for
|
|
155
|
-
# Create a
|
|
156
|
-
# This endpoint creates a
|
|
157
|
-
# @param
|
|
164
|
+
# unit tests for connectors_id_connector_logos_post
|
|
165
|
+
# Create a connector Logo
|
|
166
|
+
# This endpoint creates a connector logo. You can either pass a file to as a parameter to insert and link it with the connector or pass an id_file to link a connector with an existing file. Will fail if the file is already linked with that connector.<br><br>Form params: - id_file (integer): The id of the file to link with that connector. - img (string): Path to the image to link with that connector.<br><br>
|
|
167
|
+
# @param id_connector
|
|
158
168
|
# @param [Hash] opts the optional parameters
|
|
159
169
|
# @option opts [String] :expand
|
|
160
170
|
# @return [ConnectorLogo]
|
|
161
|
-
describe '
|
|
162
|
-
it
|
|
171
|
+
describe 'connectors_id_connector_logos_post test' do
|
|
172
|
+
it 'should work' do
|
|
163
173
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
174
|
end
|
|
165
175
|
end
|
|
166
176
|
|
|
167
|
-
# unit tests for
|
|
168
|
-
# Create or Update a
|
|
169
|
-
# This endpoint creates or update a
|
|
170
|
-
# @param
|
|
177
|
+
# unit tests for connectors_id_connector_logos_put
|
|
178
|
+
# Create or Update a connector Logo
|
|
179
|
+
# This endpoint creates or update a connector logo. This logo is a mapping between a file (/file route) and a connector (/connectors route) or a provider (/providers route).<br><br>Form params: - id_file (integer): The id of the file to link with that connector.<br><br>
|
|
180
|
+
# @param id_connector
|
|
171
181
|
# @param [Hash] opts the optional parameters
|
|
172
182
|
# @option opts [String] :expand
|
|
173
183
|
# @return [ConnectorLogo]
|
|
174
|
-
describe '
|
|
175
|
-
it
|
|
184
|
+
describe 'connectors_id_connector_logos_put test' do
|
|
185
|
+
it 'should work' do
|
|
176
186
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
177
187
|
end
|
|
178
188
|
end
|
|
179
189
|
|
|
180
|
-
# unit tests for
|
|
181
|
-
# Get all links to the files associated with this
|
|
182
|
-
# This endpoint returns all links to files associated with this
|
|
183
|
-
# @param
|
|
190
|
+
# unit tests for connectors_id_connector_logos_thumbnail_get
|
|
191
|
+
# Get all links to the files associated with this connector.
|
|
192
|
+
# This endpoint returns all links to files associated with this connector.<br><br>
|
|
193
|
+
# @param id_connector
|
|
184
194
|
# @param [Hash] opts the optional parameters
|
|
185
195
|
# @option opts [String] :expand
|
|
186
|
-
# @return [
|
|
187
|
-
describe '
|
|
188
|
-
it
|
|
196
|
+
# @return [InlineResponse20010]
|
|
197
|
+
describe 'connectors_id_connector_logos_thumbnail_get test' do
|
|
198
|
+
it 'should work' do
|
|
189
199
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
190
200
|
end
|
|
191
201
|
end
|
|
@@ -197,16 +207,15 @@ describe 'ProvidersApi' do
|
|
|
197
207
|
# @param login Users login
|
|
198
208
|
# @param password Users password
|
|
199
209
|
# @param [Hash] opts the optional parameters
|
|
200
|
-
# @option opts [String] :api Name of the API
|
|
201
210
|
# @option opts [String] :url Url of the bank
|
|
202
211
|
# @option opts [String] :email Email of the user
|
|
203
212
|
# @option opts [String] :types Type of connector, eg. banks or providers
|
|
204
213
|
# @option opts [String] :comment Optionnal comment
|
|
205
214
|
# @option opts [BOOLEAN] :sendmail if set, send an email to user
|
|
206
215
|
# @option opts [String] :expand
|
|
207
|
-
# @return [
|
|
216
|
+
# @return [Connector]
|
|
208
217
|
describe 'connectors_post test' do
|
|
209
|
-
it
|
|
218
|
+
it 'should work' do
|
|
210
219
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
211
220
|
end
|
|
212
221
|
end
|
|
@@ -216,9 +225,9 @@ describe 'ProvidersApi' do
|
|
|
216
225
|
#
|
|
217
226
|
# @param [Hash] opts the optional parameters
|
|
218
227
|
# @option opts [String] :expand
|
|
219
|
-
# @return [
|
|
228
|
+
# @return [InlineResponse20015]
|
|
220
229
|
describe 'documenttypes_get test' do
|
|
221
|
-
it
|
|
230
|
+
it 'should work' do
|
|
222
231
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
223
232
|
end
|
|
224
233
|
end
|
|
@@ -233,7 +242,7 @@ describe 'ProvidersApi' do
|
|
|
233
242
|
# @option opts [String] :expand
|
|
234
243
|
# @return [DocumentType]
|
|
235
244
|
describe 'documenttypes_id_documenttype_put test' do
|
|
236
|
-
it
|
|
245
|
+
it 'should work' do
|
|
237
246
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
238
247
|
end
|
|
239
248
|
end
|
|
@@ -250,12 +259,12 @@ describe 'ProvidersApi' do
|
|
|
250
259
|
# @option opts [String] :period period to group logs
|
|
251
260
|
# @option opts [Integer] :id_user ID of a user
|
|
252
261
|
# @option opts [Integer] :id_connection ID of a connection
|
|
253
|
-
# @option opts [Integer] :
|
|
254
|
-
# @option opts [BOOLEAN] :charged consider only logs for charged
|
|
262
|
+
# @option opts [Integer] :id_connector ID of a connector
|
|
263
|
+
# @option opts [BOOLEAN] :charged consider only logs for charged connectors
|
|
255
264
|
# @option opts [String] :expand
|
|
256
|
-
# @return [
|
|
265
|
+
# @return [InlineResponse20017]
|
|
257
266
|
describe 'logs_get test' do
|
|
258
|
-
it
|
|
267
|
+
it 'should work' do
|
|
259
268
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
260
269
|
end
|
|
261
270
|
end
|
|
@@ -269,7 +278,7 @@ describe 'ProvidersApi' do
|
|
|
269
278
|
# @option opts [String] :name Name of the document
|
|
270
279
|
# @return [nil]
|
|
271
280
|
describe 'ocr_post test' do
|
|
272
|
-
it
|
|
281
|
+
it 'should work' do
|
|
273
282
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
274
283
|
end
|
|
275
284
|
end
|
|
@@ -279,48 +288,48 @@ describe 'ProvidersApi' do
|
|
|
279
288
|
#
|
|
280
289
|
# @param [Hash] opts the optional parameters
|
|
281
290
|
# @option opts [String] :expand
|
|
282
|
-
# @return [
|
|
291
|
+
# @return [InlineResponse20018]
|
|
283
292
|
describe 'providers_get test' do
|
|
284
|
-
it
|
|
293
|
+
it 'should work' do
|
|
285
294
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
286
295
|
end
|
|
287
296
|
end
|
|
288
297
|
|
|
289
|
-
# unit tests for
|
|
290
|
-
# Get all links to the files associated with this
|
|
291
|
-
# This endpoint returns all links to files associated with this
|
|
292
|
-
# @param
|
|
298
|
+
# unit tests for providers_id_connector_logos_get
|
|
299
|
+
# Get all links to the files associated with this connector.
|
|
300
|
+
# This endpoint returns all links to files associated with this connector.<br><br>
|
|
301
|
+
# @param id_connector
|
|
293
302
|
# @param [Hash] opts the optional parameters
|
|
294
303
|
# @option opts [String] :expand
|
|
295
|
-
# @return [
|
|
296
|
-
describe '
|
|
297
|
-
it
|
|
304
|
+
# @return [InlineResponse20019]
|
|
305
|
+
describe 'providers_id_connector_logos_get test' do
|
|
306
|
+
it 'should work' do
|
|
298
307
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
299
308
|
end
|
|
300
309
|
end
|
|
301
310
|
|
|
302
|
-
# unit tests for
|
|
303
|
-
# Get all links to the files associated with this
|
|
304
|
-
# This endpoint returns all links to files associated with this
|
|
305
|
-
# @param
|
|
311
|
+
# unit tests for providers_id_connector_logos_main_get
|
|
312
|
+
# Get all links to the files associated with this connector.
|
|
313
|
+
# This endpoint returns all links to files associated with this connector.<br><br>
|
|
314
|
+
# @param id_connector
|
|
306
315
|
# @param [Hash] opts the optional parameters
|
|
307
316
|
# @option opts [String] :expand
|
|
308
|
-
# @return [
|
|
309
|
-
describe '
|
|
310
|
-
it
|
|
317
|
+
# @return [InlineResponse20010]
|
|
318
|
+
describe 'providers_id_connector_logos_main_get test' do
|
|
319
|
+
it 'should work' do
|
|
311
320
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
312
321
|
end
|
|
313
322
|
end
|
|
314
323
|
|
|
315
|
-
# unit tests for
|
|
316
|
-
# Get all links to the files associated with this
|
|
317
|
-
# This endpoint returns all links to files associated with this
|
|
318
|
-
# @param
|
|
324
|
+
# unit tests for providers_id_connector_logos_thumbnail_get
|
|
325
|
+
# Get all links to the files associated with this connector.
|
|
326
|
+
# This endpoint returns all links to files associated with this connector.<br><br>
|
|
327
|
+
# @param id_connector
|
|
319
328
|
# @param [Hash] opts the optional parameters
|
|
320
329
|
# @option opts [String] :expand
|
|
321
|
-
# @return [
|
|
322
|
-
describe '
|
|
323
|
-
it
|
|
330
|
+
# @return [InlineResponse20010]
|
|
331
|
+
describe 'providers_id_connector_logos_thumbnail_get test' do
|
|
332
|
+
it 'should work' do
|
|
324
333
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
325
334
|
end
|
|
326
335
|
end
|
|
@@ -335,7 +344,7 @@ describe 'ProvidersApi' do
|
|
|
335
344
|
# @option opts [String] :expand
|
|
336
345
|
# @return [Document]
|
|
337
346
|
describe 'users_id_user_accounts_id_account_transactions_id_transaction_documents_delete test' do
|
|
338
|
-
it
|
|
347
|
+
it 'should work' do
|
|
339
348
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
340
349
|
end
|
|
341
350
|
end
|
|
@@ -352,14 +361,14 @@ describe 'ProvidersApi' do
|
|
|
352
361
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
353
362
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
354
363
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
355
|
-
# @option opts [Float] :max_amount
|
|
364
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
356
365
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
357
|
-
# @option opts [Float] :max_timestamp
|
|
366
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
358
367
|
# @option opts [Integer] :id_type filter with a document type
|
|
359
368
|
# @option opts [String] :expand
|
|
360
|
-
# @return [
|
|
369
|
+
# @return [InlineResponse20031]
|
|
361
370
|
describe 'users_id_user_accounts_id_account_transactions_id_transaction_documents_get test' do
|
|
362
|
-
it
|
|
371
|
+
it 'should work' do
|
|
363
372
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
364
373
|
end
|
|
365
374
|
end
|
|
@@ -375,7 +384,7 @@ describe 'ProvidersApi' do
|
|
|
375
384
|
# @option opts [String] :expand
|
|
376
385
|
# @return [Document]
|
|
377
386
|
describe 'users_id_user_accounts_id_account_transactions_id_transaction_documents_id_document_delete test' do
|
|
378
|
-
it
|
|
387
|
+
it 'should work' do
|
|
379
388
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
380
389
|
end
|
|
381
390
|
end
|
|
@@ -402,7 +411,7 @@ describe 'ProvidersApi' do
|
|
|
402
411
|
# @option opts [String] :expand
|
|
403
412
|
# @return [Document]
|
|
404
413
|
describe 'users_id_user_accounts_id_account_transactions_id_transaction_documents_id_document_put test' do
|
|
405
|
-
it
|
|
414
|
+
it 'should work' do
|
|
406
415
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
407
416
|
end
|
|
408
417
|
end
|
|
@@ -429,7 +438,7 @@ describe 'ProvidersApi' do
|
|
|
429
438
|
# @option opts [String] :expand
|
|
430
439
|
# @return [Document]
|
|
431
440
|
describe 'users_id_user_accounts_id_account_transactions_id_transaction_documents_post test' do
|
|
432
|
-
it
|
|
441
|
+
it 'should work' do
|
|
433
442
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
434
443
|
end
|
|
435
444
|
end
|
|
@@ -445,7 +454,7 @@ describe 'ProvidersApi' do
|
|
|
445
454
|
# @option opts [String] :expand
|
|
446
455
|
# @return [Document]
|
|
447
456
|
describe 'users_id_user_accounts_id_account_transactions_id_transaction_documents_put test' do
|
|
448
|
-
it
|
|
457
|
+
it 'should work' do
|
|
449
458
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
450
459
|
end
|
|
451
460
|
end
|
|
@@ -460,7 +469,7 @@ describe 'ProvidersApi' do
|
|
|
460
469
|
# @option opts [String] :expand
|
|
461
470
|
# @return [Document]
|
|
462
471
|
describe 'users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_delete test' do
|
|
463
|
-
it
|
|
472
|
+
it 'should work' do
|
|
464
473
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
465
474
|
end
|
|
466
475
|
end
|
|
@@ -477,14 +486,14 @@ describe 'ProvidersApi' do
|
|
|
477
486
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
478
487
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
479
488
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
480
|
-
# @option opts [Float] :max_amount
|
|
489
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
481
490
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
482
|
-
# @option opts [Float] :max_timestamp
|
|
491
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
483
492
|
# @option opts [Integer] :id_type filter with a document type
|
|
484
493
|
# @option opts [String] :expand
|
|
485
|
-
# @return [
|
|
494
|
+
# @return [InlineResponse20031]
|
|
486
495
|
describe 'users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_get test' do
|
|
487
|
-
it
|
|
496
|
+
it 'should work' do
|
|
488
497
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
489
498
|
end
|
|
490
499
|
end
|
|
@@ -500,7 +509,7 @@ describe 'ProvidersApi' do
|
|
|
500
509
|
# @option opts [String] :expand
|
|
501
510
|
# @return [Document]
|
|
502
511
|
describe 'users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_id_document_delete test' do
|
|
503
|
-
it
|
|
512
|
+
it 'should work' do
|
|
504
513
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
505
514
|
end
|
|
506
515
|
end
|
|
@@ -527,7 +536,7 @@ describe 'ProvidersApi' do
|
|
|
527
536
|
# @option opts [String] :expand
|
|
528
537
|
# @return [Document]
|
|
529
538
|
describe 'users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_id_document_put test' do
|
|
530
|
-
it
|
|
539
|
+
it 'should work' do
|
|
531
540
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
532
541
|
end
|
|
533
542
|
end
|
|
@@ -554,7 +563,7 @@ describe 'ProvidersApi' do
|
|
|
554
563
|
# @option opts [String] :expand
|
|
555
564
|
# @return [Document]
|
|
556
565
|
describe 'users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_post test' do
|
|
557
|
-
it
|
|
566
|
+
it 'should work' do
|
|
558
567
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
559
568
|
end
|
|
560
569
|
end
|
|
@@ -570,7 +579,7 @@ describe 'ProvidersApi' do
|
|
|
570
579
|
# @option opts [String] :expand
|
|
571
580
|
# @return [Document]
|
|
572
581
|
describe 'users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_put test' do
|
|
573
|
-
it
|
|
582
|
+
it 'should work' do
|
|
574
583
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
575
584
|
end
|
|
576
585
|
end
|
|
@@ -583,7 +592,7 @@ describe 'ProvidersApi' do
|
|
|
583
592
|
# @option opts [String] :expand
|
|
584
593
|
# @return [Connection]
|
|
585
594
|
describe 'users_id_user_connections_delete test' do
|
|
586
|
-
it
|
|
595
|
+
it 'should work' do
|
|
587
596
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
588
597
|
end
|
|
589
598
|
end
|
|
@@ -594,9 +603,9 @@ describe 'ProvidersApi' do
|
|
|
594
603
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
595
604
|
# @param [Hash] opts the optional parameters
|
|
596
605
|
# @option opts [String] :expand
|
|
597
|
-
# @return [
|
|
606
|
+
# @return [InlineResponse2009]
|
|
598
607
|
describe 'users_id_user_connections_get test' do
|
|
599
|
-
it
|
|
608
|
+
it 'should work' do
|
|
600
609
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
601
610
|
end
|
|
602
611
|
end
|
|
@@ -612,7 +621,7 @@ describe 'ProvidersApi' do
|
|
|
612
621
|
# @option opts [String] :expand
|
|
613
622
|
# @return [Document]
|
|
614
623
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_delete test' do
|
|
615
|
-
it
|
|
624
|
+
it 'should work' do
|
|
616
625
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
617
626
|
end
|
|
618
627
|
end
|
|
@@ -630,14 +639,14 @@ describe 'ProvidersApi' do
|
|
|
630
639
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
631
640
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
632
641
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
633
|
-
# @option opts [Float] :max_amount
|
|
642
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
634
643
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
635
|
-
# @option opts [Float] :max_timestamp
|
|
644
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
636
645
|
# @option opts [Integer] :id_type filter with a document type
|
|
637
646
|
# @option opts [String] :expand
|
|
638
|
-
# @return [
|
|
647
|
+
# @return [InlineResponse20031]
|
|
639
648
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_get test' do
|
|
640
|
-
it
|
|
649
|
+
it 'should work' do
|
|
641
650
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
642
651
|
end
|
|
643
652
|
end
|
|
@@ -654,7 +663,7 @@ describe 'ProvidersApi' do
|
|
|
654
663
|
# @option opts [String] :expand
|
|
655
664
|
# @return [Document]
|
|
656
665
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_id_document_delete test' do
|
|
657
|
-
it
|
|
666
|
+
it 'should work' do
|
|
658
667
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
659
668
|
end
|
|
660
669
|
end
|
|
@@ -682,7 +691,7 @@ describe 'ProvidersApi' do
|
|
|
682
691
|
# @option opts [String] :expand
|
|
683
692
|
# @return [Document]
|
|
684
693
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_id_document_put test' do
|
|
685
|
-
it
|
|
694
|
+
it 'should work' do
|
|
686
695
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
687
696
|
end
|
|
688
697
|
end
|
|
@@ -710,7 +719,7 @@ describe 'ProvidersApi' do
|
|
|
710
719
|
# @option opts [String] :expand
|
|
711
720
|
# @return [Document]
|
|
712
721
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_post test' do
|
|
713
|
-
it
|
|
722
|
+
it 'should work' do
|
|
714
723
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
715
724
|
end
|
|
716
725
|
end
|
|
@@ -727,7 +736,7 @@ describe 'ProvidersApi' do
|
|
|
727
736
|
# @option opts [String] :expand
|
|
728
737
|
# @return [Document]
|
|
729
738
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_put test' do
|
|
730
|
-
it
|
|
739
|
+
it 'should work' do
|
|
731
740
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
732
741
|
end
|
|
733
742
|
end
|
|
@@ -743,7 +752,7 @@ describe 'ProvidersApi' do
|
|
|
743
752
|
# @option opts [String] :expand
|
|
744
753
|
# @return [Document]
|
|
745
754
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_delete test' do
|
|
746
|
-
it
|
|
755
|
+
it 'should work' do
|
|
747
756
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
748
757
|
end
|
|
749
758
|
end
|
|
@@ -761,14 +770,14 @@ describe 'ProvidersApi' do
|
|
|
761
770
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
762
771
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
763
772
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
764
|
-
# @option opts [Float] :max_amount
|
|
773
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
765
774
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
766
|
-
# @option opts [Float] :max_timestamp
|
|
775
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
767
776
|
# @option opts [Integer] :id_type filter with a document type
|
|
768
777
|
# @option opts [String] :expand
|
|
769
|
-
# @return [
|
|
778
|
+
# @return [InlineResponse20031]
|
|
770
779
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_get test' do
|
|
771
|
-
it
|
|
780
|
+
it 'should work' do
|
|
772
781
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
773
782
|
end
|
|
774
783
|
end
|
|
@@ -785,7 +794,7 @@ describe 'ProvidersApi' do
|
|
|
785
794
|
# @option opts [String] :expand
|
|
786
795
|
# @return [Document]
|
|
787
796
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_id_document_delete test' do
|
|
788
|
-
it
|
|
797
|
+
it 'should work' do
|
|
789
798
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
790
799
|
end
|
|
791
800
|
end
|
|
@@ -813,7 +822,7 @@ describe 'ProvidersApi' do
|
|
|
813
822
|
# @option opts [String] :expand
|
|
814
823
|
# @return [Document]
|
|
815
824
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_id_document_put test' do
|
|
816
|
-
it
|
|
825
|
+
it 'should work' do
|
|
817
826
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
818
827
|
end
|
|
819
828
|
end
|
|
@@ -841,7 +850,7 @@ describe 'ProvidersApi' do
|
|
|
841
850
|
# @option opts [String] :expand
|
|
842
851
|
# @return [Document]
|
|
843
852
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_post test' do
|
|
844
|
-
it
|
|
853
|
+
it 'should work' do
|
|
845
854
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
846
855
|
end
|
|
847
856
|
end
|
|
@@ -858,7 +867,7 @@ describe 'ProvidersApi' do
|
|
|
858
867
|
# @option opts [String] :expand
|
|
859
868
|
# @return [Document]
|
|
860
869
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_put test' do
|
|
861
|
-
it
|
|
870
|
+
it 'should work' do
|
|
862
871
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
863
872
|
end
|
|
864
873
|
end
|
|
@@ -872,7 +881,7 @@ describe 'ProvidersApi' do
|
|
|
872
881
|
# @option opts [String] :expand
|
|
873
882
|
# @return [Connection]
|
|
874
883
|
describe 'users_id_user_connections_id_connection_delete test' do
|
|
875
|
-
it
|
|
884
|
+
it 'should work' do
|
|
876
885
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
877
886
|
end
|
|
878
887
|
end
|
|
@@ -886,7 +895,7 @@ describe 'ProvidersApi' do
|
|
|
886
895
|
# @option opts [String] :expand
|
|
887
896
|
# @return [Document]
|
|
888
897
|
describe 'users_id_user_connections_id_connection_documents_delete test' do
|
|
889
|
-
it
|
|
898
|
+
it 'should work' do
|
|
890
899
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
891
900
|
end
|
|
892
901
|
end
|
|
@@ -902,14 +911,14 @@ describe 'ProvidersApi' do
|
|
|
902
911
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
903
912
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
904
913
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
905
|
-
# @option opts [Float] :max_amount
|
|
914
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
906
915
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
907
|
-
# @option opts [Float] :max_timestamp
|
|
916
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
908
917
|
# @option opts [Integer] :id_type filter with a document type
|
|
909
918
|
# @option opts [String] :expand
|
|
910
|
-
# @return [
|
|
919
|
+
# @return [InlineResponse20031]
|
|
911
920
|
describe 'users_id_user_connections_id_connection_documents_get test' do
|
|
912
|
-
it
|
|
921
|
+
it 'should work' do
|
|
913
922
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
914
923
|
end
|
|
915
924
|
end
|
|
@@ -924,7 +933,7 @@ describe 'ProvidersApi' do
|
|
|
924
933
|
# @option opts [String] :expand
|
|
925
934
|
# @return [Document]
|
|
926
935
|
describe 'users_id_user_connections_id_connection_documents_id_document_delete test' do
|
|
927
|
-
it
|
|
936
|
+
it 'should work' do
|
|
928
937
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
929
938
|
end
|
|
930
939
|
end
|
|
@@ -950,7 +959,7 @@ describe 'ProvidersApi' do
|
|
|
950
959
|
# @option opts [String] :expand
|
|
951
960
|
# @return [Document]
|
|
952
961
|
describe 'users_id_user_connections_id_connection_documents_id_document_put test' do
|
|
953
|
-
it
|
|
962
|
+
it 'should work' do
|
|
954
963
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
955
964
|
end
|
|
956
965
|
end
|
|
@@ -976,7 +985,7 @@ describe 'ProvidersApi' do
|
|
|
976
985
|
# @option opts [String] :expand
|
|
977
986
|
# @return [Document]
|
|
978
987
|
describe 'users_id_user_connections_id_connection_documents_post test' do
|
|
979
|
-
it
|
|
988
|
+
it 'should work' do
|
|
980
989
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
981
990
|
end
|
|
982
991
|
end
|
|
@@ -991,7 +1000,7 @@ describe 'ProvidersApi' do
|
|
|
991
1000
|
# @option opts [String] :expand
|
|
992
1001
|
# @return [Document]
|
|
993
1002
|
describe 'users_id_user_connections_id_connection_documents_put test' do
|
|
994
|
-
it
|
|
1003
|
+
it 'should work' do
|
|
995
1004
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
996
1005
|
end
|
|
997
1006
|
end
|
|
@@ -1003,9 +1012,9 @@ describe 'ProvidersApi' do
|
|
|
1003
1012
|
# @param id_connection
|
|
1004
1013
|
# @param [Hash] opts the optional parameters
|
|
1005
1014
|
# @option opts [String] :expand
|
|
1006
|
-
# @return [
|
|
1015
|
+
# @return [InlineResponse2009]
|
|
1007
1016
|
describe 'users_id_user_connections_id_connection_informations_get test' do
|
|
1008
|
-
it
|
|
1017
|
+
it 'should work' do
|
|
1009
1018
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1010
1019
|
end
|
|
1011
1020
|
end
|
|
@@ -1024,12 +1033,12 @@ describe 'ProvidersApi' do
|
|
|
1024
1033
|
# @option opts [String] :period period to group logs
|
|
1025
1034
|
# @option opts [Integer] :id_user2 ID of a user
|
|
1026
1035
|
# @option opts [Integer] :id_connection2 ID of a connection
|
|
1027
|
-
# @option opts [Integer] :
|
|
1028
|
-
# @option opts [BOOLEAN] :charged consider only logs for charged
|
|
1036
|
+
# @option opts [Integer] :id_connector ID of a connector
|
|
1037
|
+
# @option opts [BOOLEAN] :charged consider only logs for charged connectors
|
|
1029
1038
|
# @option opts [String] :expand
|
|
1030
|
-
# @return [
|
|
1039
|
+
# @return [InlineResponse20017]
|
|
1031
1040
|
describe 'users_id_user_connections_id_connection_logs_get test' do
|
|
1032
|
-
it
|
|
1041
|
+
it 'should work' do
|
|
1033
1042
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1034
1043
|
end
|
|
1035
1044
|
end
|
|
@@ -1044,10 +1053,11 @@ describe 'ProvidersApi' do
|
|
|
1044
1053
|
# @option opts [DateTime] :expire Set expiration of the connection to this date
|
|
1045
1054
|
# @option opts [String] :login Set login to this new login
|
|
1046
1055
|
# @option opts [String] :password Set password to this new password
|
|
1056
|
+
# @option opts [BOOLEAN] :decoupled Try to update a connection with the decoupled error
|
|
1047
1057
|
# @option opts [String] :expand
|
|
1048
1058
|
# @return [Connection]
|
|
1049
1059
|
describe 'users_id_user_connections_id_connection_post test' do
|
|
1050
|
-
it
|
|
1060
|
+
it 'should work' do
|
|
1051
1061
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1052
1062
|
end
|
|
1053
1063
|
end
|
|
@@ -1061,14 +1071,14 @@ describe 'ProvidersApi' do
|
|
|
1061
1071
|
# @option opts [String] :expand
|
|
1062
1072
|
# @return [Connection]
|
|
1063
1073
|
describe 'users_id_user_connections_id_connection_put test' do
|
|
1064
|
-
it
|
|
1074
|
+
it 'should work' do
|
|
1065
1075
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1066
1076
|
end
|
|
1067
1077
|
end
|
|
1068
1078
|
|
|
1069
1079
|
# unit tests for users_id_user_connections_id_connection_subscriptions_id_subscription_delete
|
|
1070
1080
|
# Delete a subscription.
|
|
1071
|
-
# It deletes a specific subscription
|
|
1081
|
+
# It deletes a specific subscription.<br><br>
|
|
1072
1082
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
1073
1083
|
# @param id_connection
|
|
1074
1084
|
# @param id_subscription
|
|
@@ -1076,7 +1086,7 @@ describe 'ProvidersApi' do
|
|
|
1076
1086
|
# @option opts [String] :expand
|
|
1077
1087
|
# @return [Subscription]
|
|
1078
1088
|
describe 'users_id_user_connections_id_connection_subscriptions_id_subscription_delete test' do
|
|
1079
|
-
it
|
|
1089
|
+
it 'should work' do
|
|
1080
1090
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1081
1091
|
end
|
|
1082
1092
|
end
|
|
@@ -1091,7 +1101,7 @@ describe 'ProvidersApi' do
|
|
|
1091
1101
|
# @option opts [String] :expand
|
|
1092
1102
|
# @return [Document]
|
|
1093
1103
|
describe 'users_id_user_connections_id_connection_subscriptions_id_subscription_documents_delete test' do
|
|
1094
|
-
it
|
|
1104
|
+
it 'should work' do
|
|
1095
1105
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1096
1106
|
end
|
|
1097
1107
|
end
|
|
@@ -1108,14 +1118,14 @@ describe 'ProvidersApi' do
|
|
|
1108
1118
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
1109
1119
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
1110
1120
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
1111
|
-
# @option opts [Float] :max_amount
|
|
1121
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
1112
1122
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
1113
|
-
# @option opts [Float] :max_timestamp
|
|
1123
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
1114
1124
|
# @option opts [Integer] :id_type filter with a document type
|
|
1115
1125
|
# @option opts [String] :expand
|
|
1116
|
-
# @return [
|
|
1126
|
+
# @return [InlineResponse20031]
|
|
1117
1127
|
describe 'users_id_user_connections_id_connection_subscriptions_id_subscription_documents_get test' do
|
|
1118
|
-
it
|
|
1128
|
+
it 'should work' do
|
|
1119
1129
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1120
1130
|
end
|
|
1121
1131
|
end
|
|
@@ -1131,7 +1141,7 @@ describe 'ProvidersApi' do
|
|
|
1131
1141
|
# @option opts [String] :expand
|
|
1132
1142
|
# @return [Document]
|
|
1133
1143
|
describe 'users_id_user_connections_id_connection_subscriptions_id_subscription_documents_id_document_delete test' do
|
|
1134
|
-
it
|
|
1144
|
+
it 'should work' do
|
|
1135
1145
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1136
1146
|
end
|
|
1137
1147
|
end
|
|
@@ -1158,7 +1168,7 @@ describe 'ProvidersApi' do
|
|
|
1158
1168
|
# @option opts [String] :expand
|
|
1159
1169
|
# @return [Document]
|
|
1160
1170
|
describe 'users_id_user_connections_id_connection_subscriptions_id_subscription_documents_id_document_put test' do
|
|
1161
|
-
it
|
|
1171
|
+
it 'should work' do
|
|
1162
1172
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1163
1173
|
end
|
|
1164
1174
|
end
|
|
@@ -1185,7 +1195,7 @@ describe 'ProvidersApi' do
|
|
|
1185
1195
|
# @option opts [String] :expand
|
|
1186
1196
|
# @return [Document]
|
|
1187
1197
|
describe 'users_id_user_connections_id_connection_subscriptions_id_subscription_documents_post test' do
|
|
1188
|
-
it
|
|
1198
|
+
it 'should work' do
|
|
1189
1199
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1190
1200
|
end
|
|
1191
1201
|
end
|
|
@@ -1201,7 +1211,7 @@ describe 'ProvidersApi' do
|
|
|
1201
1211
|
# @option opts [String] :expand
|
|
1202
1212
|
# @return [Document]
|
|
1203
1213
|
describe 'users_id_user_connections_id_connection_subscriptions_id_subscription_documents_put test' do
|
|
1204
|
-
it
|
|
1214
|
+
it 'should work' do
|
|
1205
1215
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1206
1216
|
end
|
|
1207
1217
|
end
|
|
@@ -1218,7 +1228,7 @@ describe 'ProvidersApi' do
|
|
|
1218
1228
|
# @option opts [String] :expand
|
|
1219
1229
|
# @return [Subscription]
|
|
1220
1230
|
describe 'users_id_user_connections_id_connection_subscriptions_id_subscription_put test' do
|
|
1221
|
-
it
|
|
1231
|
+
it 'should work' do
|
|
1222
1232
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1223
1233
|
end
|
|
1224
1234
|
end
|
|
@@ -1233,7 +1243,7 @@ describe 'ProvidersApi' do
|
|
|
1233
1243
|
# @option opts [String] :expand
|
|
1234
1244
|
# @return [Document]
|
|
1235
1245
|
describe 'users_id_user_connections_id_connection_transactions_id_transaction_documents_delete test' do
|
|
1236
|
-
it
|
|
1246
|
+
it 'should work' do
|
|
1237
1247
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1238
1248
|
end
|
|
1239
1249
|
end
|
|
@@ -1250,14 +1260,14 @@ describe 'ProvidersApi' do
|
|
|
1250
1260
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
1251
1261
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
1252
1262
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
1253
|
-
# @option opts [Float] :max_amount
|
|
1263
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
1254
1264
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
1255
|
-
# @option opts [Float] :max_timestamp
|
|
1265
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
1256
1266
|
# @option opts [Integer] :id_type filter with a document type
|
|
1257
1267
|
# @option opts [String] :expand
|
|
1258
|
-
# @return [
|
|
1268
|
+
# @return [InlineResponse20031]
|
|
1259
1269
|
describe 'users_id_user_connections_id_connection_transactions_id_transaction_documents_get test' do
|
|
1260
|
-
it
|
|
1270
|
+
it 'should work' do
|
|
1261
1271
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1262
1272
|
end
|
|
1263
1273
|
end
|
|
@@ -1273,7 +1283,7 @@ describe 'ProvidersApi' do
|
|
|
1273
1283
|
# @option opts [String] :expand
|
|
1274
1284
|
# @return [Document]
|
|
1275
1285
|
describe 'users_id_user_connections_id_connection_transactions_id_transaction_documents_id_document_delete test' do
|
|
1276
|
-
it
|
|
1286
|
+
it 'should work' do
|
|
1277
1287
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1278
1288
|
end
|
|
1279
1289
|
end
|
|
@@ -1300,7 +1310,7 @@ describe 'ProvidersApi' do
|
|
|
1300
1310
|
# @option opts [String] :expand
|
|
1301
1311
|
# @return [Document]
|
|
1302
1312
|
describe 'users_id_user_connections_id_connection_transactions_id_transaction_documents_id_document_put test' do
|
|
1303
|
-
it
|
|
1313
|
+
it 'should work' do
|
|
1304
1314
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1305
1315
|
end
|
|
1306
1316
|
end
|
|
@@ -1327,7 +1337,7 @@ describe 'ProvidersApi' do
|
|
|
1327
1337
|
# @option opts [String] :expand
|
|
1328
1338
|
# @return [Document]
|
|
1329
1339
|
describe 'users_id_user_connections_id_connection_transactions_id_transaction_documents_post test' do
|
|
1330
|
-
it
|
|
1340
|
+
it 'should work' do
|
|
1331
1341
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1332
1342
|
end
|
|
1333
1343
|
end
|
|
@@ -1343,7 +1353,7 @@ describe 'ProvidersApi' do
|
|
|
1343
1353
|
# @option opts [String] :expand
|
|
1344
1354
|
# @return [Document]
|
|
1345
1355
|
describe 'users_id_user_connections_id_connection_transactions_id_transaction_documents_put test' do
|
|
1346
|
-
it
|
|
1356
|
+
it 'should work' do
|
|
1347
1357
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1348
1358
|
end
|
|
1349
1359
|
end
|
|
@@ -1358,7 +1368,7 @@ describe 'ProvidersApi' do
|
|
|
1358
1368
|
# @option opts [String] :expand
|
|
1359
1369
|
# @return [Document]
|
|
1360
1370
|
describe 'users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_delete test' do
|
|
1361
|
-
it
|
|
1371
|
+
it 'should work' do
|
|
1362
1372
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1363
1373
|
end
|
|
1364
1374
|
end
|
|
@@ -1375,14 +1385,14 @@ describe 'ProvidersApi' do
|
|
|
1375
1385
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
1376
1386
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
1377
1387
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
1378
|
-
# @option opts [Float] :max_amount
|
|
1388
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
1379
1389
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
1380
|
-
# @option opts [Float] :max_timestamp
|
|
1390
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
1381
1391
|
# @option opts [Integer] :id_type filter with a document type
|
|
1382
1392
|
# @option opts [String] :expand
|
|
1383
|
-
# @return [
|
|
1393
|
+
# @return [InlineResponse20031]
|
|
1384
1394
|
describe 'users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_get test' do
|
|
1385
|
-
it
|
|
1395
|
+
it 'should work' do
|
|
1386
1396
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1387
1397
|
end
|
|
1388
1398
|
end
|
|
@@ -1398,7 +1408,7 @@ describe 'ProvidersApi' do
|
|
|
1398
1408
|
# @option opts [String] :expand
|
|
1399
1409
|
# @return [Document]
|
|
1400
1410
|
describe 'users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_id_document_delete test' do
|
|
1401
|
-
it
|
|
1411
|
+
it 'should work' do
|
|
1402
1412
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1403
1413
|
end
|
|
1404
1414
|
end
|
|
@@ -1425,7 +1435,7 @@ describe 'ProvidersApi' do
|
|
|
1425
1435
|
# @option opts [String] :expand
|
|
1426
1436
|
# @return [Document]
|
|
1427
1437
|
describe 'users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_id_document_put test' do
|
|
1428
|
-
it
|
|
1438
|
+
it 'should work' do
|
|
1429
1439
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1430
1440
|
end
|
|
1431
1441
|
end
|
|
@@ -1452,7 +1462,7 @@ describe 'ProvidersApi' do
|
|
|
1452
1462
|
# @option opts [String] :expand
|
|
1453
1463
|
# @return [Document]
|
|
1454
1464
|
describe 'users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_post test' do
|
|
1455
|
-
it
|
|
1465
|
+
it 'should work' do
|
|
1456
1466
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1457
1467
|
end
|
|
1458
1468
|
end
|
|
@@ -1468,7 +1478,7 @@ describe 'ProvidersApi' do
|
|
|
1468
1478
|
# @option opts [String] :expand
|
|
1469
1479
|
# @return [Document]
|
|
1470
1480
|
describe 'users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_put test' do
|
|
1471
|
-
it
|
|
1481
|
+
it 'should work' do
|
|
1472
1482
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1473
1483
|
end
|
|
1474
1484
|
end
|
|
@@ -1478,12 +1488,24 @@ describe 'ProvidersApi' do
|
|
|
1478
1488
|
# Create a new connection to a given bank or provider. You have to give all needed parameters (use /banks/ID/fields or /providers/ID/fields to get them).<br><br>
|
|
1479
1489
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
1480
1490
|
# @param [Hash] opts the optional parameters
|
|
1481
|
-
# @option opts [Integer] :
|
|
1491
|
+
# @option opts [Integer] :id_connector ID of the connector
|
|
1492
|
+
# @option opts [String] :connector_uuid optional uuid of the connector (replaces id_connector)
|
|
1493
|
+
# @option opts [String] :birthday bank additional login parameter
|
|
1494
|
+
# @option opts [String] :password bank additional login parameter
|
|
1495
|
+
# @option opts [String] :oauth_token bank additional login parameter
|
|
1496
|
+
# @option opts [String] :oauth_token_secret bank additional login parameter
|
|
1497
|
+
# @option opts [String] :auth_type bank additional login parameter
|
|
1498
|
+
# @option opts [String] :secret bank additional login parameter
|
|
1499
|
+
# @option opts [String] :type bank additional login parameter
|
|
1500
|
+
# @option opts [String] :birthdate bank additional login parameter
|
|
1501
|
+
# @option opts [String] :nuser bank additional login parameter
|
|
1502
|
+
# @option opts [String] :website bank additional login parameter
|
|
1503
|
+
# @option opts [String] :login bank additional login parameter
|
|
1482
1504
|
# @option opts [Integer] :id_provider ID of the provider
|
|
1483
1505
|
# @option opts [String] :expand
|
|
1484
1506
|
# @return [Connection]
|
|
1485
1507
|
describe 'users_id_user_connections_post test' do
|
|
1486
|
-
it
|
|
1508
|
+
it 'should work' do
|
|
1487
1509
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1488
1510
|
end
|
|
1489
1511
|
end
|
|
@@ -1496,7 +1518,7 @@ describe 'ProvidersApi' do
|
|
|
1496
1518
|
# @option opts [String] :expand
|
|
1497
1519
|
# @return [Document]
|
|
1498
1520
|
describe 'users_id_user_documents_delete test' do
|
|
1499
|
-
it
|
|
1521
|
+
it 'should work' do
|
|
1500
1522
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1501
1523
|
end
|
|
1502
1524
|
end
|
|
@@ -1511,14 +1533,14 @@ describe 'ProvidersApi' do
|
|
|
1511
1533
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
1512
1534
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
1513
1535
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
1514
|
-
# @option opts [Float] :max_amount
|
|
1536
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
1515
1537
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
1516
|
-
# @option opts [Float] :max_timestamp
|
|
1538
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
1517
1539
|
# @option opts [Integer] :id_type filter with a document type
|
|
1518
1540
|
# @option opts [String] :expand
|
|
1519
|
-
# @return [
|
|
1541
|
+
# @return [InlineResponse20031]
|
|
1520
1542
|
describe 'users_id_user_documents_get test' do
|
|
1521
|
-
it
|
|
1543
|
+
it 'should work' do
|
|
1522
1544
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1523
1545
|
end
|
|
1524
1546
|
end
|
|
@@ -1532,7 +1554,7 @@ describe 'ProvidersApi' do
|
|
|
1532
1554
|
# @option opts [String] :expand
|
|
1533
1555
|
# @return [Document]
|
|
1534
1556
|
describe 'users_id_user_documents_id_document_delete test' do
|
|
1535
|
-
it
|
|
1557
|
+
it 'should work' do
|
|
1536
1558
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1537
1559
|
end
|
|
1538
1560
|
end
|
|
@@ -1557,7 +1579,7 @@ describe 'ProvidersApi' do
|
|
|
1557
1579
|
# @option opts [String] :expand
|
|
1558
1580
|
# @return [Document]
|
|
1559
1581
|
describe 'users_id_user_documents_id_document_put test' do
|
|
1560
|
-
it
|
|
1582
|
+
it 'should work' do
|
|
1561
1583
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1562
1584
|
end
|
|
1563
1585
|
end
|
|
@@ -1582,7 +1604,7 @@ describe 'ProvidersApi' do
|
|
|
1582
1604
|
# @option opts [String] :expand
|
|
1583
1605
|
# @return [Document]
|
|
1584
1606
|
describe 'users_id_user_documents_post test' do
|
|
1585
|
-
it
|
|
1607
|
+
it 'should work' do
|
|
1586
1608
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1587
1609
|
end
|
|
1588
1610
|
end
|
|
@@ -1596,7 +1618,7 @@ describe 'ProvidersApi' do
|
|
|
1596
1618
|
# @option opts [String] :expand
|
|
1597
1619
|
# @return [Document]
|
|
1598
1620
|
describe 'users_id_user_documents_put test' do
|
|
1599
|
-
it
|
|
1621
|
+
it 'should work' do
|
|
1600
1622
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1601
1623
|
end
|
|
1602
1624
|
end
|
|
@@ -1614,12 +1636,12 @@ describe 'ProvidersApi' do
|
|
|
1614
1636
|
# @option opts [String] :period period to group logs
|
|
1615
1637
|
# @option opts [Integer] :id_user2 ID of a user
|
|
1616
1638
|
# @option opts [Integer] :id_connection ID of a connection
|
|
1617
|
-
# @option opts [Integer] :
|
|
1618
|
-
# @option opts [BOOLEAN] :charged consider only logs for charged
|
|
1639
|
+
# @option opts [Integer] :id_connector ID of a connector
|
|
1640
|
+
# @option opts [BOOLEAN] :charged consider only logs for charged connectors
|
|
1619
1641
|
# @option opts [String] :expand
|
|
1620
|
-
# @return [
|
|
1642
|
+
# @return [InlineResponse20017]
|
|
1621
1643
|
describe 'users_id_user_logs_get test' do
|
|
1622
|
-
it
|
|
1644
|
+
it 'should work' do
|
|
1623
1645
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1624
1646
|
end
|
|
1625
1647
|
end
|
|
@@ -1634,21 +1656,21 @@ describe 'ProvidersApi' do
|
|
|
1634
1656
|
# @option opts [String] :name Name of the document
|
|
1635
1657
|
# @return [nil]
|
|
1636
1658
|
describe 'users_id_user_ocr_post test' do
|
|
1637
|
-
it
|
|
1659
|
+
it 'should work' do
|
|
1638
1660
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1639
1661
|
end
|
|
1640
1662
|
end
|
|
1641
1663
|
|
|
1642
1664
|
# unit tests for users_id_user_subscriptions_id_subscription_delete
|
|
1643
1665
|
# Delete a subscription.
|
|
1644
|
-
# It deletes a specific subscription
|
|
1666
|
+
# It deletes a specific subscription.<br><br>
|
|
1645
1667
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
1646
1668
|
# @param id_subscription
|
|
1647
1669
|
# @param [Hash] opts the optional parameters
|
|
1648
1670
|
# @option opts [String] :expand
|
|
1649
1671
|
# @return [Subscription]
|
|
1650
1672
|
describe 'users_id_user_subscriptions_id_subscription_delete test' do
|
|
1651
|
-
it
|
|
1673
|
+
it 'should work' do
|
|
1652
1674
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1653
1675
|
end
|
|
1654
1676
|
end
|
|
@@ -1662,7 +1684,7 @@ describe 'ProvidersApi' do
|
|
|
1662
1684
|
# @option opts [String] :expand
|
|
1663
1685
|
# @return [Document]
|
|
1664
1686
|
describe 'users_id_user_subscriptions_id_subscription_documents_delete test' do
|
|
1665
|
-
it
|
|
1687
|
+
it 'should work' do
|
|
1666
1688
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1667
1689
|
end
|
|
1668
1690
|
end
|
|
@@ -1678,14 +1700,14 @@ describe 'ProvidersApi' do
|
|
|
1678
1700
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
1679
1701
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
1680
1702
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
1681
|
-
# @option opts [Float] :max_amount
|
|
1703
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
1682
1704
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
1683
|
-
# @option opts [Float] :max_timestamp
|
|
1705
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
1684
1706
|
# @option opts [Integer] :id_type filter with a document type
|
|
1685
1707
|
# @option opts [String] :expand
|
|
1686
|
-
# @return [
|
|
1708
|
+
# @return [InlineResponse20031]
|
|
1687
1709
|
describe 'users_id_user_subscriptions_id_subscription_documents_get test' do
|
|
1688
|
-
it
|
|
1710
|
+
it 'should work' do
|
|
1689
1711
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1690
1712
|
end
|
|
1691
1713
|
end
|
|
@@ -1700,7 +1722,7 @@ describe 'ProvidersApi' do
|
|
|
1700
1722
|
# @option opts [String] :expand
|
|
1701
1723
|
# @return [Document]
|
|
1702
1724
|
describe 'users_id_user_subscriptions_id_subscription_documents_id_document_delete test' do
|
|
1703
|
-
it
|
|
1725
|
+
it 'should work' do
|
|
1704
1726
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1705
1727
|
end
|
|
1706
1728
|
end
|
|
@@ -1726,7 +1748,7 @@ describe 'ProvidersApi' do
|
|
|
1726
1748
|
# @option opts [String] :expand
|
|
1727
1749
|
# @return [Document]
|
|
1728
1750
|
describe 'users_id_user_subscriptions_id_subscription_documents_id_document_put test' do
|
|
1729
|
-
it
|
|
1751
|
+
it 'should work' do
|
|
1730
1752
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1731
1753
|
end
|
|
1732
1754
|
end
|
|
@@ -1752,7 +1774,7 @@ describe 'ProvidersApi' do
|
|
|
1752
1774
|
# @option opts [String] :expand
|
|
1753
1775
|
# @return [Document]
|
|
1754
1776
|
describe 'users_id_user_subscriptions_id_subscription_documents_post test' do
|
|
1755
|
-
it
|
|
1777
|
+
it 'should work' do
|
|
1756
1778
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1757
1779
|
end
|
|
1758
1780
|
end
|
|
@@ -1767,7 +1789,7 @@ describe 'ProvidersApi' do
|
|
|
1767
1789
|
# @option opts [String] :expand
|
|
1768
1790
|
# @return [Document]
|
|
1769
1791
|
describe 'users_id_user_subscriptions_id_subscription_documents_put test' do
|
|
1770
|
-
it
|
|
1792
|
+
it 'should work' do
|
|
1771
1793
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1772
1794
|
end
|
|
1773
1795
|
end
|
|
@@ -1783,7 +1805,7 @@ describe 'ProvidersApi' do
|
|
|
1783
1805
|
# @option opts [String] :expand
|
|
1784
1806
|
# @return [Subscription]
|
|
1785
1807
|
describe 'users_id_user_subscriptions_id_subscription_put test' do
|
|
1786
|
-
it
|
|
1808
|
+
it 'should work' do
|
|
1787
1809
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1788
1810
|
end
|
|
1789
1811
|
end
|
|
@@ -1797,7 +1819,7 @@ describe 'ProvidersApi' do
|
|
|
1797
1819
|
# @option opts [String] :expand
|
|
1798
1820
|
# @return [Document]
|
|
1799
1821
|
describe 'users_id_user_transactions_id_transaction_documents_delete test' do
|
|
1800
|
-
it
|
|
1822
|
+
it 'should work' do
|
|
1801
1823
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1802
1824
|
end
|
|
1803
1825
|
end
|
|
@@ -1813,14 +1835,14 @@ describe 'ProvidersApi' do
|
|
|
1813
1835
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
1814
1836
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
1815
1837
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
1816
|
-
# @option opts [Float] :max_amount
|
|
1838
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
1817
1839
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
1818
|
-
# @option opts [Float] :max_timestamp
|
|
1840
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
1819
1841
|
# @option opts [Integer] :id_type filter with a document type
|
|
1820
1842
|
# @option opts [String] :expand
|
|
1821
|
-
# @return [
|
|
1843
|
+
# @return [InlineResponse20031]
|
|
1822
1844
|
describe 'users_id_user_transactions_id_transaction_documents_get test' do
|
|
1823
|
-
it
|
|
1845
|
+
it 'should work' do
|
|
1824
1846
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1825
1847
|
end
|
|
1826
1848
|
end
|
|
@@ -1835,7 +1857,7 @@ describe 'ProvidersApi' do
|
|
|
1835
1857
|
# @option opts [String] :expand
|
|
1836
1858
|
# @return [Document]
|
|
1837
1859
|
describe 'users_id_user_transactions_id_transaction_documents_id_document_delete test' do
|
|
1838
|
-
it
|
|
1860
|
+
it 'should work' do
|
|
1839
1861
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1840
1862
|
end
|
|
1841
1863
|
end
|
|
@@ -1861,7 +1883,7 @@ describe 'ProvidersApi' do
|
|
|
1861
1883
|
# @option opts [String] :expand
|
|
1862
1884
|
# @return [Document]
|
|
1863
1885
|
describe 'users_id_user_transactions_id_transaction_documents_id_document_put test' do
|
|
1864
|
-
it
|
|
1886
|
+
it 'should work' do
|
|
1865
1887
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1866
1888
|
end
|
|
1867
1889
|
end
|
|
@@ -1887,7 +1909,7 @@ describe 'ProvidersApi' do
|
|
|
1887
1909
|
# @option opts [String] :expand
|
|
1888
1910
|
# @return [Document]
|
|
1889
1911
|
describe 'users_id_user_transactions_id_transaction_documents_post test' do
|
|
1890
|
-
it
|
|
1912
|
+
it 'should work' do
|
|
1891
1913
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1892
1914
|
end
|
|
1893
1915
|
end
|
|
@@ -1902,7 +1924,7 @@ describe 'ProvidersApi' do
|
|
|
1902
1924
|
# @option opts [String] :expand
|
|
1903
1925
|
# @return [Document]
|
|
1904
1926
|
describe 'users_id_user_transactions_id_transaction_documents_put test' do
|
|
1905
|
-
it
|
|
1927
|
+
it 'should work' do
|
|
1906
1928
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1907
1929
|
end
|
|
1908
1930
|
end
|
|
@@ -1916,7 +1938,7 @@ describe 'ProvidersApi' do
|
|
|
1916
1938
|
# @option opts [String] :expand
|
|
1917
1939
|
# @return [Document]
|
|
1918
1940
|
describe 'users_id_user_transactionsclusters_id_transactions_cluster_documents_delete test' do
|
|
1919
|
-
it
|
|
1941
|
+
it 'should work' do
|
|
1920
1942
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1921
1943
|
end
|
|
1922
1944
|
end
|
|
@@ -1932,14 +1954,14 @@ describe 'ProvidersApi' do
|
|
|
1932
1954
|
# @option opts [Date] :min_date minimal (inclusive) date
|
|
1933
1955
|
# @option opts [Date] :max_date maximum (inclusive) date
|
|
1934
1956
|
# @option opts [Float] :min_amount minimal (inclusive) amount
|
|
1935
|
-
# @option opts [Float] :max_amount
|
|
1957
|
+
# @option opts [Float] :max_amount maximum (inclusive) amount
|
|
1936
1958
|
# @option opts [Float] :min_timestamp minimal (inclusive) timestamp
|
|
1937
|
-
# @option opts [Float] :max_timestamp
|
|
1959
|
+
# @option opts [Float] :max_timestamp maximum (inclusive) timestamp
|
|
1938
1960
|
# @option opts [Integer] :id_type filter with a document type
|
|
1939
1961
|
# @option opts [String] :expand
|
|
1940
|
-
# @return [
|
|
1962
|
+
# @return [InlineResponse20031]
|
|
1941
1963
|
describe 'users_id_user_transactionsclusters_id_transactions_cluster_documents_get test' do
|
|
1942
|
-
it
|
|
1964
|
+
it 'should work' do
|
|
1943
1965
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1944
1966
|
end
|
|
1945
1967
|
end
|
|
@@ -1954,7 +1976,7 @@ describe 'ProvidersApi' do
|
|
|
1954
1976
|
# @option opts [String] :expand
|
|
1955
1977
|
# @return [Document]
|
|
1956
1978
|
describe 'users_id_user_transactionsclusters_id_transactions_cluster_documents_id_document_delete test' do
|
|
1957
|
-
it
|
|
1979
|
+
it 'should work' do
|
|
1958
1980
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1959
1981
|
end
|
|
1960
1982
|
end
|
|
@@ -1980,7 +2002,7 @@ describe 'ProvidersApi' do
|
|
|
1980
2002
|
# @option opts [String] :expand
|
|
1981
2003
|
# @return [Document]
|
|
1982
2004
|
describe 'users_id_user_transactionsclusters_id_transactions_cluster_documents_id_document_put test' do
|
|
1983
|
-
it
|
|
2005
|
+
it 'should work' do
|
|
1984
2006
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1985
2007
|
end
|
|
1986
2008
|
end
|
|
@@ -2006,7 +2028,7 @@ describe 'ProvidersApi' do
|
|
|
2006
2028
|
# @option opts [String] :expand
|
|
2007
2029
|
# @return [Document]
|
|
2008
2030
|
describe 'users_id_user_transactionsclusters_id_transactions_cluster_documents_post test' do
|
|
2009
|
-
it
|
|
2031
|
+
it 'should work' do
|
|
2010
2032
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
2011
2033
|
end
|
|
2012
2034
|
end
|
|
@@ -2021,7 +2043,7 @@ describe 'ProvidersApi' do
|
|
|
2021
2043
|
# @option opts [String] :expand
|
|
2022
2044
|
# @return [Document]
|
|
2023
2045
|
describe 'users_id_user_transactionsclusters_id_transactions_cluster_documents_put test' do
|
|
2024
|
-
it
|
|
2046
|
+
it 'should work' do
|
|
2025
2047
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
2026
2048
|
end
|
|
2027
2049
|
end
|