@emilgroup/payment-sdk 1.13.1-beta.95 → 1.13.1-beta.97
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 +5 -0
- package/README.md +2 -2
- package/api/policy-payment-methods-api.ts +188 -0
- package/dist/api/policy-payment-methods-api.d.ts +110 -0
- package/dist/api/policy-payment-methods-api.js +129 -0
- package/dist/models/create-psp-payment-method-request-dto.d.ts +7 -0
- package/dist/models/eis-sepa-debit-dto.d.ts +55 -0
- package/dist/models/eis-sepa-debit-dto.js +15 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -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/policy-payment-method-class.d.ts +13 -0
- package/models/create-psp-payment-method-request-dto.ts +7 -0
- package/models/eis-sepa-debit-dto.ts +61 -0
- package/models/index.ts +5 -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/policy-payment-method-class.ts +13 -0
- package/package.json +1 -1
|
@@ -0,0 +1,55 @@
|
|
|
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 { MandateDto } from './mandate-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface EisSepaDebitDto
|
|
17
|
+
*/
|
|
18
|
+
export interface EisSepaDebitDto {
|
|
19
|
+
/**
|
|
20
|
+
* First name of account holder
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof EisSepaDebitDto
|
|
23
|
+
*/
|
|
24
|
+
'firstName': string;
|
|
25
|
+
/**
|
|
26
|
+
* Last name of account holder
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof EisSepaDebitDto
|
|
29
|
+
*/
|
|
30
|
+
'lastName': string;
|
|
31
|
+
/**
|
|
32
|
+
* International Bank Account Number
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof EisSepaDebitDto
|
|
35
|
+
*/
|
|
36
|
+
'iban': string;
|
|
37
|
+
/**
|
|
38
|
+
* Bank Identifier Code
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof EisSepaDebitDto
|
|
41
|
+
*/
|
|
42
|
+
'bic': string;
|
|
43
|
+
/**
|
|
44
|
+
* Bank name
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof EisSepaDebitDto
|
|
47
|
+
*/
|
|
48
|
+
'bankName': string;
|
|
49
|
+
/**
|
|
50
|
+
* SEPA mandate details
|
|
51
|
+
* @type {MandateDto}
|
|
52
|
+
* @memberof EisSepaDebitDto
|
|
53
|
+
*/
|
|
54
|
+
'mandate': MandateDto;
|
|
55
|
+
}
|
|
@@ -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
|
@@ -36,6 +36,7 @@ export * from './create-tenant-bank-account-response-class';
|
|
|
36
36
|
export * from './deactivate-payment-reminder-request-dto';
|
|
37
37
|
export * from './deactivate-payment-reminder-response-class';
|
|
38
38
|
export * from './deactivated-payment-reminder-class';
|
|
39
|
+
export * from './eis-sepa-debit-dto';
|
|
39
40
|
export * from './exceeding-credit-class';
|
|
40
41
|
export * from './financial-account-class';
|
|
41
42
|
export * from './generate-invoice-match-suggestions-response-class';
|
|
@@ -71,8 +72,12 @@ export * from './list-exceeding-credits-response-class';
|
|
|
71
72
|
export * from './list-payment-methods-response-class';
|
|
72
73
|
export * from './list-payment-reminders-response-class';
|
|
73
74
|
export * from './list-payments-response-class';
|
|
75
|
+
export * from './list-policy-payment-methods-response-class';
|
|
74
76
|
export * from './list-refunds-response-class';
|
|
75
77
|
export * from './list-tenant-bank-account-response-class';
|
|
78
|
+
export * from './mandate-dto';
|
|
79
|
+
export * from './mandate-hash-data-dto';
|
|
80
|
+
export * from './mandate-reference-class';
|
|
76
81
|
export * from './payment-class';
|
|
77
82
|
export * from './payment-class-without-expand-properties';
|
|
78
83
|
export * from './payment-method-class';
|
package/dist/models/index.js
CHANGED
|
@@ -52,6 +52,7 @@ __exportStar(require("./create-tenant-bank-account-response-class"), exports);
|
|
|
52
52
|
__exportStar(require("./deactivate-payment-reminder-request-dto"), exports);
|
|
53
53
|
__exportStar(require("./deactivate-payment-reminder-response-class"), exports);
|
|
54
54
|
__exportStar(require("./deactivated-payment-reminder-class"), exports);
|
|
55
|
+
__exportStar(require("./eis-sepa-debit-dto"), exports);
|
|
55
56
|
__exportStar(require("./exceeding-credit-class"), exports);
|
|
56
57
|
__exportStar(require("./financial-account-class"), exports);
|
|
57
58
|
__exportStar(require("./generate-invoice-match-suggestions-response-class"), exports);
|
|
@@ -87,8 +88,12 @@ __exportStar(require("./list-exceeding-credits-response-class"), exports);
|
|
|
87
88
|
__exportStar(require("./list-payment-methods-response-class"), exports);
|
|
88
89
|
__exportStar(require("./list-payment-reminders-response-class"), exports);
|
|
89
90
|
__exportStar(require("./list-payments-response-class"), exports);
|
|
91
|
+
__exportStar(require("./list-policy-payment-methods-response-class"), exports);
|
|
90
92
|
__exportStar(require("./list-refunds-response-class"), exports);
|
|
91
93
|
__exportStar(require("./list-tenant-bank-account-response-class"), exports);
|
|
94
|
+
__exportStar(require("./mandate-dto"), exports);
|
|
95
|
+
__exportStar(require("./mandate-hash-data-dto"), exports);
|
|
96
|
+
__exportStar(require("./mandate-reference-class"), exports);
|
|
92
97
|
__exportStar(require("./payment-class"), exports);
|
|
93
98
|
__exportStar(require("./payment-class-without-expand-properties"), exports);
|
|
94
99
|
__exportStar(require("./payment-method-class"), exports);
|
|
@@ -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 });
|
|
@@ -0,0 +1,43 @@
|
|
|
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 { MandateHashDataDto } from './mandate-hash-data-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface MandateDto
|
|
17
|
+
*/
|
|
18
|
+
export interface MandateDto {
|
|
19
|
+
/**
|
|
20
|
+
* Creditor identifier for SEPA debit
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof MandateDto
|
|
23
|
+
*/
|
|
24
|
+
'creditorId': string;
|
|
25
|
+
/**
|
|
26
|
+
* Unique mandate reference
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof MandateDto
|
|
29
|
+
*/
|
|
30
|
+
'mandateReference': string;
|
|
31
|
+
/**
|
|
32
|
+
* Date when mandate was created
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof MandateDto
|
|
35
|
+
*/
|
|
36
|
+
'mandateCreatedAt': string;
|
|
37
|
+
/**
|
|
38
|
+
* Optional mandate hash data containing signature details
|
|
39
|
+
* @type {MandateHashDataDto}
|
|
40
|
+
* @memberof MandateDto
|
|
41
|
+
*/
|
|
42
|
+
'mandateHashData'?: MandateHashDataDto;
|
|
43
|
+
}
|
|
@@ -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,42 @@
|
|
|
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 MandateHashDataDto
|
|
16
|
+
*/
|
|
17
|
+
export interface MandateHashDataDto {
|
|
18
|
+
/**
|
|
19
|
+
* Date when mandate was signed
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof MandateHashDataDto
|
|
22
|
+
*/
|
|
23
|
+
'date': string;
|
|
24
|
+
/**
|
|
25
|
+
* Location where mandate was signed
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof MandateHashDataDto
|
|
28
|
+
*/
|
|
29
|
+
'location': string;
|
|
30
|
+
/**
|
|
31
|
+
* First name of mandate signer
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof MandateHashDataDto
|
|
34
|
+
*/
|
|
35
|
+
'firstName': string;
|
|
36
|
+
/**
|
|
37
|
+
* Last name of mandate signer
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof MandateHashDataDto
|
|
40
|
+
*/
|
|
41
|
+
'lastName': string;
|
|
42
|
+
}
|
|
@@ -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,90 @@
|
|
|
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 MandateReferenceClass
|
|
16
|
+
*/
|
|
17
|
+
export interface MandateReferenceClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof MandateReferenceClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier for the object.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof MandateReferenceClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* SEPA mandate reference identifier
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof MandateReferenceClass
|
|
34
|
+
*/
|
|
35
|
+
'mandateReference': string;
|
|
36
|
+
/**
|
|
37
|
+
* Date when mandate was created
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof MandateReferenceClass
|
|
40
|
+
*/
|
|
41
|
+
'mandateCreatedAt': string;
|
|
42
|
+
/**
|
|
43
|
+
* SEPA creditor identifier
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof MandateReferenceClass
|
|
46
|
+
*/
|
|
47
|
+
'creditorId': string;
|
|
48
|
+
/**
|
|
49
|
+
* Optional hash of mandate document
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof MandateReferenceClass
|
|
52
|
+
*/
|
|
53
|
+
'hash'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Optional mandate hash data containing signature details
|
|
56
|
+
* @type {object}
|
|
57
|
+
* @memberof MandateReferenceClass
|
|
58
|
+
*/
|
|
59
|
+
'hashData'?: object;
|
|
60
|
+
/**
|
|
61
|
+
* Payment method code associated with this mandate
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof MandateReferenceClass
|
|
64
|
+
*/
|
|
65
|
+
'paymentMethodCode': string;
|
|
66
|
+
/**
|
|
67
|
+
* Identifier of the user who created the record.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof MandateReferenceClass
|
|
70
|
+
*/
|
|
71
|
+
'createdBy': string;
|
|
72
|
+
/**
|
|
73
|
+
* Identifier of the user who last updated the record.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof MandateReferenceClass
|
|
76
|
+
*/
|
|
77
|
+
'updatedBy': string;
|
|
78
|
+
/**
|
|
79
|
+
* Time at which the object was created.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof MandateReferenceClass
|
|
82
|
+
*/
|
|
83
|
+
'createdAt': string;
|
|
84
|
+
/**
|
|
85
|
+
* Time at which the object was updated.
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof MandateReferenceClass
|
|
88
|
+
*/
|
|
89
|
+
'updatedAt': string;
|
|
90
|
+
}
|
|
@@ -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 { MandateReferenceClass } from './mandate-reference-class';
|
|
12
13
|
import { PaymentMethodClass } from './payment-method-class';
|
|
13
14
|
/**
|
|
14
15
|
*
|
|
@@ -70,4 +71,16 @@ export interface PolicyPaymentMethodClass {
|
|
|
70
71
|
* @memberof PolicyPaymentMethodClass
|
|
71
72
|
*/
|
|
72
73
|
'paymentMethod': PaymentMethodClass;
|
|
74
|
+
/**
|
|
75
|
+
* Mandate reference ID for sepa debit payment methods
|
|
76
|
+
* @type {number}
|
|
77
|
+
* @memberof PolicyPaymentMethodClass
|
|
78
|
+
*/
|
|
79
|
+
'mandateReferenceId'?: number;
|
|
80
|
+
/**
|
|
81
|
+
* Mandate reference details for sepa debit payment methods
|
|
82
|
+
* @type {MandateReferenceClass}
|
|
83
|
+
* @memberof PolicyPaymentMethodClass
|
|
84
|
+
*/
|
|
85
|
+
'mandateReference'?: MandateReferenceClass;
|
|
73
86
|
}
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
import { BankTransferDto } from './bank-transfer-dto';
|
|
17
17
|
import { BillingProfileDto } from './billing-profile-dto';
|
|
18
|
+
import { EisSepaDebitDto } from './eis-sepa-debit-dto';
|
|
18
19
|
import { SepaDirectDto } from './sepa-direct-dto';
|
|
19
20
|
|
|
20
21
|
/**
|
|
@@ -59,6 +60,12 @@ export interface CreatePspPaymentMethodRequestDto {
|
|
|
59
60
|
* @memberof CreatePspPaymentMethodRequestDto
|
|
60
61
|
*/
|
|
61
62
|
'bankTransfer'?: BankTransferDto;
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @type {EisSepaDebitDto}
|
|
66
|
+
* @memberof CreatePspPaymentMethodRequestDto
|
|
67
|
+
*/
|
|
68
|
+
'eisSepaDebit'?: EisSepaDebitDto;
|
|
62
69
|
/**
|
|
63
70
|
*
|
|
64
71
|
* @type {string}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* 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.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { MandateDto } from './mandate-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface EisSepaDebitDto
|
|
22
|
+
*/
|
|
23
|
+
export interface EisSepaDebitDto {
|
|
24
|
+
/**
|
|
25
|
+
* First name of account holder
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof EisSepaDebitDto
|
|
28
|
+
*/
|
|
29
|
+
'firstName': string;
|
|
30
|
+
/**
|
|
31
|
+
* Last name of account holder
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof EisSepaDebitDto
|
|
34
|
+
*/
|
|
35
|
+
'lastName': string;
|
|
36
|
+
/**
|
|
37
|
+
* International Bank Account Number
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof EisSepaDebitDto
|
|
40
|
+
*/
|
|
41
|
+
'iban': string;
|
|
42
|
+
/**
|
|
43
|
+
* Bank Identifier Code
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof EisSepaDebitDto
|
|
46
|
+
*/
|
|
47
|
+
'bic': string;
|
|
48
|
+
/**
|
|
49
|
+
* Bank name
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof EisSepaDebitDto
|
|
52
|
+
*/
|
|
53
|
+
'bankName': string;
|
|
54
|
+
/**
|
|
55
|
+
* SEPA mandate details
|
|
56
|
+
* @type {MandateDto}
|
|
57
|
+
* @memberof EisSepaDebitDto
|
|
58
|
+
*/
|
|
59
|
+
'mandate': MandateDto;
|
|
60
|
+
}
|
|
61
|
+
|
package/models/index.ts
CHANGED
|
@@ -36,6 +36,7 @@ export * from './create-tenant-bank-account-response-class';
|
|
|
36
36
|
export * from './deactivate-payment-reminder-request-dto';
|
|
37
37
|
export * from './deactivate-payment-reminder-response-class';
|
|
38
38
|
export * from './deactivated-payment-reminder-class';
|
|
39
|
+
export * from './eis-sepa-debit-dto';
|
|
39
40
|
export * from './exceeding-credit-class';
|
|
40
41
|
export * from './financial-account-class';
|
|
41
42
|
export * from './generate-invoice-match-suggestions-response-class';
|
|
@@ -71,8 +72,12 @@ export * from './list-exceeding-credits-response-class';
|
|
|
71
72
|
export * from './list-payment-methods-response-class';
|
|
72
73
|
export * from './list-payment-reminders-response-class';
|
|
73
74
|
export * from './list-payments-response-class';
|
|
75
|
+
export * from './list-policy-payment-methods-response-class';
|
|
74
76
|
export * from './list-refunds-response-class';
|
|
75
77
|
export * from './list-tenant-bank-account-response-class';
|
|
78
|
+
export * from './mandate-dto';
|
|
79
|
+
export * from './mandate-hash-data-dto';
|
|
80
|
+
export * from './mandate-reference-class';
|
|
76
81
|
export * from './payment-class';
|
|
77
82
|
export * from './payment-class-without-expand-properties';
|
|
78
83
|
export * from './payment-method-class';
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* 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.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { PolicyPaymentMethodClass } from './policy-payment-method-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListPolicyPaymentMethodsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListPolicyPaymentMethodsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of policy payment methods.
|
|
26
|
+
* @type {Array<PolicyPaymentMethodClass>}
|
|
27
|
+
* @memberof ListPolicyPaymentMethodsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<PolicyPaymentMethodClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListPolicyPaymentMethodsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* 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.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { MandateHashDataDto } from './mandate-hash-data-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface MandateDto
|
|
22
|
+
*/
|
|
23
|
+
export interface MandateDto {
|
|
24
|
+
/**
|
|
25
|
+
* Creditor identifier for SEPA debit
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof MandateDto
|
|
28
|
+
*/
|
|
29
|
+
'creditorId': string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique mandate reference
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof MandateDto
|
|
34
|
+
*/
|
|
35
|
+
'mandateReference': string;
|
|
36
|
+
/**
|
|
37
|
+
* Date when mandate was created
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof MandateDto
|
|
40
|
+
*/
|
|
41
|
+
'mandateCreatedAt': string;
|
|
42
|
+
/**
|
|
43
|
+
* Optional mandate hash data containing signature details
|
|
44
|
+
* @type {MandateHashDataDto}
|
|
45
|
+
* @memberof MandateDto
|
|
46
|
+
*/
|
|
47
|
+
'mandateHashData'?: MandateHashDataDto;
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* 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.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface MandateHashDataDto
|
|
21
|
+
*/
|
|
22
|
+
export interface MandateHashDataDto {
|
|
23
|
+
/**
|
|
24
|
+
* Date when mandate was signed
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof MandateHashDataDto
|
|
27
|
+
*/
|
|
28
|
+
'date': string;
|
|
29
|
+
/**
|
|
30
|
+
* Location where mandate was signed
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof MandateHashDataDto
|
|
33
|
+
*/
|
|
34
|
+
'location': string;
|
|
35
|
+
/**
|
|
36
|
+
* First name of mandate signer
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof MandateHashDataDto
|
|
39
|
+
*/
|
|
40
|
+
'firstName': string;
|
|
41
|
+
/**
|
|
42
|
+
* Last name of mandate signer
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof MandateHashDataDto
|
|
45
|
+
*/
|
|
46
|
+
'lastName': string;
|
|
47
|
+
}
|
|
48
|
+
|