@emilgroup/payment-sdk 1.4.1-beta.3 → 1.4.1-beta.31
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 +12 -39
- package/README.md +2 -2
- package/api/bank-accounts-api.ts +497 -47
- package/api/bank-transaction-api.ts +128 -96
- package/api/{default-api.ts → health-check-api.ts} +22 -18
- package/api/payment-methods-api.ts +74 -203
- package/api/payment-reminders-api.ts +76 -66
- package/api/payment-setup-api.ts +29 -37
- package/api/payments-api.ts +66 -89
- package/api/refunds-api.ts +74 -84
- package/api/tenant-bank-account-api.ts +88 -62
- package/api/webhooks-api.ts +17 -13
- package/api.ts +3 -3
- package/base.ts +6 -2
- package/common.ts +2 -2
- package/configuration.ts +1 -1
- package/dist/api/bank-accounts-api.d.ts +297 -49
- package/dist/api/bank-accounts-api.js +416 -28
- package/dist/api/bank-transaction-api.d.ts +109 -91
- package/dist/api/bank-transaction-api.js +83 -68
- package/dist/api/health-check-api.d.ts +70 -0
- package/dist/api/{default-api.js → health-check-api.js} +31 -27
- package/dist/api/payment-methods-api.d.ts +66 -134
- package/dist/api/payment-methods-api.js +55 -157
- package/dist/api/payment-reminders-api.d.ts +72 -65
- package/dist/api/payment-reminders-api.js +48 -42
- 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 +64 -76
- package/dist/api/payments-api.js +47 -55
- package/dist/api/refunds-api.d.ts +74 -74
- package/dist/api/refunds-api.js +52 -48
- package/dist/api/tenant-bank-account-api.d.ts +89 -66
- package/dist/api/tenant-bank-account-api.js +59 -39
- package/dist/api/webhooks-api.d.ts +17 -13
- package/dist/api/webhooks-api.js +15 -11
- package/dist/api.d.ts +2 -2
- package/dist/api.js +2 -2
- 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-transaction-response-class.d.ts → bank-transaction-class-without-expand-properties.d.ts} +26 -34
- package/dist/models/{bank-account-class.js → bank-transaction-class-without-expand-properties.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-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/{bank-transaction-response-class.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-tenant-bank-account-response-class.d.ts +5 -5
- package/dist/models/get-tenant-bank-account-response-class.js +1 -1
- package/dist/models/index.d.ts +11 -38
- package/dist/models/index.js +11 -38
- 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/{billing-profile-limited-response-dto.js → link-bank-transaction-request-dto-rest.js} +1 -1
- package/dist/models/list-tenant-bank-account-response-class.d.ts +31 -0
- package/dist/models/{billing-profile-dto.js → list-tenant-bank-account-response-class.js} +1 -1
- 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 → tenant-bank-account-class-without-expand-properties.d.ts} +11 -11
- package/dist/models/tenant-bank-account-class-without-expand-properties.js +15 -0
- package/dist/models/tenant-bank-account-class.d.ts +73 -0
- package/dist/models/tenant-bank-account-class.js +15 -0
- 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-tenant-bank-account-response-class.d.ts +25 -0
- package/dist/models/update-tenant-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-transaction-response-class.ts → bank-transaction-class-without-expand-properties.ts} +26 -34
- 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-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-tenant-bank-account-response-class.ts +5 -5
- package/models/index.ts +11 -38
- 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-tenant-bank-account-response-class.ts +37 -0
- package/models/set-primary-bank-account-request-dto-rest.ts +30 -0
- package/models/{tenant-bank-account-response-class.ts → tenant-bank-account-class-without-expand-properties.ts} +11 -11
- package/models/tenant-bank-account-class.ts +79 -0
- 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-tenant-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/api/default-api.d.ts +0 -66
- package/dist/models/bank-account-class.d.ts +0 -54
- 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-braintree-payment-setup-request-dto.js +0 -15
- package/dist/models/complete-payment-setup-request-dto.d.ts +0 -32
- package/dist/models/complete-payment-setup-request-dto.js +0 -15
- 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/create-refund-response-class.d.ts +0 -25
- package/dist/models/create-refund-response-class.js +0 -15
- 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-bank-transactions-response-class.d.ts +0 -25
- package/dist/models/get-bank-transactions-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/get-refund-response-class.d.ts +0 -25
- package/dist/models/get-refund-response-class.js +0 -15
- package/dist/models/get-request-dto.d.ts +0 -30
- package/dist/models/get-request-dto.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-bank-transactions-response-class.d.ts +0 -31
- package/dist/models/list-bank-transactions-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/list-refunds-response-class.d.ts +0 -31
- package/dist/models/list-refunds-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/refund-class.d.ts +0 -104
- package/dist/models/refund-class.js +0 -28
- 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/dist/models/tenant-bank-account-response-class.js +0 -15
- package/dist/models/transaction-class.d.ts +0 -54
- package/dist/models/transaction-class.js +0 -15
- package/models/bank-account-class.ts +0 -60
- 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/create-refund-response-class.ts +0 -31
- package/models/deactivate-payment-reminder-response-class.ts +0 -31
- package/models/get-bank-transactions-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/get-refund-response-class.ts +0 -31
- package/models/get-request-dto.ts +0 -36
- 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-bank-transactions-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/list-refunds-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/refund-class.ts +0 -114
- package/models/sepa-direct-dto.ts +0 -30
- package/models/symphony-profile-limited-response-dto.ts +0 -48
- package/models/transaction-class.ts +0 -60
|
@@ -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
|
|
@@ -9,114 +9,106 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { TenantBankAccountResponseClass } from './tenant-bank-account-response-class';
|
|
13
|
-
import { TransactionClass } from './transaction-class';
|
|
14
12
|
/**
|
|
15
13
|
*
|
|
16
14
|
* @export
|
|
17
|
-
* @interface
|
|
15
|
+
* @interface BankTransactionClassWithoutExpandProperties
|
|
18
16
|
*/
|
|
19
|
-
export interface
|
|
17
|
+
export interface BankTransactionClassWithoutExpandProperties {
|
|
20
18
|
/**
|
|
21
19
|
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
22
20
|
* @type {number}
|
|
23
|
-
* @memberof
|
|
21
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
24
22
|
*/
|
|
25
23
|
'id': number;
|
|
26
24
|
/**
|
|
27
25
|
* Unique identifier for the object.
|
|
28
26
|
* @type {string}
|
|
29
|
-
* @memberof
|
|
27
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
30
28
|
*/
|
|
31
29
|
'code': string;
|
|
32
30
|
/**
|
|
33
|
-
*
|
|
31
|
+
* bank account
|
|
34
32
|
* @type {number}
|
|
35
|
-
* @memberof
|
|
33
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
36
34
|
*/
|
|
37
35
|
'bankAccountId': number;
|
|
38
36
|
/**
|
|
39
37
|
* Account number of the bank account
|
|
40
38
|
* @type {string}
|
|
41
|
-
* @memberof
|
|
39
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
42
40
|
*/
|
|
43
41
|
'bankAccountNumber': string;
|
|
44
42
|
/**
|
|
45
43
|
* Reference number derived from the MT940 swift Insturctions
|
|
46
44
|
* @type {string}
|
|
47
|
-
* @memberof
|
|
45
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
48
46
|
*/
|
|
49
47
|
'swiftMessageReference'?: string;
|
|
50
48
|
/**
|
|
51
49
|
* Currency of the transaction.
|
|
52
50
|
* @type {string}
|
|
53
|
-
* @memberof
|
|
51
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
54
52
|
*/
|
|
55
53
|
'currency': string;
|
|
56
54
|
/**
|
|
57
55
|
* Amount of the transaction - can be negative or positive
|
|
58
56
|
* @type {string}
|
|
59
|
-
* @memberof
|
|
57
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
60
58
|
*/
|
|
61
59
|
'amount': string;
|
|
62
60
|
/**
|
|
63
61
|
* Date on which the transaction was executed. Also known as Value Date
|
|
64
62
|
* @type {string}
|
|
65
|
-
* @memberof
|
|
63
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
66
64
|
*/
|
|
67
65
|
'transactionDate': string;
|
|
68
66
|
/**
|
|
69
67
|
* Date on which the transaction entry was made in the system. Also known as Booking Date
|
|
70
68
|
* @type {string}
|
|
71
|
-
* @memberof
|
|
69
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
72
70
|
*/
|
|
73
71
|
'entryDate': string;
|
|
74
72
|
/**
|
|
75
73
|
* Optional reference number that can be given by the customer or bank to uniquely identify a transaction. If no transaction reference is provided the value is set to \'NONREF\'
|
|
76
74
|
* @type {string}
|
|
77
|
-
* @memberof
|
|
75
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
78
76
|
*/
|
|
79
77
|
'transactionReference': string;
|
|
80
78
|
/**
|
|
81
79
|
* Optional metadata that can be provided by the customer or bank to give more context to the transaction
|
|
82
80
|
* @type {object}
|
|
83
|
-
* @memberof
|
|
81
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
84
82
|
*/
|
|
85
83
|
'metadata'?: object;
|
|
86
84
|
/**
|
|
87
85
|
* The id of the PSP transaction that this bank transaction is linked to
|
|
88
86
|
* @type {number}
|
|
89
|
-
* @memberof
|
|
87
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
90
88
|
*/
|
|
91
|
-
'linkedTransactionId'
|
|
89
|
+
'linkedTransactionId'?: number;
|
|
92
90
|
/**
|
|
93
91
|
* The code of the invoice that this bank transaction is linked to
|
|
94
92
|
* @type {string}
|
|
95
|
-
* @memberof
|
|
93
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
96
94
|
*/
|
|
97
95
|
'linkedInvoiceCode'?: string;
|
|
96
|
+
/**
|
|
97
|
+
* The identifying invoice number that this bank transaction is linked to
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
100
|
+
*/
|
|
101
|
+
'linkedInvoiceNumber'?: string;
|
|
98
102
|
/**
|
|
99
103
|
* Boolean flag to indicate if the bank transaction is linked to an invoice - defaults to false
|
|
100
104
|
* @type {boolean}
|
|
101
|
-
* @memberof
|
|
105
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
102
106
|
*/
|
|
103
107
|
'isLinked': boolean;
|
|
104
|
-
/**
|
|
105
|
-
* The bank account object that this transaction is belongs to
|
|
106
|
-
* @type {TenantBankAccountResponseClass}
|
|
107
|
-
* @memberof BankTransactionResponseClass
|
|
108
|
-
*/
|
|
109
|
-
'bankAccount': TenantBankAccountResponseClass;
|
|
110
|
-
/**
|
|
111
|
-
* The linked transaction object
|
|
112
|
-
* @type {TransactionClass}
|
|
113
|
-
* @memberof BankTransactionResponseClass
|
|
114
|
-
*/
|
|
115
|
-
'linkedTransaction': TransactionClass;
|
|
116
108
|
/**
|
|
117
109
|
* Time at which the object was created.
|
|
118
110
|
* @type {string}
|
|
119
|
-
* @memberof
|
|
111
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
120
112
|
*/
|
|
121
113
|
'createdAt': string;
|
|
122
114
|
}
|
package/dist/models/{bank-account-class.js → bank-transaction-class-without-expand-properties.js}
RENAMED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Emil Payment Service
|
|
6
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
6
|
+
* 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.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
9
|
* Contact: kontakt@emil.de
|
|
@@ -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
|
|
@@ -16,15 +16,27 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface CreateBankAccountRequestDto {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* User account code associated with bank account.
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof CreateBankAccountRequestDto
|
|
22
22
|
*/
|
|
23
23
|
'accountCode': string;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* Partner code associated with bank account.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateBankAccountRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'partnerCode': string;
|
|
30
|
+
/**
|
|
31
|
+
* IBAN number for the bank account
|
|
26
32
|
* @type {string}
|
|
27
33
|
* @memberof CreateBankAccountRequestDto
|
|
28
34
|
*/
|
|
29
35
|
'iban': string;
|
|
36
|
+
/**
|
|
37
|
+
* Bank account holder
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateBankAccountRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'accountHolder': string;
|
|
30
42
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Emil Payment Service
|
|
6
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
6
|
+
* 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.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
9
|
* Contact: kontakt@emil.de
|
|
@@ -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
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Emil Payment Service
|
|
6
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
6
|
+
* 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.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
9
|
* Contact: kontakt@emil.de
|
|
@@ -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
|
|
@@ -35,10 +35,10 @@ export interface CreatePaymentRequestDto {
|
|
|
35
35
|
'currency'?: string;
|
|
36
36
|
/**
|
|
37
37
|
* Invoices referenced in this payment. Usually, one payment has one invoice id but it is possible to pay multiple invoices at once with a single payment.
|
|
38
|
-
* @type {Array<
|
|
38
|
+
* @type {Array<string>}
|
|
39
39
|
* @memberof CreatePaymentRequestDto
|
|
40
40
|
*/
|
|
41
|
-
'invoiceIds': Array<
|
|
41
|
+
'invoiceIds': Array<string>;
|
|
42
42
|
/**
|
|
43
43
|
* Optional field contain extra information.
|
|
44
44
|
* @type {object}
|
|
@@ -50,7 +50,7 @@ export interface CreatePaymentRequestDto {
|
|
|
50
50
|
* @type {string}
|
|
51
51
|
* @memberof CreatePaymentRequestDto
|
|
52
52
|
*/
|
|
53
|
-
'productSlug'
|
|
53
|
+
'productSlug': string;
|
|
54
54
|
/**
|
|
55
55
|
* Optional payment date.
|
|
56
56
|
* @type {string}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Emil Payment Service
|
|
6
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
6
|
+
* 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.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
9
|
* Contact: kontakt@emil.de
|
|
@@ -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
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Emil Payment Service
|
|
6
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
6
|
+
* 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.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
9
|
* Contact: kontakt@emil.de
|
|
@@ -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
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Emil Payment Service
|
|
6
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
6
|
+
* 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.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
9
|
* Contact: kontakt@emil.de
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { TenantBankAccountClassWithoutExpandProperties } from './tenant-bank-account-class-without-expand-properties';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateTenantBankAccountResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateTenantBankAccountResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Tenant bank account
|
|
21
|
+
* @type {TenantBankAccountClassWithoutExpandProperties}
|
|
22
|
+
* @memberof CreateTenantBankAccountResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'bankAccount': TenantBankAccountClassWithoutExpandProperties;
|
|
25
|
+
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Emil Payment Service
|
|
6
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
6
|
+
* 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.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
9
|
* Contact: kontakt@emil.de
|
|
@@ -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
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Emil Payment Service
|
|
6
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
6
|
+
* 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.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
9
|
* Contact: kontakt@emil.de
|
|
@@ -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
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { TenantBankAccountClass } from './tenant-bank-account-class';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
@@ -17,9 +17,9 @@ import { TenantBankAccountResponseClass } from './tenant-bank-account-response-c
|
|
|
17
17
|
*/
|
|
18
18
|
export interface GetTenantBankAccountResponseClass {
|
|
19
19
|
/**
|
|
20
|
-
* Tenant
|
|
21
|
-
* @type {
|
|
20
|
+
* Tenant bank account
|
|
21
|
+
* @type {TenantBankAccountClass}
|
|
22
22
|
* @memberof GetTenantBankAccountResponseClass
|
|
23
23
|
*/
|
|
24
|
-
'bankAccount':
|
|
24
|
+
'bankAccount': TenantBankAccountClass;
|
|
25
25
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Emil Payment Service
|
|
6
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
6
|
+
* 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.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
9
|
* Contact: kontakt@emil.de
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,49 +1,22 @@
|
|
|
1
|
-
export * from './bank-
|
|
2
|
-
export * from './bank-transaction-response-class';
|
|
3
|
-
export * from './billing-profile-dto';
|
|
4
|
-
export * from './billing-profile-limited-response-dto';
|
|
5
|
-
export * from './complete-braintree-payment-setup-request-dto';
|
|
6
|
-
export * from './complete-payment-setup-request-dto';
|
|
7
|
-
export * from './complete-payment-setup-response-class';
|
|
8
|
-
export * from './complete-stripe-payment-setup-request-dto';
|
|
1
|
+
export * from './bank-transaction-class-without-expand-properties';
|
|
9
2
|
export * from './create-bank-account-request-dto';
|
|
10
|
-
export * from './create-payment-method-response-class';
|
|
11
3
|
export * from './create-payment-reminder-request-dto';
|
|
12
4
|
export * from './create-payment-request-dto';
|
|
13
|
-
export * from './create-payment-response-class';
|
|
14
|
-
export * from './create-psp-payment-method-request-dto';
|
|
15
5
|
export * from './create-refund-request-dto';
|
|
16
|
-
export * from './create-refund-response-class';
|
|
17
6
|
export * from './create-tenant-bank-account-request-dto';
|
|
7
|
+
export * from './create-tenant-bank-account-response-class';
|
|
18
8
|
export * from './deactivate-payment-reminder-request-dto';
|
|
19
|
-
export * from './deactivate-payment-reminder-response-class';
|
|
20
|
-
export * from './get-bank-transactions-response-class';
|
|
21
|
-
export * from './get-payment-method-response-class';
|
|
22
|
-
export * from './get-payment-response-class';
|
|
23
|
-
export * from './get-refund-response-class';
|
|
24
|
-
export * from './get-request-dto';
|
|
25
9
|
export * from './get-tenant-bank-account-response-class';
|
|
26
|
-
export * from './initiate-braintree-payment-setup-request-dto';
|
|
27
|
-
export * from './initiate-braintree-payment-setup-response-class';
|
|
28
|
-
export * from './initiate-payment-setup-request-dto';
|
|
29
|
-
export * from './initiate-payment-setup-response-class';
|
|
30
|
-
export * from './initiate-stripe-payment-setup-request-dto';
|
|
31
|
-
export * from './initiate-stripe-payment-setup-response-class';
|
|
32
10
|
export * from './inline-response200';
|
|
33
11
|
export * from './inline-response503';
|
|
34
|
-
export * from './
|
|
35
|
-
export * from './list-bank-
|
|
36
|
-
export * from './
|
|
37
|
-
export * from './
|
|
38
|
-
export * from './
|
|
39
|
-
export * from './
|
|
40
|
-
export * from './
|
|
41
|
-
export * from './
|
|
42
|
-
export * from './
|
|
43
|
-
export * from './refund-class';
|
|
44
|
-
export * from './sepa-direct-dto';
|
|
45
|
-
export * from './symphony-profile-limited-response-dto';
|
|
46
|
-
export * from './tenant-bank-account-response-class';
|
|
47
|
-
export * from './transaction-class';
|
|
12
|
+
export * from './link-bank-transaction-request-dto-rest';
|
|
13
|
+
export * from './list-tenant-bank-account-response-class';
|
|
14
|
+
export * from './set-primary-bank-account-request-dto-rest';
|
|
15
|
+
export * from './tenant-bank-account-class';
|
|
16
|
+
export * from './tenant-bank-account-class-without-expand-properties';
|
|
17
|
+
export * from './unlink-bank-transaction-request-dto-rest';
|
|
18
|
+
export * from './update-bank-account-request-dto';
|
|
19
|
+
export * from './update-bank-account-request-dto-rest';
|
|
20
|
+
export * from './update-tenant-bank-account-response-class';
|
|
48
21
|
export * from './update-tenant-bank-account-rest-request-dto';
|
|
49
22
|
export * from './validate-pspconfig-request-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -14,52 +14,25 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./bank-
|
|
18
|
-
__exportStar(require("./bank-transaction-response-class"), exports);
|
|
19
|
-
__exportStar(require("./billing-profile-dto"), exports);
|
|
20
|
-
__exportStar(require("./billing-profile-limited-response-dto"), exports);
|
|
21
|
-
__exportStar(require("./complete-braintree-payment-setup-request-dto"), exports);
|
|
22
|
-
__exportStar(require("./complete-payment-setup-request-dto"), exports);
|
|
23
|
-
__exportStar(require("./complete-payment-setup-response-class"), exports);
|
|
24
|
-
__exportStar(require("./complete-stripe-payment-setup-request-dto"), exports);
|
|
17
|
+
__exportStar(require("./bank-transaction-class-without-expand-properties"), exports);
|
|
25
18
|
__exportStar(require("./create-bank-account-request-dto"), exports);
|
|
26
|
-
__exportStar(require("./create-payment-method-response-class"), exports);
|
|
27
19
|
__exportStar(require("./create-payment-reminder-request-dto"), exports);
|
|
28
20
|
__exportStar(require("./create-payment-request-dto"), exports);
|
|
29
|
-
__exportStar(require("./create-payment-response-class"), exports);
|
|
30
|
-
__exportStar(require("./create-psp-payment-method-request-dto"), exports);
|
|
31
21
|
__exportStar(require("./create-refund-request-dto"), exports);
|
|
32
|
-
__exportStar(require("./create-refund-response-class"), exports);
|
|
33
22
|
__exportStar(require("./create-tenant-bank-account-request-dto"), exports);
|
|
23
|
+
__exportStar(require("./create-tenant-bank-account-response-class"), exports);
|
|
34
24
|
__exportStar(require("./deactivate-payment-reminder-request-dto"), exports);
|
|
35
|
-
__exportStar(require("./deactivate-payment-reminder-response-class"), exports);
|
|
36
|
-
__exportStar(require("./get-bank-transactions-response-class"), exports);
|
|
37
|
-
__exportStar(require("./get-payment-method-response-class"), exports);
|
|
38
|
-
__exportStar(require("./get-payment-response-class"), exports);
|
|
39
|
-
__exportStar(require("./get-refund-response-class"), exports);
|
|
40
|
-
__exportStar(require("./get-request-dto"), exports);
|
|
41
25
|
__exportStar(require("./get-tenant-bank-account-response-class"), exports);
|
|
42
|
-
__exportStar(require("./initiate-braintree-payment-setup-request-dto"), exports);
|
|
43
|
-
__exportStar(require("./initiate-braintree-payment-setup-response-class"), exports);
|
|
44
|
-
__exportStar(require("./initiate-payment-setup-request-dto"), exports);
|
|
45
|
-
__exportStar(require("./initiate-payment-setup-response-class"), exports);
|
|
46
|
-
__exportStar(require("./initiate-stripe-payment-setup-request-dto"), exports);
|
|
47
|
-
__exportStar(require("./initiate-stripe-payment-setup-response-class"), exports);
|
|
48
26
|
__exportStar(require("./inline-response200"), exports);
|
|
49
27
|
__exportStar(require("./inline-response503"), exports);
|
|
50
|
-
__exportStar(require("./
|
|
51
|
-
__exportStar(require("./list-bank-
|
|
52
|
-
__exportStar(require("./
|
|
53
|
-
__exportStar(require("./
|
|
54
|
-
__exportStar(require("./
|
|
55
|
-
__exportStar(require("./
|
|
56
|
-
__exportStar(require("./
|
|
57
|
-
__exportStar(require("./
|
|
58
|
-
__exportStar(require("./
|
|
59
|
-
__exportStar(require("./refund-class"), exports);
|
|
60
|
-
__exportStar(require("./sepa-direct-dto"), exports);
|
|
61
|
-
__exportStar(require("./symphony-profile-limited-response-dto"), exports);
|
|
62
|
-
__exportStar(require("./tenant-bank-account-response-class"), exports);
|
|
63
|
-
__exportStar(require("./transaction-class"), exports);
|
|
28
|
+
__exportStar(require("./link-bank-transaction-request-dto-rest"), exports);
|
|
29
|
+
__exportStar(require("./list-tenant-bank-account-response-class"), exports);
|
|
30
|
+
__exportStar(require("./set-primary-bank-account-request-dto-rest"), exports);
|
|
31
|
+
__exportStar(require("./tenant-bank-account-class"), exports);
|
|
32
|
+
__exportStar(require("./tenant-bank-account-class-without-expand-properties"), exports);
|
|
33
|
+
__exportStar(require("./unlink-bank-transaction-request-dto-rest"), exports);
|
|
34
|
+
__exportStar(require("./update-bank-account-request-dto"), exports);
|
|
35
|
+
__exportStar(require("./update-bank-account-request-dto-rest"), exports);
|
|
36
|
+
__exportStar(require("./update-tenant-bank-account-response-class"), exports);
|
|
64
37
|
__exportStar(require("./update-tenant-bank-account-rest-request-dto"), exports);
|
|
65
38
|
__exportStar(require("./validate-pspconfig-request-dto"), exports);
|
|
@@ -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
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Emil Payment Service
|
|
6
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
6
|
+
* 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.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
9
|
* Contact: kontakt@emil.de
|
|
@@ -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
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Emil Payment Service
|
|
6
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
6
|
+
* 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.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
9
|
* Contact: kontakt@emil.de
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface LinkBankTransactionRequestDtoRest
|
|
16
|
+
*/
|
|
17
|
+
export interface LinkBankTransactionRequestDtoRest {
|
|
18
|
+
/**
|
|
19
|
+
* The code of the invoice that the transaction will be linked to.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof LinkBankTransactionRequestDtoRest
|
|
22
|
+
*/
|
|
23
|
+
'invoiceCode': string;
|
|
24
|
+
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Emil Payment Service
|
|
6
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
6
|
+
* 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.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
9
|
* Contact: kontakt@emil.de
|