@emilgroup/payment-sdk 1.0.0 → 1.3.1

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.
Files changed (86) hide show
  1. package/.openapi-generator/FILES +17 -2
  2. package/README.md +2 -2
  3. package/api/bank-accounts-api.ts +4 -4
  4. package/api/bank-transaction-api.ts +565 -0
  5. package/api/payment-methods-api.ts +4 -4
  6. package/api/payment-reminders-api.ts +12 -10
  7. package/api/payments-api.ts +4 -4
  8. package/api/refunds-api.ts +460 -0
  9. package/api/tenant-bank-account-api.ts +651 -0
  10. package/api.ts +6 -2
  11. package/dist/api/bank-accounts-api.d.ts +4 -4
  12. package/dist/api/bank-accounts-api.js +3 -3
  13. package/dist/api/bank-transaction-api.d.ts +318 -0
  14. package/dist/api/bank-transaction-api.js +539 -0
  15. package/dist/api/payment-methods-api.d.ts +4 -4
  16. package/dist/api/payment-methods-api.js +3 -3
  17. package/dist/api/payment-reminders-api.d.ts +12 -11
  18. package/dist/api/payment-reminders-api.js +7 -7
  19. package/dist/api/payments-api.d.ts +4 -4
  20. package/dist/api/payments-api.js +3 -3
  21. package/dist/api/refunds-api.d.ts +260 -0
  22. package/dist/api/refunds-api.js +441 -0
  23. package/dist/api/tenant-bank-account-api.d.ts +361 -0
  24. package/dist/api/tenant-bank-account-api.js +616 -0
  25. package/dist/api.d.ts +3 -1
  26. package/dist/api.js +3 -1
  27. package/dist/models/bank-transaction-response-class.d.ts +122 -0
  28. package/dist/models/create-payment-request-dto.d.ts +3 -3
  29. package/dist/models/create-refund-request-dto.d.ts +24 -0
  30. package/dist/models/create-refund-request-dto.js +15 -0
  31. package/dist/models/create-refund-response-class.d.ts +25 -0
  32. package/dist/models/create-refund-response-class.js +15 -0
  33. package/dist/models/create-tenant-bank-account-request-dto.d.ts +42 -0
  34. package/dist/models/create-tenant-bank-account-request-dto.js +15 -0
  35. package/dist/models/deactivate-payment-reminder-response-class.d.ts +25 -0
  36. package/dist/models/deactivate-payment-reminder-response-class.js +15 -0
  37. package/dist/models/get-bank-transactions-response-class.d.ts +25 -0
  38. package/dist/models/get-bank-transactions-response-class.js +15 -0
  39. package/dist/models/{validate-pspconfig-response-class.d.ts → get-refund-response-class.d.ts} +7 -6
  40. package/dist/models/get-refund-response-class.js +15 -0
  41. package/dist/models/get-tenant-bank-account-response-class.d.ts +25 -0
  42. package/dist/models/get-tenant-bank-account-response-class.js +15 -0
  43. package/dist/models/index.d.ts +14 -1
  44. package/dist/models/index.js +14 -1
  45. package/dist/models/inline-response200.d.ts +6 -6
  46. package/dist/models/inline-response503.d.ts +6 -6
  47. package/dist/models/link-bank-transaction-request-dto.d.ts +30 -0
  48. package/dist/models/link-bank-transaction-request-dto.js +15 -0
  49. package/dist/models/list-bank-transactions-response-class.d.ts +31 -0
  50. package/dist/models/list-bank-transactions-response-class.js +15 -0
  51. package/dist/models/list-refunds-response-class.d.ts +31 -0
  52. package/dist/models/list-refunds-response-class.js +15 -0
  53. package/dist/models/payment-class.d.ts +1 -1
  54. package/dist/models/payment-method-class.d.ts +8 -2
  55. package/dist/models/refund-class.d.ts +104 -0
  56. package/dist/models/refund-class.js +28 -0
  57. package/dist/models/tenant-bank-account-response-class.d.ts +66 -0
  58. package/dist/models/tenant-bank-account-response-class.js +15 -0
  59. package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +36 -0
  60. package/dist/models/update-tenant-bank-account-rest-request-dto.js +15 -0
  61. package/git_push.sh +1 -1
  62. package/models/bank-transaction-response-class.ts +128 -0
  63. package/models/create-payment-request-dto.ts +3 -3
  64. package/models/create-refund-request-dto.ts +30 -0
  65. package/models/create-refund-response-class.ts +31 -0
  66. package/models/create-tenant-bank-account-request-dto.ts +48 -0
  67. package/models/deactivate-payment-reminder-response-class.ts +31 -0
  68. package/models/get-bank-transactions-response-class.ts +31 -0
  69. package/models/{validate-pspconfig-response-class.ts → get-refund-response-class.ts} +7 -6
  70. package/models/get-tenant-bank-account-response-class.ts +31 -0
  71. package/models/index.ts +14 -1
  72. package/models/inline-response200.ts +6 -6
  73. package/models/inline-response503.ts +6 -6
  74. package/models/link-bank-transaction-request-dto.ts +36 -0
  75. package/models/list-bank-transactions-response-class.ts +37 -0
  76. package/models/list-refunds-response-class.ts +37 -0
  77. package/models/payment-class.ts +1 -1
  78. package/models/payment-method-class.ts +8 -2
  79. package/models/refund-class.ts +114 -0
  80. package/models/tenant-bank-account-response-class.ts +72 -0
  81. package/models/update-tenant-bank-account-rest-request-dto.ts +42 -0
  82. package/package.json +1 -2
  83. package/api/payment-service-providers-api.ts +0 -161
  84. package/dist/api/payment-service-providers-api.d.ts +0 -93
  85. package/dist/api/payment-service-providers-api.js +0 -220
  86. /package/dist/models/{validate-pspconfig-response-class.js → bank-transaction-response-class.js} +0 -0
