@emilgroup/payment-sdk 1.13.1-beta.13 → 1.13.1-beta.130
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 +24 -1
- package/README.md +2 -2
- package/api/bank-accounts-api.ts +55 -13
- package/api/bank-orders-api.ts +130 -57
- package/api/bank-transaction-api.ts +59 -48
- package/api/exceeding-credits-api.ts +349 -0
- package/api/payment-methods-api.ts +59 -17
- package/api/payment-reminders-api.ts +55 -13
- package/api/payments-api.ts +180 -17
- package/api/policy-payment-methods-api.ts +471 -0
- package/api/refunds-api.ts +45 -17
- package/api/tenant-bank-account-api.ts +45 -17
- package/api.ts +4 -0
- package/base.ts +10 -32
- package/common.ts +2 -2
- package/configuration.ts +0 -9
- package/dist/api/bank-accounts-api.d.ts +35 -8
- package/dist/api/bank-accounts-api.js +29 -11
- package/dist/api/bank-orders-api.d.ts +92 -46
- package/dist/api/bank-orders-api.js +83 -52
- package/dist/api/bank-transaction-api.d.ts +39 -31
- package/dist/api/bank-transaction-api.js +36 -31
- package/dist/api/exceeding-credits-api.d.ts +206 -0
- package/dist/api/exceeding-credits-api.js +352 -0
- package/dist/api/payment-methods-api.d.ts +39 -12
- package/dist/api/payment-methods-api.js +32 -14
- package/dist/api/payment-reminders-api.d.ts +35 -8
- package/dist/api/payment-reminders-api.js +29 -11
- package/dist/api/payments-api.d.ts +104 -12
- package/dist/api/payments-api.js +133 -14
- package/dist/api/policy-payment-methods-api.d.ts +272 -0
- package/dist/api/policy-payment-methods-api.js +452 -0
- package/dist/api/refunds-api.d.ts +28 -10
- package/dist/api/refunds-api.js +24 -12
- package/dist/api/tenant-bank-account-api.d.ts +28 -10
- package/dist/api/tenant-bank-account-api.js +24 -12
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/base.d.ts +2 -4
- package/dist/base.js +21 -40
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +0 -6
- package/dist/configuration.js +0 -8
- package/dist/models/activate-policy-payment-method-request-dto.d.ts +24 -0
- package/dist/models/bank-order-class.d.ts +23 -3
- package/dist/models/bank-order-xml-file-class.d.ts +72 -0
- package/dist/models/bank-order-xml-file-class.js +15 -0
- package/dist/models/bank-transaction-class-without-expand-properties.d.ts +18 -18
- package/dist/models/bank-transaction-class-without-expand-properties.js +5 -0
- package/dist/models/bank-transaction-class.d.ts +22 -22
- package/dist/models/bank-transaction-class.js +5 -0
- package/dist/models/bank-transaction-invoice-class.d.ts +60 -0
- package/dist/models/bank-transaction-invoice-class.js +15 -0
- package/dist/models/bank-transfer-dto.d.ts +25 -0
- package/dist/models/bank-transfer-dto.js +15 -0
- package/dist/models/billing-address-dto.d.ts +54 -0
- package/dist/models/billing-address-dto.js +15 -0
- package/dist/models/complete-adyen-payment-setup-request-dto.d.ts +2 -0
- package/dist/models/complete-adyen-payment-setup-request-dto.js +3 -1
- package/dist/models/complete-eis-payment-setup-request-dto.d.ts +36 -0
- package/dist/models/complete-eis-payment-setup-request-dto.js +15 -0
- package/dist/models/complete-payment-setup-request-dto.d.ts +7 -0
- package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +2 -0
- package/dist/models/complete-stripe-payment-setup-request-dto.js +3 -1
- package/dist/models/create-bank-order-request-dto.d.ts +9 -9
- package/dist/models/create-payment-order-dto.d.ts +48 -0
- package/dist/models/create-payment-order-dto.js +15 -0
- package/dist/models/create-payment-order-request-dto.d.ts +48 -0
- package/dist/models/create-payment-order-request-dto.js +15 -0
- package/dist/models/create-payment-reminder-request-dto.d.ts +7 -1
- package/dist/models/create-payment-request-dto.d.ts +7 -1
- package/dist/models/create-policy-payment-method-request-dto.d.ts +30 -0
- package/dist/models/create-policy-payment-method-request-dto.js +15 -0
- package/dist/models/create-policy-payment-method-response-class.d.ts +25 -0
- package/dist/models/create-policy-payment-method-response-class.js +15 -0
- package/dist/models/create-psp-payment-method-request-dto.d.ts +29 -1
- package/dist/models/create-psp-payment-method-request-dto.js +3 -1
- package/dist/models/create-tenant-bank-account-request-dto.d.ts +30 -0
- package/dist/models/deactivated-payment-reminder-class.d.ts +7 -1
- package/dist/models/eis-sepa-debit-dto.d.ts +55 -0
- package/dist/models/eis-sepa-debit-dto.js +15 -0
- package/dist/models/exceeding-credit-class.d.ts +116 -0
- package/dist/models/exceeding-credit-class.js +29 -0
- package/dist/models/financial-account-class.d.ts +111 -0
- package/dist/models/financial-account-class.js +24 -0
- package/dist/models/get-exceeding-credit-response-class.d.ts +25 -0
- package/dist/models/get-exceeding-credit-response-class.js +15 -0
- package/dist/models/index.d.ts +22 -1
- package/dist/models/index.js +22 -1
- package/dist/models/initiate-adyen-payment-setup-request-dto.d.ts +6 -0
- package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +6 -0
- package/dist/models/initiate-eis-payment-setup-request-dto.d.ts +36 -0
- package/dist/models/initiate-eis-payment-setup-request-dto.js +15 -0
- package/dist/models/initiate-payment-setup-request-dto.d.ts +3 -2
- package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +6 -0
- package/dist/models/{unlink-bank-transaction-request-dto-rest.d.ts → invoice-allocation-dto.d.ts} +10 -4
- package/dist/models/invoice-allocation-dto.js +15 -0
- package/dist/models/link-bank-transaction-request-dto-rest.d.ts +4 -3
- package/dist/models/list-exceeding-credits-response-class.d.ts +31 -0
- package/dist/models/list-exceeding-credits-response-class.js +15 -0
- package/dist/models/list-policy-payment-methods-response-class.d.ts +31 -0
- package/dist/models/list-policy-payment-methods-response-class.js +15 -0
- package/dist/models/mandate-dto.d.ts +43 -0
- package/dist/models/mandate-dto.js +15 -0
- package/dist/models/mandate-hash-data-dto.d.ts +42 -0
- package/dist/models/mandate-hash-data-dto.js +15 -0
- package/dist/models/mandate-reference-class.d.ts +90 -0
- package/dist/models/mandate-reference-class.js +15 -0
- package/dist/models/payment-class-without-expand-properties.d.ts +7 -1
- package/dist/models/payment-class.d.ts +7 -1
- package/dist/models/payment-method-class.d.ts +6 -0
- package/dist/models/payment-reminder-class.d.ts +7 -1
- package/dist/models/policy-payment-method-class.d.ts +86 -0
- package/dist/models/policy-payment-method-class.js +15 -0
- package/dist/models/refund-class.d.ts +7 -1
- package/dist/models/tenant-bank-account-class-without-expand-properties.d.ts +30 -0
- package/dist/models/tenant-bank-account-class.d.ts +30 -0
- package/dist/models/unlinked-bank-transaction-response-class.d.ts +18 -0
- package/dist/models/unlinked-bank-transaction-response-class.js +5 -0
- package/dist/models/update-bank-order-request-dto.d.ts +12 -12
- package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +30 -0
- package/models/activate-policy-payment-method-request-dto.ts +30 -0
- package/models/bank-order-class.ts +23 -3
- package/models/bank-order-xml-file-class.ts +78 -0
- package/models/bank-transaction-class-without-expand-properties.ts +21 -18
- package/models/bank-transaction-class.ts +25 -22
- package/models/bank-transaction-invoice-class.ts +66 -0
- package/models/bank-transfer-dto.ts +31 -0
- package/models/billing-address-dto.ts +60 -0
- package/models/complete-adyen-payment-setup-request-dto.ts +3 -1
- package/models/complete-eis-payment-setup-request-dto.ts +42 -0
- package/models/complete-payment-setup-request-dto.ts +7 -0
- package/models/complete-stripe-payment-setup-request-dto.ts +3 -1
- package/models/create-bank-order-request-dto.ts +9 -9
- package/models/create-payment-order-dto.ts +54 -0
- package/models/create-payment-order-request-dto.ts +54 -0
- package/models/create-payment-reminder-request-dto.ts +7 -1
- package/models/create-payment-request-dto.ts +7 -1
- package/models/create-policy-payment-method-request-dto.ts +36 -0
- package/models/create-policy-payment-method-response-class.ts +31 -0
- package/models/create-psp-payment-method-request-dto.ts +30 -2
- package/models/create-tenant-bank-account-request-dto.ts +30 -0
- package/models/deactivated-payment-reminder-class.ts +7 -1
- package/models/eis-sepa-debit-dto.ts +61 -0
- package/models/exceeding-credit-class.ts +125 -0
- package/models/financial-account-class.ts +120 -0
- package/models/get-exceeding-credit-response-class.ts +31 -0
- package/models/index.ts +22 -1
- package/models/initiate-adyen-payment-setup-request-dto.ts +6 -0
- package/models/initiate-braintree-payment-setup-request-dto.ts +6 -0
- package/models/initiate-eis-payment-setup-request-dto.ts +42 -0
- package/models/initiate-payment-setup-request-dto.ts +3 -2
- package/models/initiate-stripe-payment-setup-request-dto.ts +6 -0
- package/models/{unlink-bank-transaction-request-dto-rest.ts → invoice-allocation-dto.ts} +10 -4
- package/models/link-bank-transaction-request-dto-rest.ts +4 -3
- package/models/list-exceeding-credits-response-class.ts +37 -0
- package/models/list-policy-payment-methods-response-class.ts +37 -0
- package/models/mandate-dto.ts +49 -0
- package/models/mandate-hash-data-dto.ts +48 -0
- package/models/mandate-reference-class.ts +96 -0
- package/models/payment-class-without-expand-properties.ts +7 -1
- package/models/payment-class.ts +7 -1
- package/models/payment-method-class.ts +6 -0
- package/models/payment-reminder-class.ts +7 -1
- package/models/policy-payment-method-class.ts +92 -0
- package/models/refund-class.ts +7 -1
- package/models/tenant-bank-account-class-without-expand-properties.ts +30 -0
- package/models/tenant-bank-account-class.ts +30 -0
- package/models/unlinked-bank-transaction-response-class.ts +21 -0
- package/models/update-bank-order-request-dto.ts +12 -12
- package/models/update-tenant-bank-account-rest-request-dto.ts +30 -0
- package/package.json +1 -1
- package/tsconfig.json +0 -1
- /package/dist/models/{unlink-bank-transaction-request-dto-rest.js → activate-policy-payment-method-request-dto.js} +0 -0
|
@@ -0,0 +1,111 @@
|
|
|
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 FinancialAccountClass
|
|
16
|
+
*/
|
|
17
|
+
export interface FinancialAccountClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof FinancialAccountClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier for the object.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof FinancialAccountClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* The name of the account.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof FinancialAccountClass
|
|
34
|
+
*/
|
|
35
|
+
'name': string;
|
|
36
|
+
/**
|
|
37
|
+
* The financial account number.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof FinancialAccountClass
|
|
40
|
+
*/
|
|
41
|
+
'financialAccountNumber': string;
|
|
42
|
+
/**
|
|
43
|
+
* The ID of the parent account, if any.
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof FinancialAccountClass
|
|
46
|
+
*/
|
|
47
|
+
'parentId': number;
|
|
48
|
+
/**
|
|
49
|
+
* The partner number of the account.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof FinancialAccountClass
|
|
52
|
+
*/
|
|
53
|
+
'partnerNumber': string;
|
|
54
|
+
/**
|
|
55
|
+
* The type of account, e.g. \"Asset\", \"Liability\", \"Equity\", \"Revenue\", \"Expense\".
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof FinancialAccountClass
|
|
58
|
+
*/
|
|
59
|
+
'type': FinancialAccountClassTypeEnum;
|
|
60
|
+
/**
|
|
61
|
+
* Metadata about the object.
|
|
62
|
+
* @type {object}
|
|
63
|
+
* @memberof FinancialAccountClass
|
|
64
|
+
*/
|
|
65
|
+
'customFields': object;
|
|
66
|
+
/**
|
|
67
|
+
* The description of the account.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof FinancialAccountClass
|
|
70
|
+
*/
|
|
71
|
+
'description': string;
|
|
72
|
+
/**
|
|
73
|
+
* Whether the account is clearable.
|
|
74
|
+
* @type {boolean}
|
|
75
|
+
* @memberof FinancialAccountClass
|
|
76
|
+
*/
|
|
77
|
+
'clearable': boolean;
|
|
78
|
+
/**
|
|
79
|
+
* Time at which the object was created.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof FinancialAccountClass
|
|
82
|
+
*/
|
|
83
|
+
'createdAt': string;
|
|
84
|
+
/**
|
|
85
|
+
* Time at which the object was updated.
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof FinancialAccountClass
|
|
88
|
+
*/
|
|
89
|
+
'updatedAt': string;
|
|
90
|
+
/**
|
|
91
|
+
* Identifier of the user who created the record.
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof FinancialAccountClass
|
|
94
|
+
*/
|
|
95
|
+
'createdBy': string;
|
|
96
|
+
/**
|
|
97
|
+
* Identifier of the user who last updated the record.
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof FinancialAccountClass
|
|
100
|
+
*/
|
|
101
|
+
'updatedBy': string;
|
|
102
|
+
}
|
|
103
|
+
export declare const FinancialAccountClassTypeEnum: {
|
|
104
|
+
readonly Asset: "asset";
|
|
105
|
+
readonly Liability: "liability";
|
|
106
|
+
readonly Equity: "equity";
|
|
107
|
+
readonly Revenue: "revenue";
|
|
108
|
+
readonly Expense: "expense";
|
|
109
|
+
readonly OpeningBalance: "opening_balance";
|
|
110
|
+
};
|
|
111
|
+
export type FinancialAccountClassTypeEnum = typeof FinancialAccountClassTypeEnum[keyof typeof FinancialAccountClassTypeEnum];
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
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
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.FinancialAccountClassTypeEnum = void 0;
|
|
17
|
+
exports.FinancialAccountClassTypeEnum = {
|
|
18
|
+
Asset: 'asset',
|
|
19
|
+
Liability: 'liability',
|
|
20
|
+
Equity: 'equity',
|
|
21
|
+
Revenue: 'revenue',
|
|
22
|
+
Expense: 'expense',
|
|
23
|
+
OpeningBalance: 'opening_balance'
|
|
24
|
+
};
|
|
@@ -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 { ExceedingCreditClass } from './exceeding-credit-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetExceedingCreditResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetExceedingCreditResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Exceeding credit
|
|
21
|
+
* @type {ExceedingCreditClass}
|
|
22
|
+
* @memberof GetExceedingCreditResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'exceedingCredit': ExceedingCreditClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
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
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
|
+
export * from './activate-policy-payment-method-request-dto';
|
|
1
2
|
export * from './bank-account-class';
|
|
2
3
|
export * from './bank-account-class-without-expand-properties';
|
|
3
4
|
export * from './bank-order-class';
|
|
5
|
+
export * from './bank-order-xml-file-class';
|
|
4
6
|
export * from './bank-transaction-class';
|
|
5
7
|
export * from './bank-transaction-class-without-expand-properties';
|
|
8
|
+
export * from './bank-transaction-invoice-class';
|
|
9
|
+
export * from './bank-transfer-dto';
|
|
10
|
+
export * from './billing-address-dto';
|
|
6
11
|
export * from './billing-profile-dto';
|
|
7
12
|
export * from './billing-profile-limited-response-dto';
|
|
8
13
|
export * from './card-details-dto';
|
|
9
14
|
export * from './complete-adyen-payment-setup-request-dto';
|
|
10
15
|
export * from './complete-braintree-payment-setup-request-dto';
|
|
16
|
+
export * from './complete-eis-payment-setup-request-dto';
|
|
11
17
|
export * from './complete-payment-setup-request-dto';
|
|
12
18
|
export * from './complete-payment-setup-response-class';
|
|
13
19
|
export * from './complete-stripe-payment-setup-request-dto';
|
|
@@ -16,10 +22,14 @@ export * from './create-bank-account-response-class';
|
|
|
16
22
|
export * from './create-bank-order-request-dto';
|
|
17
23
|
export * from './create-bank-order-response-class';
|
|
18
24
|
export * from './create-payment-method-response-class';
|
|
25
|
+
export * from './create-payment-order-dto';
|
|
26
|
+
export * from './create-payment-order-request-dto';
|
|
19
27
|
export * from './create-payment-reminder-request-dto';
|
|
20
28
|
export * from './create-payment-reminder-response-class';
|
|
21
29
|
export * from './create-payment-request-dto';
|
|
22
30
|
export * from './create-payment-response-class';
|
|
31
|
+
export * from './create-policy-payment-method-request-dto';
|
|
32
|
+
export * from './create-policy-payment-method-response-class';
|
|
23
33
|
export * from './create-psp-payment-method-request-dto';
|
|
24
34
|
export * from './create-refund-request-dto';
|
|
25
35
|
export * from './create-refund-response-class';
|
|
@@ -28,10 +38,14 @@ export * from './create-tenant-bank-account-response-class';
|
|
|
28
38
|
export * from './deactivate-payment-reminder-request-dto';
|
|
29
39
|
export * from './deactivate-payment-reminder-response-class';
|
|
30
40
|
export * from './deactivated-payment-reminder-class';
|
|
41
|
+
export * from './eis-sepa-debit-dto';
|
|
42
|
+
export * from './exceeding-credit-class';
|
|
43
|
+
export * from './financial-account-class';
|
|
31
44
|
export * from './generate-invoice-match-suggestions-response-class';
|
|
32
45
|
export * from './get-bank-account-response-class';
|
|
33
46
|
export * from './get-bank-order-response-class';
|
|
34
47
|
export * from './get-bank-transactions-response-class';
|
|
48
|
+
export * from './get-exceeding-credit-response-class';
|
|
35
49
|
export * from './get-payment-method-response-class';
|
|
36
50
|
export * from './get-payment-reminder-response-class';
|
|
37
51
|
export * from './get-payment-response-class';
|
|
@@ -42,27 +56,35 @@ export * from './initiate-adyen-payment-setup-request-dto';
|
|
|
42
56
|
export * from './initiate-adyen-payment-setup-response-class';
|
|
43
57
|
export * from './initiate-braintree-payment-setup-request-dto';
|
|
44
58
|
export * from './initiate-braintree-payment-setup-response-class';
|
|
59
|
+
export * from './initiate-eis-payment-setup-request-dto';
|
|
45
60
|
export * from './initiate-payment-setup-request-dto';
|
|
46
61
|
export * from './initiate-payment-setup-response-class';
|
|
47
62
|
export * from './initiate-stripe-payment-setup-request-dto';
|
|
48
63
|
export * from './initiate-stripe-payment-setup-response-class';
|
|
49
64
|
export * from './inline-response200';
|
|
50
65
|
export * from './inline-response503';
|
|
66
|
+
export * from './invoice-allocation-dto';
|
|
51
67
|
export * from './invoice-match-suggestion-class';
|
|
52
68
|
export * from './link-bank-transaction-request-dto-rest';
|
|
53
69
|
export * from './link-bank-transactions-response-class';
|
|
54
70
|
export * from './list-bank-accounts-response-class';
|
|
55
71
|
export * from './list-bank-orders-response-class';
|
|
56
72
|
export * from './list-bank-transactions-response-class';
|
|
73
|
+
export * from './list-exceeding-credits-response-class';
|
|
57
74
|
export * from './list-payment-methods-response-class';
|
|
58
75
|
export * from './list-payment-reminders-response-class';
|
|
59
76
|
export * from './list-payments-response-class';
|
|
77
|
+
export * from './list-policy-payment-methods-response-class';
|
|
60
78
|
export * from './list-refunds-response-class';
|
|
61
79
|
export * from './list-tenant-bank-account-response-class';
|
|
80
|
+
export * from './mandate-dto';
|
|
81
|
+
export * from './mandate-hash-data-dto';
|
|
82
|
+
export * from './mandate-reference-class';
|
|
62
83
|
export * from './payment-class';
|
|
63
84
|
export * from './payment-class-without-expand-properties';
|
|
64
85
|
export * from './payment-method-class';
|
|
65
86
|
export * from './payment-reminder-class';
|
|
87
|
+
export * from './policy-payment-method-class';
|
|
66
88
|
export * from './primary-bank-account-response-class';
|
|
67
89
|
export * from './refund-class';
|
|
68
90
|
export * from './refund-item-class';
|
|
@@ -73,7 +95,6 @@ export * from './suggestion-generation-progress-class';
|
|
|
73
95
|
export * from './symphony-profile-limited-response-dto';
|
|
74
96
|
export * from './tenant-bank-account-class';
|
|
75
97
|
export * from './tenant-bank-account-class-without-expand-properties';
|
|
76
|
-
export * from './unlink-bank-transaction-request-dto-rest';
|
|
77
98
|
export * from './unlink-bank-transactions-response-class';
|
|
78
99
|
export * from './unlinked-bank-transaction-response-class';
|
|
79
100
|
export * from './update-bank-account-request-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -14,16 +14,22 @@ 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("./activate-policy-payment-method-request-dto"), exports);
|
|
17
18
|
__exportStar(require("./bank-account-class"), exports);
|
|
18
19
|
__exportStar(require("./bank-account-class-without-expand-properties"), exports);
|
|
19
20
|
__exportStar(require("./bank-order-class"), exports);
|
|
21
|
+
__exportStar(require("./bank-order-xml-file-class"), exports);
|
|
20
22
|
__exportStar(require("./bank-transaction-class"), exports);
|
|
21
23
|
__exportStar(require("./bank-transaction-class-without-expand-properties"), exports);
|
|
24
|
+
__exportStar(require("./bank-transaction-invoice-class"), exports);
|
|
25
|
+
__exportStar(require("./bank-transfer-dto"), exports);
|
|
26
|
+
__exportStar(require("./billing-address-dto"), exports);
|
|
22
27
|
__exportStar(require("./billing-profile-dto"), exports);
|
|
23
28
|
__exportStar(require("./billing-profile-limited-response-dto"), exports);
|
|
24
29
|
__exportStar(require("./card-details-dto"), exports);
|
|
25
30
|
__exportStar(require("./complete-adyen-payment-setup-request-dto"), exports);
|
|
26
31
|
__exportStar(require("./complete-braintree-payment-setup-request-dto"), exports);
|
|
32
|
+
__exportStar(require("./complete-eis-payment-setup-request-dto"), exports);
|
|
27
33
|
__exportStar(require("./complete-payment-setup-request-dto"), exports);
|
|
28
34
|
__exportStar(require("./complete-payment-setup-response-class"), exports);
|
|
29
35
|
__exportStar(require("./complete-stripe-payment-setup-request-dto"), exports);
|
|
@@ -32,10 +38,14 @@ __exportStar(require("./create-bank-account-response-class"), exports);
|
|
|
32
38
|
__exportStar(require("./create-bank-order-request-dto"), exports);
|
|
33
39
|
__exportStar(require("./create-bank-order-response-class"), exports);
|
|
34
40
|
__exportStar(require("./create-payment-method-response-class"), exports);
|
|
41
|
+
__exportStar(require("./create-payment-order-dto"), exports);
|
|
42
|
+
__exportStar(require("./create-payment-order-request-dto"), exports);
|
|
35
43
|
__exportStar(require("./create-payment-reminder-request-dto"), exports);
|
|
36
44
|
__exportStar(require("./create-payment-reminder-response-class"), exports);
|
|
37
45
|
__exportStar(require("./create-payment-request-dto"), exports);
|
|
38
46
|
__exportStar(require("./create-payment-response-class"), exports);
|
|
47
|
+
__exportStar(require("./create-policy-payment-method-request-dto"), exports);
|
|
48
|
+
__exportStar(require("./create-policy-payment-method-response-class"), exports);
|
|
39
49
|
__exportStar(require("./create-psp-payment-method-request-dto"), exports);
|
|
40
50
|
__exportStar(require("./create-refund-request-dto"), exports);
|
|
41
51
|
__exportStar(require("./create-refund-response-class"), exports);
|
|
@@ -44,10 +54,14 @@ __exportStar(require("./create-tenant-bank-account-response-class"), exports);
|
|
|
44
54
|
__exportStar(require("./deactivate-payment-reminder-request-dto"), exports);
|
|
45
55
|
__exportStar(require("./deactivate-payment-reminder-response-class"), exports);
|
|
46
56
|
__exportStar(require("./deactivated-payment-reminder-class"), exports);
|
|
57
|
+
__exportStar(require("./eis-sepa-debit-dto"), exports);
|
|
58
|
+
__exportStar(require("./exceeding-credit-class"), exports);
|
|
59
|
+
__exportStar(require("./financial-account-class"), exports);
|
|
47
60
|
__exportStar(require("./generate-invoice-match-suggestions-response-class"), exports);
|
|
48
61
|
__exportStar(require("./get-bank-account-response-class"), exports);
|
|
49
62
|
__exportStar(require("./get-bank-order-response-class"), exports);
|
|
50
63
|
__exportStar(require("./get-bank-transactions-response-class"), exports);
|
|
64
|
+
__exportStar(require("./get-exceeding-credit-response-class"), exports);
|
|
51
65
|
__exportStar(require("./get-payment-method-response-class"), exports);
|
|
52
66
|
__exportStar(require("./get-payment-reminder-response-class"), exports);
|
|
53
67
|
__exportStar(require("./get-payment-response-class"), exports);
|
|
@@ -58,27 +72,35 @@ __exportStar(require("./initiate-adyen-payment-setup-request-dto"), exports);
|
|
|
58
72
|
__exportStar(require("./initiate-adyen-payment-setup-response-class"), exports);
|
|
59
73
|
__exportStar(require("./initiate-braintree-payment-setup-request-dto"), exports);
|
|
60
74
|
__exportStar(require("./initiate-braintree-payment-setup-response-class"), exports);
|
|
75
|
+
__exportStar(require("./initiate-eis-payment-setup-request-dto"), exports);
|
|
61
76
|
__exportStar(require("./initiate-payment-setup-request-dto"), exports);
|
|
62
77
|
__exportStar(require("./initiate-payment-setup-response-class"), exports);
|
|
63
78
|
__exportStar(require("./initiate-stripe-payment-setup-request-dto"), exports);
|
|
64
79
|
__exportStar(require("./initiate-stripe-payment-setup-response-class"), exports);
|
|
65
80
|
__exportStar(require("./inline-response200"), exports);
|
|
66
81
|
__exportStar(require("./inline-response503"), exports);
|
|
82
|
+
__exportStar(require("./invoice-allocation-dto"), exports);
|
|
67
83
|
__exportStar(require("./invoice-match-suggestion-class"), exports);
|
|
68
84
|
__exportStar(require("./link-bank-transaction-request-dto-rest"), exports);
|
|
69
85
|
__exportStar(require("./link-bank-transactions-response-class"), exports);
|
|
70
86
|
__exportStar(require("./list-bank-accounts-response-class"), exports);
|
|
71
87
|
__exportStar(require("./list-bank-orders-response-class"), exports);
|
|
72
88
|
__exportStar(require("./list-bank-transactions-response-class"), exports);
|
|
89
|
+
__exportStar(require("./list-exceeding-credits-response-class"), exports);
|
|
73
90
|
__exportStar(require("./list-payment-methods-response-class"), exports);
|
|
74
91
|
__exportStar(require("./list-payment-reminders-response-class"), exports);
|
|
75
92
|
__exportStar(require("./list-payments-response-class"), exports);
|
|
93
|
+
__exportStar(require("./list-policy-payment-methods-response-class"), exports);
|
|
76
94
|
__exportStar(require("./list-refunds-response-class"), exports);
|
|
77
95
|
__exportStar(require("./list-tenant-bank-account-response-class"), exports);
|
|
96
|
+
__exportStar(require("./mandate-dto"), exports);
|
|
97
|
+
__exportStar(require("./mandate-hash-data-dto"), exports);
|
|
98
|
+
__exportStar(require("./mandate-reference-class"), exports);
|
|
78
99
|
__exportStar(require("./payment-class"), exports);
|
|
79
100
|
__exportStar(require("./payment-class-without-expand-properties"), exports);
|
|
80
101
|
__exportStar(require("./payment-method-class"), exports);
|
|
81
102
|
__exportStar(require("./payment-reminder-class"), exports);
|
|
103
|
+
__exportStar(require("./policy-payment-method-class"), exports);
|
|
82
104
|
__exportStar(require("./primary-bank-account-response-class"), exports);
|
|
83
105
|
__exportStar(require("./refund-class"), exports);
|
|
84
106
|
__exportStar(require("./refund-item-class"), exports);
|
|
@@ -89,7 +111,6 @@ __exportStar(require("./suggestion-generation-progress-class"), exports);
|
|
|
89
111
|
__exportStar(require("./symphony-profile-limited-response-dto"), exports);
|
|
90
112
|
__exportStar(require("./tenant-bank-account-class"), exports);
|
|
91
113
|
__exportStar(require("./tenant-bank-account-class-without-expand-properties"), exports);
|
|
92
|
-
__exportStar(require("./unlink-bank-transaction-request-dto-rest"), exports);
|
|
93
114
|
__exportStar(require("./unlink-bank-transactions-response-class"), exports);
|
|
94
115
|
__exportStar(require("./unlinked-bank-transaction-response-class"), exports);
|
|
95
116
|
__exportStar(require("./update-bank-account-request-dto"), exports);
|
|
@@ -27,4 +27,10 @@ export interface InitiateAdyenPaymentSetupRequestDto {
|
|
|
27
27
|
* @memberof InitiateAdyenPaymentSetupRequestDto
|
|
28
28
|
*/
|
|
29
29
|
'accountCode'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier of the partner that this object belongs to.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof InitiateAdyenPaymentSetupRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'partnerCode'?: string;
|
|
30
36
|
}
|
|
@@ -27,4 +27,10 @@ export interface InitiateBraintreePaymentSetupRequestDto {
|
|
|
27
27
|
* @memberof InitiateBraintreePaymentSetupRequestDto
|
|
28
28
|
*/
|
|
29
29
|
'accountCode'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier of the partner that this object belongs to.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof InitiateBraintreePaymentSetupRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'partnerCode'?: string;
|
|
30
36
|
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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 InitiateEisPaymentSetupRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface InitiateEisPaymentSetupRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Unique identifier of the lead that this object belongs to.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InitiateEisPaymentSetupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'leadCode'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier of the account that this object belongs to.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof InitiateEisPaymentSetupRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'accountCode'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier of the partner that this object belongs to.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof InitiateEisPaymentSetupRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'partnerCode'?: string;
|
|
36
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
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
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { InitiateAdyenPaymentSetupRequestDto } from './initiate-adyen-payment-setup-request-dto';
|
|
13
13
|
import { InitiateBraintreePaymentSetupRequestDto } from './initiate-braintree-payment-setup-request-dto';
|
|
14
|
+
import { InitiateEisPaymentSetupRequestDto } from './initiate-eis-payment-setup-request-dto';
|
|
14
15
|
import { InitiateStripePaymentSetupRequestDto } from './initiate-stripe-payment-setup-request-dto';
|
|
15
16
|
/**
|
|
16
17
|
*
|
|
@@ -38,10 +39,10 @@ export interface InitiatePaymentSetupRequestDto {
|
|
|
38
39
|
'b4u'?: object;
|
|
39
40
|
/**
|
|
40
41
|
*
|
|
41
|
-
* @type {
|
|
42
|
+
* @type {InitiateEisPaymentSetupRequestDto}
|
|
42
43
|
* @memberof InitiatePaymentSetupRequestDto
|
|
43
44
|
*/
|
|
44
|
-
'eis'?:
|
|
45
|
+
'eis'?: InitiateEisPaymentSetupRequestDto;
|
|
45
46
|
/**
|
|
46
47
|
*
|
|
47
48
|
* @type {InitiateAdyenPaymentSetupRequestDto}
|
|
@@ -27,4 +27,10 @@ export interface InitiateStripePaymentSetupRequestDto {
|
|
|
27
27
|
* @memberof InitiateStripePaymentSetupRequestDto
|
|
28
28
|
*/
|
|
29
29
|
'accountCode'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier of the partner that this object belongs to.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof InitiateStripePaymentSetupRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'partnerCode'?: string;
|
|
30
36
|
}
|
package/dist/models/{unlink-bank-transaction-request-dto-rest.d.ts → invoice-allocation-dto.d.ts}
RENAMED
|
@@ -12,13 +12,19 @@
|
|
|
12
12
|
/**
|
|
13
13
|
*
|
|
14
14
|
* @export
|
|
15
|
-
* @interface
|
|
15
|
+
* @interface InvoiceAllocationDto
|
|
16
16
|
*/
|
|
17
|
-
export interface
|
|
17
|
+
export interface InvoiceAllocationDto {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
*
|
|
20
20
|
* @type {string}
|
|
21
|
-
* @memberof
|
|
21
|
+
* @memberof InvoiceAllocationDto
|
|
22
22
|
*/
|
|
23
23
|
'invoiceCode': string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof InvoiceAllocationDto
|
|
28
|
+
*/
|
|
29
|
+
'allocatedAmount': number;
|
|
24
30
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
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
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { InvoiceAllocationDto } from './invoice-allocation-dto';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -16,9 +17,9 @@
|
|
|
16
17
|
*/
|
|
17
18
|
export interface LinkBankTransactionRequestDtoRest {
|
|
18
19
|
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {
|
|
20
|
+
* List of invoice allocations associated with bank transaction.
|
|
21
|
+
* @type {Array<InvoiceAllocationDto>}
|
|
21
22
|
* @memberof LinkBankTransactionRequestDtoRest
|
|
22
23
|
*/
|
|
23
|
-
'
|
|
24
|
+
'invoiceAllocations': Array<InvoiceAllocationDto>;
|
|
24
25
|
}
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { ExceedingCreditClass } from './exceeding-credit-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListExceedingCreditsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListExceedingCreditsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The list of exceeding credits.
|
|
21
|
+
* @type {Array<ExceedingCreditClass>}
|
|
22
|
+
* @memberof ListExceedingCreditsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<ExceedingCreditClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListExceedingCreditsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
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
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { PolicyPaymentMethodClass } from './policy-payment-method-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListPolicyPaymentMethodsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListPolicyPaymentMethodsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The list of policy payment methods.
|
|
21
|
+
* @type {Array<PolicyPaymentMethodClass>}
|
|
22
|
+
* @memberof ListPolicyPaymentMethodsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<PolicyPaymentMethodClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListPolicyPaymentMethodsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
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
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|