@emilgroup/payment-sdk 1.4.1-beta.3 → 1.4.1-beta.30
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.
- package/.openapi-generator/FILES +10 -27
- package/README.md +2 -2
- package/api/bank-accounts-api.ts +497 -43
- package/api/bank-transaction-api.ts +89 -53
- package/api/default-api.ts +1 -1
- package/api/payment-methods-api.ts +62 -173
- package/api/payment-reminders-api.ts +21 -25
- package/api/payment-setup-api.ts +29 -37
- package/api/payments-api.ts +54 -59
- package/api/refunds-api.ts +20 -18
- package/api/tenant-bank-account-api.ts +71 -61
- package/api/webhooks-api.ts +1 -1
- package/api.ts +1 -1
- package/base.ts +6 -2
- package/common.ts +2 -2
- package/configuration.ts +1 -1
- package/dist/api/bank-accounts-api.d.ts +295 -45
- package/dist/api/bank-accounts-api.js +412 -24
- package/dist/api/bank-transaction-api.d.ts +65 -45
- package/dist/api/bank-transaction-api.js +55 -40
- package/dist/api/default-api.d.ts +1 -1
- package/dist/api/default-api.js +1 -1
- package/dist/api/payment-methods-api.d.ts +48 -107
- package/dist/api/payment-methods-api.js +51 -143
- package/dist/api/payment-reminders-api.d.ts +25 -27
- package/dist/api/payment-reminders-api.js +12 -12
- package/dist/api/payment-setup-api.d.ts +19 -23
- package/dist/api/payment-setup-api.js +25 -25
- package/dist/api/payments-api.d.ts +46 -49
- package/dist/api/payments-api.js +43 -41
- package/dist/api/refunds-api.d.ts +15 -15
- package/dist/api/refunds-api.js +15 -13
- package/dist/api/tenant-bank-account-api.d.ts +70 -57
- package/dist/api/tenant-bank-account-api.js +56 -42
- package/dist/api/webhooks-api.d.ts +1 -1
- package/dist/api/webhooks-api.js +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/api.js +1 -1
- package/dist/base.d.ts +2 -1
- package/dist/base.js +5 -2
- package/dist/common.d.ts +2 -2
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/models/bank-account-class.d.ts +23 -4
- package/dist/models/bank-account-class.js +1 -1
- package/dist/models/bank-transaction-response-class.d.ts +7 -1
- package/dist/models/bank-transaction-response-class.js +1 -1
- package/dist/models/create-bank-account-request-dto.d.ts +15 -3
- package/dist/models/create-bank-account-request-dto.js +1 -1
- package/dist/models/create-payment-reminder-request-dto.d.ts +1 -1
- package/dist/models/create-payment-reminder-request-dto.js +1 -1
- package/dist/models/create-payment-request-dto.d.ts +4 -4
- package/dist/models/create-payment-request-dto.js +1 -1
- package/dist/models/create-refund-request-dto.d.ts +1 -1
- package/dist/models/create-refund-request-dto.js +1 -1
- package/dist/models/create-refund-response-class.d.ts +1 -1
- package/dist/models/create-refund-response-class.js +1 -1
- package/dist/models/create-tenant-bank-account-request-dto.d.ts +1 -1
- package/dist/models/create-tenant-bank-account-request-dto.js +1 -1
- package/dist/models/create-tenant-bank-account-response-class.d.ts +25 -0
- package/dist/models/{complete-payment-setup-request-dto.js → create-tenant-bank-account-response-class.js} +1 -1
- package/dist/models/deactivate-payment-reminder-request-dto.d.ts +1 -1
- package/dist/models/deactivate-payment-reminder-request-dto.js +1 -1
- package/dist/models/get-bank-account-response-class.d.ts +25 -0
- package/dist/models/{billing-profile-dto.js → get-bank-account-response-class.js} +1 -1
- package/dist/models/get-bank-transactions-response-class.d.ts +1 -1
- package/dist/models/get-bank-transactions-response-class.js +1 -1
- package/dist/models/get-refund-response-class.d.ts +1 -1
- package/dist/models/get-refund-response-class.js +1 -1
- package/dist/models/get-request-dto.d.ts +2 -2
- package/dist/models/get-request-dto.js +1 -1
- package/dist/models/get-tenant-bank-account-response-class.d.ts +1 -1
- package/dist/models/get-tenant-bank-account-response-class.js +1 -1
- package/dist/models/index.d.ts +10 -27
- package/dist/models/index.js +10 -27
- package/dist/models/inline-response200.d.ts +1 -1
- package/dist/models/inline-response200.js +1 -1
- package/dist/models/inline-response503.d.ts +1 -1
- package/dist/models/inline-response503.js +1 -1
- package/dist/models/link-bank-transaction-request-dto-rest.d.ts +24 -0
- package/dist/models/{complete-braintree-payment-setup-request-dto.js → link-bank-transaction-request-dto-rest.js} +1 -1
- package/dist/models/list-bank-transactions-response-class.d.ts +1 -1
- package/dist/models/list-bank-transactions-response-class.js +1 -1
- package/dist/models/list-refunds-response-class.d.ts +1 -1
- package/dist/models/list-refunds-response-class.js +1 -1
- package/dist/models/list-tenant-bank-account-response-class.d.ts +31 -0
- package/dist/models/{billing-profile-limited-response-dto.js → list-tenant-bank-account-response-class.js} +1 -1
- package/dist/models/primary-bank-account-response-class.d.ts +42 -0
- package/dist/models/primary-bank-account-response-class.js +15 -0
- package/dist/models/refund-class.d.ts +2 -1
- package/dist/models/refund-class.js +3 -2
- package/dist/models/set-primary-bank-account-request-dto-rest.d.ts +24 -0
- package/dist/models/set-primary-bank-account-request-dto-rest.js +15 -0
- package/dist/models/tenant-bank-account-response-class.d.ts +1 -1
- package/dist/models/tenant-bank-account-response-class.js +1 -1
- package/dist/models/transaction-class.d.ts +1 -1
- package/dist/models/transaction-class.js +1 -1
- package/dist/models/unlink-bank-transaction-request-dto-rest.d.ts +24 -0
- package/dist/models/unlink-bank-transaction-request-dto-rest.js +15 -0
- package/dist/models/update-bank-account-request-dto-rest.d.ts +30 -0
- package/dist/models/update-bank-account-request-dto-rest.js +15 -0
- package/dist/models/update-bank-account-request-dto.d.ts +36 -0
- package/dist/models/update-bank-account-request-dto.js +15 -0
- package/dist/models/update-bank-account-response-class.d.ts +25 -0
- package/dist/models/update-bank-account-response-class.js +15 -0
- package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +1 -1
- package/dist/models/update-tenant-bank-account-rest-request-dto.js +1 -1
- package/dist/models/validate-pspconfig-request-dto.d.ts +2 -9
- package/dist/models/validate-pspconfig-request-dto.js +1 -8
- package/index.ts +1 -1
- package/models/bank-account-class.ts +23 -4
- package/models/bank-transaction-response-class.ts +7 -1
- package/models/create-bank-account-request-dto.ts +15 -3
- package/models/create-payment-reminder-request-dto.ts +1 -1
- package/models/create-payment-request-dto.ts +4 -4
- package/models/create-refund-request-dto.ts +1 -1
- package/models/create-refund-response-class.ts +1 -1
- package/models/create-tenant-bank-account-request-dto.ts +1 -1
- package/models/create-tenant-bank-account-response-class.ts +31 -0
- package/models/deactivate-payment-reminder-request-dto.ts +1 -1
- package/models/get-bank-account-response-class.ts +31 -0
- package/models/get-bank-transactions-response-class.ts +1 -1
- package/models/get-refund-response-class.ts +1 -1
- package/models/get-request-dto.ts +2 -2
- package/models/get-tenant-bank-account-response-class.ts +1 -1
- package/models/index.ts +10 -27
- package/models/inline-response200.ts +1 -1
- package/models/inline-response503.ts +1 -1
- package/models/link-bank-transaction-request-dto-rest.ts +30 -0
- package/models/list-bank-transactions-response-class.ts +1 -1
- package/models/list-refunds-response-class.ts +1 -1
- package/models/list-tenant-bank-account-response-class.ts +37 -0
- package/models/primary-bank-account-response-class.ts +48 -0
- package/models/refund-class.ts +3 -2
- package/models/set-primary-bank-account-request-dto-rest.ts +30 -0
- package/models/tenant-bank-account-response-class.ts +1 -1
- package/models/transaction-class.ts +1 -1
- package/models/unlink-bank-transaction-request-dto-rest.ts +30 -0
- package/models/update-bank-account-request-dto-rest.ts +36 -0
- package/models/update-bank-account-request-dto.ts +42 -0
- package/models/update-bank-account-response-class.ts +31 -0
- package/models/update-tenant-bank-account-rest-request-dto.ts +1 -1
- package/models/validate-pspconfig-request-dto.ts +2 -12
- package/package.json +1 -1
- package/dist/models/billing-profile-dto.d.ts +0 -38
- package/dist/models/billing-profile-limited-response-dto.d.ts +0 -54
- package/dist/models/complete-braintree-payment-setup-request-dto.d.ts +0 -48
- package/dist/models/complete-payment-setup-request-dto.d.ts +0 -32
- package/dist/models/complete-payment-setup-response-class.d.ts +0 -25
- package/dist/models/complete-payment-setup-response-class.js +0 -15
- package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +0 -60
- package/dist/models/complete-stripe-payment-setup-request-dto.js +0 -15
- package/dist/models/create-payment-method-response-class.d.ts +0 -25
- package/dist/models/create-payment-method-response-class.js +0 -15
- package/dist/models/create-payment-response-class.d.ts +0 -25
- package/dist/models/create-payment-response-class.js +0 -15
- package/dist/models/create-psp-payment-method-request-dto.d.ts +0 -61
- package/dist/models/create-psp-payment-method-request-dto.js +0 -32
- package/dist/models/deactivate-payment-reminder-response-class.d.ts +0 -25
- package/dist/models/deactivate-payment-reminder-response-class.js +0 -15
- package/dist/models/get-payment-method-response-class.d.ts +0 -25
- package/dist/models/get-payment-method-response-class.js +0 -15
- package/dist/models/get-payment-response-class.d.ts +0 -25
- package/dist/models/get-payment-response-class.js +0 -15
- package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +0 -30
- package/dist/models/initiate-braintree-payment-setup-request-dto.js +0 -15
- package/dist/models/initiate-braintree-payment-setup-response-class.d.ts +0 -24
- package/dist/models/initiate-braintree-payment-setup-response-class.js +0 -15
- package/dist/models/initiate-payment-setup-request-dto.d.ts +0 -44
- package/dist/models/initiate-payment-setup-request-dto.js +0 -15
- package/dist/models/initiate-payment-setup-response-class.d.ts +0 -32
- package/dist/models/initiate-payment-setup-response-class.js +0 -15
- package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +0 -30
- package/dist/models/initiate-stripe-payment-setup-request-dto.js +0 -15
- package/dist/models/initiate-stripe-payment-setup-response-class.d.ts +0 -30
- package/dist/models/initiate-stripe-payment-setup-response-class.js +0 -15
- package/dist/models/list-bank-accounts-response-class.d.ts +0 -31
- package/dist/models/list-bank-accounts-response-class.js +0 -15
- package/dist/models/list-payment-methods-response-class.d.ts +0 -31
- package/dist/models/list-payment-methods-response-class.js +0 -15
- package/dist/models/list-payment-reminders-response-class.d.ts +0 -31
- package/dist/models/list-payment-reminders-response-class.js +0 -15
- package/dist/models/list-payments-response-class.d.ts +0 -31
- package/dist/models/list-payments-response-class.js +0 -15
- package/dist/models/payment-class.d.ts +0 -103
- package/dist/models/payment-class.js +0 -15
- package/dist/models/payment-method-class.d.ts +0 -66
- package/dist/models/payment-method-class.js +0 -15
- package/dist/models/payment-reminder-class.d.ts +0 -112
- package/dist/models/payment-reminder-class.js +0 -36
- package/dist/models/sepa-direct-dto.d.ts +0 -24
- package/dist/models/sepa-direct-dto.js +0 -15
- package/dist/models/symphony-profile-limited-response-dto.d.ts +0 -42
- package/dist/models/symphony-profile-limited-response-dto.js +0 -15
- package/models/billing-profile-dto.ts +0 -44
- package/models/billing-profile-limited-response-dto.ts +0 -60
- package/models/complete-braintree-payment-setup-request-dto.ts +0 -54
- package/models/complete-payment-setup-request-dto.ts +0 -38
- package/models/complete-payment-setup-response-class.ts +0 -31
- package/models/complete-stripe-payment-setup-request-dto.ts +0 -66
- package/models/create-payment-method-response-class.ts +0 -31
- package/models/create-payment-response-class.ts +0 -31
- package/models/create-psp-payment-method-request-dto.ts +0 -70
- package/models/deactivate-payment-reminder-response-class.ts +0 -31
- package/models/get-payment-method-response-class.ts +0 -31
- package/models/get-payment-response-class.ts +0 -31
- package/models/initiate-braintree-payment-setup-request-dto.ts +0 -36
- package/models/initiate-braintree-payment-setup-response-class.ts +0 -30
- package/models/initiate-payment-setup-request-dto.ts +0 -50
- package/models/initiate-payment-setup-response-class.ts +0 -38
- package/models/initiate-stripe-payment-setup-request-dto.ts +0 -36
- package/models/initiate-stripe-payment-setup-response-class.ts +0 -36
- package/models/list-bank-accounts-response-class.ts +0 -37
- package/models/list-payment-methods-response-class.ts +0 -37
- package/models/list-payment-reminders-response-class.ts +0 -37
- package/models/list-payments-response-class.ts +0 -37
- package/models/payment-class.ts +0 -109
- package/models/payment-method-class.ts +0 -72
- package/models/payment-reminder-class.ts +0 -122
- package/models/sepa-direct-dto.ts +0 -30
- package/models/symphony-profile-limited-response-dto.ts +0 -48
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Emil Payment Service
|
|
3
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
6
|
* Contact: kontakt@emil.de
|
|
@@ -13,14 +13,17 @@ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
|
13
13
|
import { Configuration } from '../configuration';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import { CreateBankAccountRequestDto } from '../models';
|
|
16
|
-
import {
|
|
16
|
+
import { GetBankAccountResponseClass } from '../models';
|
|
17
|
+
import { SetPrimaryBankAccountRequestDtoRest } from '../models';
|
|
18
|
+
import { UpdateBankAccountRequestDtoRest } from '../models';
|
|
19
|
+
import { UpdateBankAccountResponseClass } from '../models';
|
|
17
20
|
/**
|
|
18
21
|
* BankAccountsApi - axios parameter creator
|
|
19
22
|
* @export
|
|
20
23
|
*/
|
|
21
24
|
export declare const BankAccountsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
25
|
/**
|
|
23
|
-
* Creates a bank account for a specified account.
|
|
26
|
+
* Creates a bank account for a specified partner/account. If this is the first bank account for the specified partner/account, it will be marked as primary.
|
|
24
27
|
* @summary Create a bank account
|
|
25
28
|
* @param {CreateBankAccountRequestDto} createBankAccountRequestDto
|
|
26
29
|
* @param {string} [authorization] Bearer Token
|
|
@@ -29,20 +32,59 @@ export declare const BankAccountsApiAxiosParamCreator: (configuration?: Configur
|
|
|
29
32
|
*/
|
|
30
33
|
createBankAccount: (createBankAccountRequestDto: CreateBankAccountRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31
34
|
/**
|
|
32
|
-
*
|
|
35
|
+
* Deletes a bank account by code. If the bank account was primary, then the first available bank account for the specified partner/account will be marked as primary.
|
|
36
|
+
* @summary Delete the bank account
|
|
37
|
+
* @param {string} code Unique identifier for the object.
|
|
38
|
+
* @param {string} [authorization] Bearer Token
|
|
39
|
+
* @param {*} [options] Override http request option.
|
|
40
|
+
* @throws {RequiredError}
|
|
41
|
+
*/
|
|
42
|
+
deleteBankAccount: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
43
|
+
/**
|
|
44
|
+
* Retrieves the details of the bank account that was previously created. Supply the unique bank account code that was returned when you created it and Emil Api will return the corresponding bank account information.
|
|
45
|
+
* @summary Retrieve the bank account
|
|
46
|
+
* @param {string} code Unique identifier for the object.
|
|
47
|
+
* @param {string} [authorization] Bearer Token
|
|
48
|
+
* @param {'primaryBankAccount'} [expand] Expand the response with additional entities. For example, using the \"primaryBankAccount\" expand, you can get information about whether a given bank account is primary.
|
|
49
|
+
* @param {*} [options] Override http request option.
|
|
50
|
+
* @throws {RequiredError}
|
|
51
|
+
*/
|
|
52
|
+
getBankAccount: (code: string, authorization?: string, expand?: 'primaryBankAccount', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
|
+
/**
|
|
54
|
+
* Returns a list of bank accounts you have previously created. The bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
33
55
|
* @summary List bank accounts
|
|
34
56
|
* @param {string} [authorization] Bearer Token
|
|
35
57
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
36
58
|
* @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=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
37
|
-
* @param {
|
|
38
|
-
* @param {any} [search]
|
|
39
|
-
* @param {
|
|
40
|
-
* @param {
|
|
41
|
-
* @param {
|
|
59
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, accountCode, partnerCode</i>
|
|
60
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
61
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt</i>
|
|
62
|
+
* @param {'primaryBankAccount'} [expand] Expand to fetch additional information about the list items. For example, using the \"primaryBankAccount\" expand, you can get information about whether a given bank account is primary.
|
|
63
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, accountCode, partnerCode</i>
|
|
64
|
+
* @param {*} [options] Override http request option.
|
|
65
|
+
* @throws {RequiredError}
|
|
66
|
+
*/
|
|
67
|
+
listBankAccounts: (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: 'primaryBankAccount', filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
68
|
+
/**
|
|
69
|
+
* Set the primary bank account for the specified partner/account
|
|
70
|
+
* @summary Set primary bank account
|
|
71
|
+
* @param {string} code Code of the bank account to set primary
|
|
72
|
+
* @param {SetPrimaryBankAccountRequestDtoRest} setPrimaryBankAccountRequestDtoRest
|
|
73
|
+
* @param {string} [authorization] Bearer Token
|
|
74
|
+
* @param {*} [options] Override http request option.
|
|
75
|
+
* @throws {RequiredError}
|
|
76
|
+
*/
|
|
77
|
+
setPrimaryBankAccount: (code: string, setPrimaryBankAccountRequestDtoRest: SetPrimaryBankAccountRequestDtoRest, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
78
|
+
/**
|
|
79
|
+
* Update a bank account by code
|
|
80
|
+
* @summary Update the Update bank account
|
|
81
|
+
* @param {string} code Unique identifier for the object.
|
|
82
|
+
* @param {UpdateBankAccountRequestDtoRest} updateBankAccountRequestDtoRest
|
|
83
|
+
* @param {string} [authorization] Bearer Token
|
|
42
84
|
* @param {*} [options] Override http request option.
|
|
43
85
|
* @throws {RequiredError}
|
|
44
86
|
*/
|
|
45
|
-
|
|
87
|
+
updateBankAccount: (code: string, updateBankAccountRequestDtoRest: UpdateBankAccountRequestDtoRest, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
46
88
|
};
|
|
47
89
|
/**
|
|
48
90
|
* BankAccountsApi - functional programming interface
|
|
@@ -50,29 +92,68 @@ export declare const BankAccountsApiAxiosParamCreator: (configuration?: Configur
|
|
|
50
92
|
*/
|
|
51
93
|
export declare const BankAccountsApiFp: (configuration?: Configuration) => {
|
|
52
94
|
/**
|
|
53
|
-
* Creates a bank account for a specified account.
|
|
95
|
+
* Creates a bank account for a specified partner/account. If this is the first bank account for the specified partner/account, it will be marked as primary.
|
|
54
96
|
* @summary Create a bank account
|
|
55
97
|
* @param {CreateBankAccountRequestDto} createBankAccountRequestDto
|
|
56
98
|
* @param {string} [authorization] Bearer Token
|
|
57
99
|
* @param {*} [options] Override http request option.
|
|
58
100
|
* @throws {RequiredError}
|
|
59
101
|
*/
|
|
60
|
-
createBankAccount(createBankAccountRequestDto: CreateBankAccountRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
102
|
+
createBankAccount(createBankAccountRequestDto: CreateBankAccountRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
103
|
+
/**
|
|
104
|
+
* Deletes a bank account by code. If the bank account was primary, then the first available bank account for the specified partner/account will be marked as primary.
|
|
105
|
+
* @summary Delete the bank account
|
|
106
|
+
* @param {string} code Unique identifier for the object.
|
|
107
|
+
* @param {string} [authorization] Bearer Token
|
|
108
|
+
* @param {*} [options] Override http request option.
|
|
109
|
+
* @throws {RequiredError}
|
|
110
|
+
*/
|
|
111
|
+
deleteBankAccount(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
112
|
+
/**
|
|
113
|
+
* Retrieves the details of the bank account that was previously created. Supply the unique bank account code that was returned when you created it and Emil Api will return the corresponding bank account information.
|
|
114
|
+
* @summary Retrieve the bank account
|
|
115
|
+
* @param {string} code Unique identifier for the object.
|
|
116
|
+
* @param {string} [authorization] Bearer Token
|
|
117
|
+
* @param {'primaryBankAccount'} [expand] Expand the response with additional entities. For example, using the \"primaryBankAccount\" expand, you can get information about whether a given bank account is primary.
|
|
118
|
+
* @param {*} [options] Override http request option.
|
|
119
|
+
* @throws {RequiredError}
|
|
120
|
+
*/
|
|
121
|
+
getBankAccount(code: string, authorization?: string, expand?: 'primaryBankAccount', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBankAccountResponseClass>>;
|
|
61
122
|
/**
|
|
62
|
-
* Returns a list of bank accounts you
|
|
123
|
+
* Returns a list of bank accounts you have previously created. The bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
63
124
|
* @summary List bank accounts
|
|
64
125
|
* @param {string} [authorization] Bearer Token
|
|
65
126
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
66
127
|
* @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=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
67
|
-
* @param {
|
|
68
|
-
* @param {any} [search]
|
|
69
|
-
* @param {
|
|
70
|
-
* @param {
|
|
71
|
-
* @param {
|
|
128
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, accountCode, partnerCode</i>
|
|
129
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
130
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt</i>
|
|
131
|
+
* @param {'primaryBankAccount'} [expand] Expand to fetch additional information about the list items. For example, using the \"primaryBankAccount\" expand, you can get information about whether a given bank account is primary.
|
|
132
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, accountCode, partnerCode</i>
|
|
133
|
+
* @param {*} [options] Override http request option.
|
|
134
|
+
* @throws {RequiredError}
|
|
135
|
+
*/
|
|
136
|
+
listBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: 'primaryBankAccount', filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
137
|
+
/**
|
|
138
|
+
* Set the primary bank account for the specified partner/account
|
|
139
|
+
* @summary Set primary bank account
|
|
140
|
+
* @param {string} code Code of the bank account to set primary
|
|
141
|
+
* @param {SetPrimaryBankAccountRequestDtoRest} setPrimaryBankAccountRequestDtoRest
|
|
142
|
+
* @param {string} [authorization] Bearer Token
|
|
143
|
+
* @param {*} [options] Override http request option.
|
|
144
|
+
* @throws {RequiredError}
|
|
145
|
+
*/
|
|
146
|
+
setPrimaryBankAccount(code: string, setPrimaryBankAccountRequestDtoRest: SetPrimaryBankAccountRequestDtoRest, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
147
|
+
/**
|
|
148
|
+
* Update a bank account by code
|
|
149
|
+
* @summary Update the Update bank account
|
|
150
|
+
* @param {string} code Unique identifier for the object.
|
|
151
|
+
* @param {UpdateBankAccountRequestDtoRest} updateBankAccountRequestDtoRest
|
|
152
|
+
* @param {string} [authorization] Bearer Token
|
|
72
153
|
* @param {*} [options] Override http request option.
|
|
73
154
|
* @throws {RequiredError}
|
|
74
155
|
*/
|
|
75
|
-
|
|
156
|
+
updateBankAccount(code: string, updateBankAccountRequestDtoRest: UpdateBankAccountRequestDtoRest, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateBankAccountResponseClass>>;
|
|
76
157
|
};
|
|
77
158
|
/**
|
|
78
159
|
* BankAccountsApi - factory interface
|
|
@@ -80,29 +161,68 @@ export declare const BankAccountsApiFp: (configuration?: Configuration) => {
|
|
|
80
161
|
*/
|
|
81
162
|
export declare const BankAccountsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
82
163
|
/**
|
|
83
|
-
* Creates a bank account for a specified account.
|
|
164
|
+
* Creates a bank account for a specified partner/account. If this is the first bank account for the specified partner/account, it will be marked as primary.
|
|
84
165
|
* @summary Create a bank account
|
|
85
166
|
* @param {CreateBankAccountRequestDto} createBankAccountRequestDto
|
|
86
167
|
* @param {string} [authorization] Bearer Token
|
|
87
168
|
* @param {*} [options] Override http request option.
|
|
88
169
|
* @throws {RequiredError}
|
|
89
170
|
*/
|
|
90
|
-
createBankAccount(createBankAccountRequestDto: CreateBankAccountRequestDto, authorization?: string, options?: any): AxiosPromise<
|
|
171
|
+
createBankAccount(createBankAccountRequestDto: CreateBankAccountRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
172
|
+
/**
|
|
173
|
+
* Deletes a bank account by code. If the bank account was primary, then the first available bank account for the specified partner/account will be marked as primary.
|
|
174
|
+
* @summary Delete the bank account
|
|
175
|
+
* @param {string} code Unique identifier for the object.
|
|
176
|
+
* @param {string} [authorization] Bearer Token
|
|
177
|
+
* @param {*} [options] Override http request option.
|
|
178
|
+
* @throws {RequiredError}
|
|
179
|
+
*/
|
|
180
|
+
deleteBankAccount(code: string, authorization?: string, options?: any): AxiosPromise<object>;
|
|
91
181
|
/**
|
|
92
|
-
*
|
|
182
|
+
* Retrieves the details of the bank account that was previously created. Supply the unique bank account code that was returned when you created it and Emil Api will return the corresponding bank account information.
|
|
183
|
+
* @summary Retrieve the bank account
|
|
184
|
+
* @param {string} code Unique identifier for the object.
|
|
185
|
+
* @param {string} [authorization] Bearer Token
|
|
186
|
+
* @param {'primaryBankAccount'} [expand] Expand the response with additional entities. For example, using the \"primaryBankAccount\" expand, you can get information about whether a given bank account is primary.
|
|
187
|
+
* @param {*} [options] Override http request option.
|
|
188
|
+
* @throws {RequiredError}
|
|
189
|
+
*/
|
|
190
|
+
getBankAccount(code: string, authorization?: string, expand?: 'primaryBankAccount', options?: any): AxiosPromise<GetBankAccountResponseClass>;
|
|
191
|
+
/**
|
|
192
|
+
* Returns a list of bank accounts you have previously created. The bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
93
193
|
* @summary List bank accounts
|
|
94
194
|
* @param {string} [authorization] Bearer Token
|
|
95
195
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
96
196
|
* @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=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
97
|
-
* @param {
|
|
98
|
-
* @param {any} [search]
|
|
99
|
-
* @param {
|
|
100
|
-
* @param {
|
|
101
|
-
* @param {
|
|
197
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, accountCode, partnerCode</i>
|
|
198
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
199
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt</i>
|
|
200
|
+
* @param {'primaryBankAccount'} [expand] Expand to fetch additional information about the list items. For example, using the \"primaryBankAccount\" expand, you can get information about whether a given bank account is primary.
|
|
201
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, accountCode, partnerCode</i>
|
|
202
|
+
* @param {*} [options] Override http request option.
|
|
203
|
+
* @throws {RequiredError}
|
|
204
|
+
*/
|
|
205
|
+
listBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: 'primaryBankAccount', filters?: string, options?: any): AxiosPromise<void>;
|
|
206
|
+
/**
|
|
207
|
+
* Set the primary bank account for the specified partner/account
|
|
208
|
+
* @summary Set primary bank account
|
|
209
|
+
* @param {string} code Code of the bank account to set primary
|
|
210
|
+
* @param {SetPrimaryBankAccountRequestDtoRest} setPrimaryBankAccountRequestDtoRest
|
|
211
|
+
* @param {string} [authorization] Bearer Token
|
|
102
212
|
* @param {*} [options] Override http request option.
|
|
103
213
|
* @throws {RequiredError}
|
|
104
214
|
*/
|
|
105
|
-
|
|
215
|
+
setPrimaryBankAccount(code: string, setPrimaryBankAccountRequestDtoRest: SetPrimaryBankAccountRequestDtoRest, authorization?: string, options?: any): AxiosPromise<void>;
|
|
216
|
+
/**
|
|
217
|
+
* Update a bank account by code
|
|
218
|
+
* @summary Update the Update bank account
|
|
219
|
+
* @param {string} code Unique identifier for the object.
|
|
220
|
+
* @param {UpdateBankAccountRequestDtoRest} updateBankAccountRequestDtoRest
|
|
221
|
+
* @param {string} [authorization] Bearer Token
|
|
222
|
+
* @param {*} [options] Override http request option.
|
|
223
|
+
* @throws {RequiredError}
|
|
224
|
+
*/
|
|
225
|
+
updateBankAccount(code: string, updateBankAccountRequestDtoRest: UpdateBankAccountRequestDtoRest, authorization?: string, options?: any): AxiosPromise<UpdateBankAccountResponseClass>;
|
|
106
226
|
};
|
|
107
227
|
/**
|
|
108
228
|
* Request parameters for createBankAccount operation in BankAccountsApi.
|
|
@@ -123,6 +243,50 @@ export interface BankAccountsApiCreateBankAccountRequest {
|
|
|
123
243
|
*/
|
|
124
244
|
readonly authorization?: string;
|
|
125
245
|
}
|
|
246
|
+
/**
|
|
247
|
+
* Request parameters for deleteBankAccount operation in BankAccountsApi.
|
|
248
|
+
* @export
|
|
249
|
+
* @interface BankAccountsApiDeleteBankAccountRequest
|
|
250
|
+
*/
|
|
251
|
+
export interface BankAccountsApiDeleteBankAccountRequest {
|
|
252
|
+
/**
|
|
253
|
+
* Unique identifier for the object.
|
|
254
|
+
* @type {string}
|
|
255
|
+
* @memberof BankAccountsApiDeleteBankAccount
|
|
256
|
+
*/
|
|
257
|
+
readonly code: string;
|
|
258
|
+
/**
|
|
259
|
+
* Bearer Token
|
|
260
|
+
* @type {string}
|
|
261
|
+
* @memberof BankAccountsApiDeleteBankAccount
|
|
262
|
+
*/
|
|
263
|
+
readonly authorization?: string;
|
|
264
|
+
}
|
|
265
|
+
/**
|
|
266
|
+
* Request parameters for getBankAccount operation in BankAccountsApi.
|
|
267
|
+
* @export
|
|
268
|
+
* @interface BankAccountsApiGetBankAccountRequest
|
|
269
|
+
*/
|
|
270
|
+
export interface BankAccountsApiGetBankAccountRequest {
|
|
271
|
+
/**
|
|
272
|
+
* Unique identifier for the object.
|
|
273
|
+
* @type {string}
|
|
274
|
+
* @memberof BankAccountsApiGetBankAccount
|
|
275
|
+
*/
|
|
276
|
+
readonly code: string;
|
|
277
|
+
/**
|
|
278
|
+
* Bearer Token
|
|
279
|
+
* @type {string}
|
|
280
|
+
* @memberof BankAccountsApiGetBankAccount
|
|
281
|
+
*/
|
|
282
|
+
readonly authorization?: string;
|
|
283
|
+
/**
|
|
284
|
+
* Expand the response with additional entities. For example, using the \"primaryBankAccount\" expand, you can get information about whether a given bank account is primary.
|
|
285
|
+
* @type {'primaryBankAccount'}
|
|
286
|
+
* @memberof BankAccountsApiGetBankAccount
|
|
287
|
+
*/
|
|
288
|
+
readonly expand?: 'primaryBankAccount';
|
|
289
|
+
}
|
|
126
290
|
/**
|
|
127
291
|
* Request parameters for listBankAccounts operation in BankAccountsApi.
|
|
128
292
|
* @export
|
|
@@ -148,35 +312,85 @@ export interface BankAccountsApiListBankAccountsRequest {
|
|
|
148
312
|
*/
|
|
149
313
|
readonly pageToken?: any;
|
|
150
314
|
/**
|
|
151
|
-
* Filter the response by one or multiple fields.
|
|
152
|
-
* @type {
|
|
315
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, accountCode, partnerCode</i>
|
|
316
|
+
* @type {string}
|
|
153
317
|
* @memberof BankAccountsApiListBankAccounts
|
|
154
318
|
*/
|
|
155
|
-
readonly filter?:
|
|
319
|
+
readonly filter?: string;
|
|
156
320
|
/**
|
|
157
|
-
*
|
|
321
|
+
* To search the list by any field, pass search=xxx to fetch the result.
|
|
158
322
|
* @type {any}
|
|
159
323
|
* @memberof BankAccountsApiListBankAccounts
|
|
160
324
|
*/
|
|
161
325
|
readonly search?: any;
|
|
162
326
|
/**
|
|
163
|
-
*
|
|
164
|
-
* @type {
|
|
327
|
+
* Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt</i>
|
|
328
|
+
* @type {string}
|
|
165
329
|
* @memberof BankAccountsApiListBankAccounts
|
|
166
330
|
*/
|
|
167
|
-
readonly order?:
|
|
331
|
+
readonly order?: string;
|
|
168
332
|
/**
|
|
169
|
-
*
|
|
170
|
-
* @type {
|
|
333
|
+
* Expand to fetch additional information about the list items. For example, using the \"primaryBankAccount\" expand, you can get information about whether a given bank account is primary.
|
|
334
|
+
* @type {'primaryBankAccount'}
|
|
171
335
|
* @memberof BankAccountsApiListBankAccounts
|
|
172
336
|
*/
|
|
173
|
-
readonly expand?:
|
|
337
|
+
readonly expand?: 'primaryBankAccount';
|
|
174
338
|
/**
|
|
175
|
-
* Filters the response by one or multiple fields.
|
|
176
|
-
* @type {
|
|
339
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, accountCode, partnerCode</i>
|
|
340
|
+
* @type {string}
|
|
177
341
|
* @memberof BankAccountsApiListBankAccounts
|
|
178
342
|
*/
|
|
179
|
-
readonly filters?:
|
|
343
|
+
readonly filters?: string;
|
|
344
|
+
}
|
|
345
|
+
/**
|
|
346
|
+
* Request parameters for setPrimaryBankAccount operation in BankAccountsApi.
|
|
347
|
+
* @export
|
|
348
|
+
* @interface BankAccountsApiSetPrimaryBankAccountRequest
|
|
349
|
+
*/
|
|
350
|
+
export interface BankAccountsApiSetPrimaryBankAccountRequest {
|
|
351
|
+
/**
|
|
352
|
+
* Code of the bank account to set primary
|
|
353
|
+
* @type {string}
|
|
354
|
+
* @memberof BankAccountsApiSetPrimaryBankAccount
|
|
355
|
+
*/
|
|
356
|
+
readonly code: string;
|
|
357
|
+
/**
|
|
358
|
+
*
|
|
359
|
+
* @type {SetPrimaryBankAccountRequestDtoRest}
|
|
360
|
+
* @memberof BankAccountsApiSetPrimaryBankAccount
|
|
361
|
+
*/
|
|
362
|
+
readonly setPrimaryBankAccountRequestDtoRest: SetPrimaryBankAccountRequestDtoRest;
|
|
363
|
+
/**
|
|
364
|
+
* Bearer Token
|
|
365
|
+
* @type {string}
|
|
366
|
+
* @memberof BankAccountsApiSetPrimaryBankAccount
|
|
367
|
+
*/
|
|
368
|
+
readonly authorization?: string;
|
|
369
|
+
}
|
|
370
|
+
/**
|
|
371
|
+
* Request parameters for updateBankAccount operation in BankAccountsApi.
|
|
372
|
+
* @export
|
|
373
|
+
* @interface BankAccountsApiUpdateBankAccountRequest
|
|
374
|
+
*/
|
|
375
|
+
export interface BankAccountsApiUpdateBankAccountRequest {
|
|
376
|
+
/**
|
|
377
|
+
* Unique identifier for the object.
|
|
378
|
+
* @type {string}
|
|
379
|
+
* @memberof BankAccountsApiUpdateBankAccount
|
|
380
|
+
*/
|
|
381
|
+
readonly code: string;
|
|
382
|
+
/**
|
|
383
|
+
*
|
|
384
|
+
* @type {UpdateBankAccountRequestDtoRest}
|
|
385
|
+
* @memberof BankAccountsApiUpdateBankAccount
|
|
386
|
+
*/
|
|
387
|
+
readonly updateBankAccountRequestDtoRest: UpdateBankAccountRequestDtoRest;
|
|
388
|
+
/**
|
|
389
|
+
* Bearer Token
|
|
390
|
+
* @type {string}
|
|
391
|
+
* @memberof BankAccountsApiUpdateBankAccount
|
|
392
|
+
*/
|
|
393
|
+
readonly authorization?: string;
|
|
180
394
|
}
|
|
181
395
|
/**
|
|
182
396
|
* BankAccountsApi - object-oriented interface
|
|
@@ -186,21 +400,57 @@ export interface BankAccountsApiListBankAccountsRequest {
|
|
|
186
400
|
*/
|
|
187
401
|
export declare class BankAccountsApi extends BaseAPI {
|
|
188
402
|
/**
|
|
189
|
-
* Creates a bank account for a specified account.
|
|
403
|
+
* Creates a bank account for a specified partner/account. If this is the first bank account for the specified partner/account, it will be marked as primary.
|
|
190
404
|
* @summary Create a bank account
|
|
191
405
|
* @param {BankAccountsApiCreateBankAccountRequest} requestParameters Request parameters.
|
|
192
406
|
* @param {*} [options] Override http request option.
|
|
193
407
|
* @throws {RequiredError}
|
|
194
408
|
* @memberof BankAccountsApi
|
|
195
409
|
*/
|
|
196
|
-
createBankAccount(requestParameters: BankAccountsApiCreateBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
410
|
+
createBankAccount(requestParameters: BankAccountsApiCreateBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
197
411
|
/**
|
|
198
|
-
*
|
|
412
|
+
* Deletes a bank account by code. If the bank account was primary, then the first available bank account for the specified partner/account will be marked as primary.
|
|
413
|
+
* @summary Delete the bank account
|
|
414
|
+
* @param {BankAccountsApiDeleteBankAccountRequest} requestParameters Request parameters.
|
|
415
|
+
* @param {*} [options] Override http request option.
|
|
416
|
+
* @throws {RequiredError}
|
|
417
|
+
* @memberof BankAccountsApi
|
|
418
|
+
*/
|
|
419
|
+
deleteBankAccount(requestParameters: BankAccountsApiDeleteBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
420
|
+
/**
|
|
421
|
+
* Retrieves the details of the bank account that was previously created. Supply the unique bank account code that was returned when you created it and Emil Api will return the corresponding bank account information.
|
|
422
|
+
* @summary Retrieve the bank account
|
|
423
|
+
* @param {BankAccountsApiGetBankAccountRequest} requestParameters Request parameters.
|
|
424
|
+
* @param {*} [options] Override http request option.
|
|
425
|
+
* @throws {RequiredError}
|
|
426
|
+
* @memberof BankAccountsApi
|
|
427
|
+
*/
|
|
428
|
+
getBankAccount(requestParameters: BankAccountsApiGetBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBankAccountResponseClass, any>>;
|
|
429
|
+
/**
|
|
430
|
+
* Returns a list of bank accounts you have previously created. The bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
199
431
|
* @summary List bank accounts
|
|
200
432
|
* @param {BankAccountsApiListBankAccountsRequest} requestParameters Request parameters.
|
|
201
433
|
* @param {*} [options] Override http request option.
|
|
202
434
|
* @throws {RequiredError}
|
|
203
435
|
* @memberof BankAccountsApi
|
|
204
436
|
*/
|
|
205
|
-
listBankAccounts(requestParameters?: BankAccountsApiListBankAccountsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
437
|
+
listBankAccounts(requestParameters?: BankAccountsApiListBankAccountsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
438
|
+
/**
|
|
439
|
+
* Set the primary bank account for the specified partner/account
|
|
440
|
+
* @summary Set primary bank account
|
|
441
|
+
* @param {BankAccountsApiSetPrimaryBankAccountRequest} requestParameters Request parameters.
|
|
442
|
+
* @param {*} [options] Override http request option.
|
|
443
|
+
* @throws {RequiredError}
|
|
444
|
+
* @memberof BankAccountsApi
|
|
445
|
+
*/
|
|
446
|
+
setPrimaryBankAccount(requestParameters: BankAccountsApiSetPrimaryBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
447
|
+
/**
|
|
448
|
+
* Update a bank account by code
|
|
449
|
+
* @summary Update the Update bank account
|
|
450
|
+
* @param {BankAccountsApiUpdateBankAccountRequest} requestParameters Request parameters.
|
|
451
|
+
* @param {*} [options] Override http request option.
|
|
452
|
+
* @throws {RequiredError}
|
|
453
|
+
* @memberof BankAccountsApi
|
|
454
|
+
*/
|
|
455
|
+
updateBankAccount(requestParameters: BankAccountsApiUpdateBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateBankAccountResponseClass, any>>;
|
|
206
456
|
}
|