@@ -0,0 +1,361 @@
1
+ /**
2
+ * Emil Payment Service
3
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
+ import { Configuration } from '../configuration';
14
+ import { RequestArgs, BaseAPI } from '../base';
15
+ import { CreateTenantBankAccountRequestDto } from '../models';
16
+ import { GetTenantBankAccountResponseClass } from '../models';
17
+ import { UpdateTenantBankAccountRestRequestDto } from '../models';
18
+ /**
19
+ * TenantBankAccountApi - axios parameter creator
20
+ * @export
21
+ */
22
+ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Configuration) => {
23
+ /**
24
+ *
25
+ * @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
26
+ * @param {string} [authorization] Bearer Token
27
+ * @param {*} [options] Override http request option.
28
+ * @throws {RequiredError}
29
+ */
30
+ createTenantBankAccount: (createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
31
+ /**
32
+ *
33
+ * @param {string} code Unique identifier for the object.
34
+ * @param {string} [authorization] Bearer Token
35
+ * @param {*} [options] Override http request option.
36
+ * @throws {RequiredError}
37
+ */
38
+ deleteTenantBankAccount: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
39
+ /**
40
+ *
41
+ * @param {string} code Unique identifier for the object.
42
+ * @param {string} [authorization] Bearer Token
43
+ * @param {string} [expand] Expand the response with additional entities
44
+ * @param {*} [options] Override http request option.
45
+ * @throws {RequiredError}
46
+ */
47
+ getTenantBankAccount: (code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
48
+ /**
49
+ *
50
+ * @param {string} [authorization] Bearer Token
51
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
52
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
53
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
54
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
55
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
56
+ * @param {string} [expand] Expand the response with additional entities
57
+ * @param {*} [options] Override http request option.
58
+ * @throws {RequiredError}
59
+ */
60
+ listTenantBankAccounts: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
61
+ /**
62
+ *
63
+ * @param {string} code Unique identifier for the object.
64
+ * @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
65
+ * @param {string} [authorization] Bearer Token
66
+ * @param {*} [options] Override http request option.
67
+ * @throws {RequiredError}
68
+ */
69
+ updateTenantBankAccount: (code: string, updateTenantBankAccountRestRequestDto: UpdateTenantBankAccountRestRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
70
+ };
71
+ /**
72
+ * TenantBankAccountApi - functional programming interface
73
+ * @export
74
+ */
75
+ export declare const TenantBankAccountApiFp: (configuration?: Configuration) => {
76
+ /**
77
+ *
78
+ * @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
79
+ * @param {string} [authorization] Bearer Token
80
+ * @param {*} [options] Override http request option.
81
+ * @throws {RequiredError}
82
+ */
83
+ createTenantBankAccount(createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
84
+ /**
85
+ *
86
+ * @param {string} code Unique identifier for the object.
87
+ * @param {string} [authorization] Bearer Token
88
+ * @param {*} [options] Override http request option.
89
+ * @throws {RequiredError}
90
+ */
91
+ deleteTenantBankAccount(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
92
+ /**
93
+ *
94
+ * @param {string} code Unique identifier for the object.
95
+ * @param {string} [authorization] Bearer Token
96
+ * @param {string} [expand] Expand the response with additional entities
97
+ * @param {*} [options] Override http request option.
98
+ * @throws {RequiredError}
99
+ */
100
+ getTenantBankAccount(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTenantBankAccountResponseClass>>;
101
+ /**
102
+ *
103
+ * @param {string} [authorization] Bearer Token
104
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
105
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
106
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
107
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
108
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
109
+ * @param {string} [expand] Expand the response with additional entities
110
+ * @param {*} [options] Override http request option.
111
+ * @throws {RequiredError}
112
+ */
113
+ listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
114
+ /**
115
+ *
116
+ * @param {string} code Unique identifier for the object.
117
+ * @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
118
+ * @param {string} [authorization] Bearer Token
119
+ * @param {*} [options] Override http request option.
120
+ * @throws {RequiredError}
121
+ */
122
+ updateTenantBankAccount(code: string, updateTenantBankAccountRestRequestDto: UpdateTenantBankAccountRestRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
123
+ };
124
+ /**
125
+ * TenantBankAccountApi - factory interface
126
+ * @export
127
+ */
128
+ export declare const TenantBankAccountApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
129
+ /**
130
+ *
131
+ * @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
132
+ * @param {string} [authorization] Bearer Token
133
+ * @param {*} [options] Override http request option.
134
+ * @throws {RequiredError}
135
+ */
136
+ createTenantBankAccount(createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
137
+ /**
138
+ *
139
+ * @param {string} code Unique identifier for the object.
140
+ * @param {string} [authorization] Bearer Token
141
+ * @param {*} [options] Override http request option.
142
+ * @throws {RequiredError}
143
+ */
144
+ deleteTenantBankAccount(code: string, authorization?: string, options?: any): AxiosPromise<void>;
145
+ /**
146
+ *
147
+ * @param {string} code Unique identifier for the object.
148
+ * @param {string} [authorization] Bearer Token
149
+ * @param {string} [expand] Expand the response with additional entities
150
+ * @param {*} [options] Override http request option.
151
+ * @throws {RequiredError}
152
+ */
153
+ getTenantBankAccount(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetTenantBankAccountResponseClass>;
154
+ /**
155
+ *
156
+ * @param {string} [authorization] Bearer Token
157
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
158
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
159
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
160
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
161
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
162
+ * @param {string} [expand] Expand the response with additional entities
163
+ * @param {*} [options] Override http request option.
164
+ * @throws {RequiredError}
165
+ */
166
+ listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, options?: any): AxiosPromise<void>;
167
+ /**
168
+ *
169
+ * @param {string} code Unique identifier for the object.
170
+ * @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
171
+ * @param {string} [authorization] Bearer Token
172
+ * @param {*} [options] Override http request option.
173
+ * @throws {RequiredError}
174
+ */
175
+ updateTenantBankAccount(code: string, updateTenantBankAccountRestRequestDto: UpdateTenantBankAccountRestRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
176
+ };
177
+ /**
178
+ * Request parameters for createTenantBankAccount operation in TenantBankAccountApi.
179
+ * @export
180
+ * @interface TenantBankAccountApiCreateTenantBankAccountRequest
181
+ */
182
+ export interface TenantBankAccountApiCreateTenantBankAccountRequest {
183
+ /**
184
+ *
185
+ * @type {CreateTenantBankAccountRequestDto}
186
+ * @memberof TenantBankAccountApiCreateTenantBankAccount
187
+ */
188
+ readonly createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto;
189
+ /**
190
+ * Bearer Token
191
+ * @type {string}
192
+ * @memberof TenantBankAccountApiCreateTenantBankAccount
193
+ */
194
+ readonly authorization?: string;
195
+ }
196
+ /**
197
+ * Request parameters for deleteTenantBankAccount operation in TenantBankAccountApi.
198
+ * @export
199
+ * @interface TenantBankAccountApiDeleteTenantBankAccountRequest
200
+ */
201
+ export interface TenantBankAccountApiDeleteTenantBankAccountRequest {
202
+ /**
203
+ * Unique identifier for the object.
204
+ * @type {string}
205
+ * @memberof TenantBankAccountApiDeleteTenantBankAccount
206
+ */
207
+ readonly code: string;
208
+ /**
209
+ * Bearer Token
210
+ * @type {string}
211
+ * @memberof TenantBankAccountApiDeleteTenantBankAccount
212
+ */
213
+ readonly authorization?: string;
214
+ }
215
+ /**
216
+ * Request parameters for getTenantBankAccount operation in TenantBankAccountApi.
217
+ * @export
218
+ * @interface TenantBankAccountApiGetTenantBankAccountRequest
219
+ */
220
+ export interface TenantBankAccountApiGetTenantBankAccountRequest {
221
+ /**
222
+ * Unique identifier for the object.
223
+ * @type {string}
224
+ * @memberof TenantBankAccountApiGetTenantBankAccount
225
+ */
226
+ readonly code: string;
227
+ /**
228
+ * Bearer Token
229
+ * @type {string}
230
+ * @memberof TenantBankAccountApiGetTenantBankAccount
231
+ */
232
+ readonly authorization?: string;
233
+ /**
234
+ * Expand the response with additional entities
235
+ * @type {string}
236
+ * @memberof TenantBankAccountApiGetTenantBankAccount
237
+ */
238
+ readonly expand?: string;
239
+ }
240
+ /**
241
+ * Request parameters for listTenantBankAccounts operation in TenantBankAccountApi.
242
+ * @export
243
+ * @interface TenantBankAccountApiListTenantBankAccountsRequest
244
+ */
245
+ export interface TenantBankAccountApiListTenantBankAccountsRequest {
246
+ /**
247
+ * Bearer Token
248
+ * @type {string}
249
+ * @memberof TenantBankAccountApiListTenantBankAccounts
250
+ */
251
+ readonly authorization?: string;
252
+ /**
253
+ * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
254
+ * @type {any}
255
+ * @memberof TenantBankAccountApiListTenantBankAccounts
256
+ */
257
+ readonly pageSize?: any;
258
+ /**
259
+ * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
260
+ * @type {any}
261
+ * @memberof TenantBankAccountApiListTenantBankAccounts
262
+ */
263
+ readonly pageToken?: any;
264
+ /**
265
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
266
+ * @type {any}
267
+ * @memberof TenantBankAccountApiListTenantBankAccounts
268
+ */
269
+ readonly filter?: any;
270
+ /**
271
+ * Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
272
+ * @type {any}
273
+ * @memberof TenantBankAccountApiListTenantBankAccounts
274
+ */
275
+ readonly search?: any;
276
+ /**
277
+ * The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
278
+ * @type {any}
279
+ * @memberof TenantBankAccountApiListTenantBankAccounts
280
+ */
281
+ readonly order?: any;
282
+ /**
283
+ * Expand the response with additional entities
284
+ * @type {string}
285
+ * @memberof TenantBankAccountApiListTenantBankAccounts
286
+ */
287
+ readonly expand?: string;
288
+ }
289
+ /**
290
+ * Request parameters for updateTenantBankAccount operation in TenantBankAccountApi.
291
+ * @export
292
+ * @interface TenantBankAccountApiUpdateTenantBankAccountRequest
293
+ */
294
+ export interface TenantBankAccountApiUpdateTenantBankAccountRequest {
295
+ /**
296
+ * Unique identifier for the object.
297
+ * @type {string}
298
+ * @memberof TenantBankAccountApiUpdateTenantBankAccount
299
+ */
300
+ readonly code: string;
301
+ /**
302
+ *
303
+ * @type {UpdateTenantBankAccountRestRequestDto}
304
+ * @memberof TenantBankAccountApiUpdateTenantBankAccount
305
+ */
306
+ readonly updateTenantBankAccountRestRequestDto: UpdateTenantBankAccountRestRequestDto;
307
+ /**
308
+ * Bearer Token
309
+ * @type {string}
310
+ * @memberof TenantBankAccountApiUpdateTenantBankAccount
311
+ */
312
+ readonly authorization?: string;
313
+ }
314
+ /**
315
+ * TenantBankAccountApi - object-oriented interface
316
+ * @export
317
+ * @class TenantBankAccountApi
318
+ * @extends {BaseAPI}
319
+ */
320
+ export declare class TenantBankAccountApi extends BaseAPI {
321
+ /**
322
+ *
323
+ * @param {TenantBankAccountApiCreateTenantBankAccountRequest} requestParameters Request parameters.
324
+ * @param {*} [options] Override http request option.
325
+ * @throws {RequiredError}
326
+ * @memberof TenantBankAccountApi
327
+ */
328
+ createTenantBankAccount(requestParameters: TenantBankAccountApiCreateTenantBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
329
+ /**
330
+ *
331
+ * @param {TenantBankAccountApiDeleteTenantBankAccountRequest} requestParameters Request parameters.
332
+ * @param {*} [options] Override http request option.
333
+ * @throws {RequiredError}
334
+ * @memberof TenantBankAccountApi
335
+ */
336
+ deleteTenantBankAccount(requestParameters: TenantBankAccountApiDeleteTenantBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
337
+ /**
338
+ *
339
+ * @param {TenantBankAccountApiGetTenantBankAccountRequest} requestParameters Request parameters.
340
+ * @param {*} [options] Override http request option.
341
+ * @throws {RequiredError}
342
+ * @memberof TenantBankAccountApi
343
+ */
344
+ getTenantBankAccount(requestParameters: TenantBankAccountApiGetTenantBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetTenantBankAccountResponseClass, any>>;
345
+ /**
346
+ *
347
+ * @param {TenantBankAccountApiListTenantBankAccountsRequest} requestParameters Request parameters.
348
+ * @param {*} [options] Override http request option.
349
+ * @throws {RequiredError}
350
+ * @memberof TenantBankAccountApi
351
+ */
352
+ listTenantBankAccounts(requestParameters?: TenantBankAccountApiListTenantBankAccountsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
353
+ /**
354
+ *
355
+ * @param {TenantBankAccountApiUpdateTenantBankAccountRequest} requestParameters Request parameters.
356
+ * @param {*} [options] Override http request option.
357
+ * @throws {RequiredError}
358
+ * @memberof TenantBankAccountApi
359
+ */
360
+ updateTenantBankAccount(requestParameters: TenantBankAccountApiUpdateTenantBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
361
+ }