@emilgroup/payment-sdk-node 1.23.0 → 1.23.1-beta.100
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 +34 -0
- package/README.md +2 -2
- package/api/bank-accounts-api.ts +16 -16
- package/api/bank-orders-api.ts +16 -16
- package/api/bank-transaction-api.ts +12 -12
- package/api/billing-addresses-api.ts +681 -0
- package/api/credit-allocation-api.ts +12 -12
- package/api/exceeding-credits-api.ts +12 -12
- package/api/ibanvalidator-api.ts +169 -0
- package/api/payment-methods-api.ts +12 -12
- package/api/payment-receipts-api.ts +680 -0
- package/api/payment-reminders-api.ts +16 -16
- package/api/payment-requests-api.ts +697 -0
- package/api/payments-api.ts +12 -12
- package/api/payout-methods-api.ts +794 -0
- package/api/refunds-api.ts +12 -12
- package/api/tenant-bank-account-api.ts +16 -16
- package/api/webhooks-api.ts +125 -14
- package/api.ts +10 -0
- package/base.ts +1 -0
- package/dist/api/bank-accounts-api.d.ts +16 -16
- package/dist/api/bank-accounts-api.js +13 -13
- package/dist/api/bank-orders-api.d.ts +16 -16
- package/dist/api/bank-orders-api.js +14 -14
- package/dist/api/bank-transaction-api.d.ts +12 -12
- package/dist/api/bank-transaction-api.js +10 -10
- package/dist/api/billing-addresses-api.d.ts +384 -0
- package/dist/api/billing-addresses-api.js +640 -0
- package/dist/api/credit-allocation-api.d.ts +12 -12
- package/dist/api/credit-allocation-api.js +10 -10
- package/dist/api/exceeding-credits-api.d.ts +12 -12
- package/dist/api/exceeding-credits-api.js +10 -10
- package/dist/api/ibanvalidator-api.d.ts +97 -0
- package/dist/api/ibanvalidator-api.js +228 -0
- package/dist/api/payment-methods-api.d.ts +12 -12
- package/dist/api/payment-methods-api.js +10 -10
- package/dist/api/payment-receipts-api.d.ts +383 -0
- package/dist/api/payment-receipts-api.js +641 -0
- package/dist/api/payment-reminders-api.d.ts +16 -16
- package/dist/api/payment-reminders-api.js +13 -13
- package/dist/api/payment-requests-api.d.ts +393 -0
- package/dist/api/payment-requests-api.js +648 -0
- package/dist/api/payments-api.d.ts +12 -12
- package/dist/api/payments-api.js +10 -10
- package/dist/api/payout-methods-api.d.ts +447 -0
- package/dist/api/payout-methods-api.js +738 -0
- package/dist/api/refunds-api.d.ts +12 -12
- package/dist/api/refunds-api.js +10 -10
- package/dist/api/tenant-bank-account-api.d.ts +16 -16
- package/dist/api/tenant-bank-account-api.js +13 -13
- package/dist/api/webhooks-api.d.ts +73 -9
- package/dist/api/webhooks-api.js +100 -11
- package/dist/api.d.ts +5 -0
- package/dist/api.js +5 -0
- package/dist/base.d.ts +2 -1
- package/dist/base.js +1 -0
- package/dist/models/bank-account-class-without-expand-properties.d.ts +6 -0
- package/dist/models/bank-account-class.d.ts +6 -0
- package/dist/models/bank-data-class.d.ts +36 -0
- package/dist/models/bank-data-class.js +15 -0
- package/dist/models/bank-order-class.d.ts +3 -3
- package/dist/models/bank-order-entity.d.ts +3 -2
- package/dist/models/bank-order-entity.js +2 -1
- package/dist/models/billing-address-class.d.ts +108 -0
- package/dist/models/billing-address-class.js +15 -0
- package/dist/models/create-bank-order-request-dto.d.ts +4 -3
- package/dist/models/create-bank-order-request-dto.js +2 -1
- package/dist/models/create-billing-address-request-dto.d.ts +66 -0
- package/dist/models/create-billing-address-request-dto.js +15 -0
- package/dist/models/create-billing-address-response-class.d.ts +25 -0
- package/dist/models/create-billing-address-response-class.js +15 -0
- package/dist/models/create-payment-receipt-request-dto.d.ts +65 -0
- package/dist/models/create-payment-receipt-request-dto.js +20 -0
- package/dist/models/create-payment-receipt-response-class.d.ts +25 -0
- package/dist/models/create-payment-receipt-response-class.js +15 -0
- package/dist/models/create-payment-request-request-dto.d.ts +109 -0
- package/dist/models/create-payment-request-request-dto.js +30 -0
- package/dist/models/create-payment-request-response-class.d.ts +25 -0
- package/dist/models/create-payment-request-response-class.js +15 -0
- package/dist/models/create-payout-method-by-bank-account-request-dto.d.ts +36 -0
- package/dist/models/create-payout-method-by-bank-account-request-dto.js +15 -0
- package/dist/models/create-payout-method-request-dto.d.ts +66 -0
- package/dist/models/create-payout-method-request-dto.js +15 -0
- package/dist/models/create-payout-method-response-class.d.ts +25 -0
- package/dist/models/create-payout-method-response-class.js +15 -0
- package/dist/models/create-tenant-bank-account-request-dto.d.ts +17 -0
- package/dist/models/create-tenant-bank-account-request-dto.js +11 -1
- package/dist/models/get-billing-address-response-class.d.ts +25 -0
- package/dist/models/get-billing-address-response-class.js +15 -0
- package/dist/models/get-payment-receipt-response-class.d.ts +25 -0
- package/dist/models/get-payment-receipt-response-class.js +15 -0
- package/dist/models/get-payment-request-response-class.d.ts +25 -0
- package/dist/models/get-payment-request-response-class.js +15 -0
- package/dist/models/get-payout-method-response-class.d.ts +25 -0
- package/dist/models/get-payout-method-response-class.js +15 -0
- package/dist/models/index.d.ts +29 -0
- package/dist/models/index.js +29 -0
- package/dist/models/list-billing-addresses-response-class.d.ts +43 -0
- package/dist/models/list-billing-addresses-response-class.js +15 -0
- package/dist/models/list-exceeding-credits-response-class.d.ts +18 -6
- package/dist/models/list-payment-receipts-response-class.d.ts +43 -0
- package/dist/models/list-payment-receipts-response-class.js +15 -0
- package/dist/models/list-payment-requests-response-class.d.ts +43 -0
- package/dist/models/list-payment-requests-response-class.js +15 -0
- package/dist/models/list-payout-methods-response-class.d.ts +43 -0
- package/dist/models/list-payout-methods-response-class.js +15 -0
- package/dist/models/list-refunds-response-class.d.ts +18 -6
- package/dist/models/payment-receipt-class.d.ts +101 -0
- package/dist/models/payment-receipt-class.js +20 -0
- package/dist/models/payment-request-class.d.ts +155 -0
- package/dist/models/payment-request-class.js +38 -0
- package/dist/models/payout-method-class.d.ts +121 -0
- package/dist/models/payout-method-class.js +15 -0
- package/dist/models/tenant-bank-account-class-without-expand-properties.d.ts +17 -0
- package/dist/models/tenant-bank-account-class-without-expand-properties.js +11 -1
- package/dist/models/tenant-bank-account-class.d.ts +17 -0
- package/dist/models/tenant-bank-account-class.js +11 -1
- package/dist/models/tenant-bank-account-entity.d.ts +17 -0
- package/dist/models/tenant-bank-account-entity.js +11 -1
- package/dist/models/update-bank-order-request-dto.d.ts +3 -3
- package/dist/models/update-billing-address-request-dto.d.ts +66 -0
- package/dist/models/update-billing-address-request-dto.js +15 -0
- package/dist/models/update-billing-address-response-class.d.ts +25 -0
- package/dist/models/update-billing-address-response-class.js +15 -0
- package/dist/models/update-payment-receipt-response-class.d.ts +25 -0
- package/dist/models/update-payment-receipt-response-class.js +15 -0
- package/dist/models/update-payment-request-request-dto.d.ts +39 -0
- package/dist/models/update-payment-request-request-dto.js +24 -0
- package/dist/models/update-payment-request-response-class.d.ts +25 -0
- package/dist/models/update-payment-request-response-class.js +15 -0
- package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +17 -0
- package/dist/models/update-tenant-bank-account-rest-request-dto.js +11 -1
- package/dist/models/validate-iban-request-dto.d.ts +24 -0
- package/dist/models/validate-iban-request-dto.js +15 -0
- package/dist/models/validate-iban-response-class.d.ts +31 -0
- package/dist/models/validate-iban-response-class.js +15 -0
- package/models/bank-account-class-without-expand-properties.ts +6 -0
- package/models/bank-account-class.ts +6 -0
- package/models/bank-data-class.ts +42 -0
- package/models/bank-order-class.ts +3 -3
- package/models/bank-order-entity.ts +4 -3
- package/models/billing-address-class.ts +114 -0
- package/models/create-bank-order-request-dto.ts +5 -4
- package/models/create-billing-address-request-dto.ts +72 -0
- package/models/create-billing-address-response-class.ts +31 -0
- package/models/create-payment-receipt-request-dto.ts +74 -0
- package/models/create-payment-receipt-response-class.ts +31 -0
- package/models/create-payment-request-request-dto.ts +118 -0
- package/models/create-payment-request-response-class.ts +31 -0
- package/models/create-payout-method-by-bank-account-request-dto.ts +42 -0
- package/models/create-payout-method-request-dto.ts +72 -0
- package/models/create-payout-method-response-class.ts +31 -0
- package/models/create-tenant-bank-account-request-dto.ts +18 -0
- package/models/get-billing-address-response-class.ts +31 -0
- package/models/get-payment-receipt-response-class.ts +31 -0
- package/models/get-payment-request-response-class.ts +31 -0
- package/models/get-payout-method-response-class.ts +31 -0
- package/models/index.ts +29 -0
- package/models/list-billing-addresses-response-class.ts +49 -0
- package/models/list-exceeding-credits-response-class.ts +18 -6
- package/models/list-payment-receipts-response-class.ts +49 -0
- package/models/list-payment-requests-response-class.ts +49 -0
- package/models/list-payout-methods-response-class.ts +49 -0
- package/models/list-refunds-response-class.ts +18 -6
- package/models/payment-receipt-class.ts +110 -0
- package/models/payment-request-class.ts +165 -0
- package/models/payout-method-class.ts +127 -0
- package/models/tenant-bank-account-class-without-expand-properties.ts +18 -0
- package/models/tenant-bank-account-class.ts +18 -0
- package/models/tenant-bank-account-entity.ts +18 -0
- package/models/update-bank-order-request-dto.ts +3 -3
- package/models/update-billing-address-request-dto.ts +72 -0
- package/models/update-billing-address-response-class.ts +31 -0
- package/models/update-payment-receipt-response-class.ts +31 -0
- package/models/update-payment-request-request-dto.ts +48 -0
- package/models/update-payment-request-response-class.ts +31 -0
- package/models/update-tenant-bank-account-rest-request-dto.ts +18 -0
- package/models/validate-iban-request-dto.ts +30 -0
- package/models/validate-iban-response-class.ts +37 -0
- package/package.json +3 -3
|
@@ -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,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 { PayoutMethodClass } from './payout-method-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetPayoutMethodResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetPayoutMethodResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The payout method
|
|
21
|
+
* @type {PayoutMethodClass}
|
|
22
|
+
* @memberof GetPayoutMethodResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'payoutMethod': PayoutMethodClass;
|
|
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,6 +1,7 @@
|
|
|
1
1
|
export * from './activate-policy-payment-method-request-dto';
|
|
2
2
|
export * from './bank-account-class';
|
|
3
3
|
export * from './bank-account-class-without-expand-properties';
|
|
4
|
+
export * from './bank-data-class';
|
|
4
5
|
export * from './bank-order-class';
|
|
5
6
|
export * from './bank-order-entity';
|
|
6
7
|
export * from './bank-order-xml-file-class';
|
|
@@ -11,6 +12,7 @@ export * from './bank-transaction-entity';
|
|
|
11
12
|
export * from './bank-transaction-invoice-class';
|
|
12
13
|
export * from './bank-transaction-invoice-entity';
|
|
13
14
|
export * from './bank-transfer-dto';
|
|
15
|
+
export * from './billing-address-class';
|
|
14
16
|
export * from './billing-address-dto';
|
|
15
17
|
export * from './billing-profile-dto';
|
|
16
18
|
export * from './billing-profile-limited-response-dto';
|
|
@@ -25,15 +27,24 @@ export * from './create-bank-account-request-dto';
|
|
|
25
27
|
export * from './create-bank-account-response-class';
|
|
26
28
|
export * from './create-bank-order-request-dto';
|
|
27
29
|
export * from './create-bank-order-response-class';
|
|
30
|
+
export * from './create-billing-address-request-dto';
|
|
31
|
+
export * from './create-billing-address-response-class';
|
|
28
32
|
export * from './create-credit-allocation-request-dto';
|
|
29
33
|
export * from './create-credit-allocation-response-class';
|
|
30
34
|
export * from './create-payment-method-response-class';
|
|
31
35
|
export * from './create-payment-order-dto';
|
|
32
36
|
export * from './create-payment-order-request-dto';
|
|
37
|
+
export * from './create-payment-receipt-request-dto';
|
|
38
|
+
export * from './create-payment-receipt-response-class';
|
|
33
39
|
export * from './create-payment-reminder-request-dto';
|
|
34
40
|
export * from './create-payment-reminder-response-class';
|
|
35
41
|
export * from './create-payment-request-dto';
|
|
42
|
+
export * from './create-payment-request-request-dto';
|
|
43
|
+
export * from './create-payment-request-response-class';
|
|
36
44
|
export * from './create-payment-response-class';
|
|
45
|
+
export * from './create-payout-method-by-bank-account-request-dto';
|
|
46
|
+
export * from './create-payout-method-request-dto';
|
|
47
|
+
export * from './create-payout-method-response-class';
|
|
37
48
|
export * from './create-policy-payment-method-request-dto';
|
|
38
49
|
export * from './create-policy-payment-method-response-class';
|
|
39
50
|
export * from './create-psp-payment-method-request-dto';
|
|
@@ -53,11 +64,15 @@ export * from './generate-invoice-match-suggestions-response-class';
|
|
|
53
64
|
export * from './get-bank-account-response-class';
|
|
54
65
|
export * from './get-bank-order-response-class';
|
|
55
66
|
export * from './get-bank-transactions-response-class';
|
|
67
|
+
export * from './get-billing-address-response-class';
|
|
56
68
|
export * from './get-credit-allocation-response-class';
|
|
57
69
|
export * from './get-exceeding-credit-response-class';
|
|
58
70
|
export * from './get-payment-method-response-class';
|
|
71
|
+
export * from './get-payment-receipt-response-class';
|
|
59
72
|
export * from './get-payment-reminder-response-class';
|
|
73
|
+
export * from './get-payment-request-response-class';
|
|
60
74
|
export * from './get-payment-response-class';
|
|
75
|
+
export * from './get-payout-method-response-class';
|
|
61
76
|
export * from './get-refund-response-class';
|
|
62
77
|
export * from './get-tenant-bank-account-response-class';
|
|
63
78
|
export * from './import-bank-transactions-response-class';
|
|
@@ -80,11 +95,15 @@ export * from './link-bank-transactions-response-class';
|
|
|
80
95
|
export * from './list-bank-accounts-response-class';
|
|
81
96
|
export * from './list-bank-orders-response-class';
|
|
82
97
|
export * from './list-bank-transactions-response-class';
|
|
98
|
+
export * from './list-billing-addresses-response-class';
|
|
83
99
|
export * from './list-credit-allocations-response-class';
|
|
84
100
|
export * from './list-exceeding-credits-response-class';
|
|
85
101
|
export * from './list-payment-methods-response-class';
|
|
102
|
+
export * from './list-payment-receipts-response-class';
|
|
86
103
|
export * from './list-payment-reminders-response-class';
|
|
104
|
+
export * from './list-payment-requests-response-class';
|
|
87
105
|
export * from './list-payments-response-class';
|
|
106
|
+
export * from './list-payout-methods-response-class';
|
|
88
107
|
export * from './list-policy-payment-methods-response-class';
|
|
89
108
|
export * from './list-refunds-response-class';
|
|
90
109
|
export * from './list-tenant-bank-account-response-class';
|
|
@@ -95,7 +114,10 @@ export * from './payment-class';
|
|
|
95
114
|
export * from './payment-class-without-expand-properties';
|
|
96
115
|
export * from './payment-entity';
|
|
97
116
|
export * from './payment-method-class';
|
|
117
|
+
export * from './payment-receipt-class';
|
|
98
118
|
export * from './payment-reminder-class';
|
|
119
|
+
export * from './payment-request-class';
|
|
120
|
+
export * from './payout-method-class';
|
|
99
121
|
export * from './policy-payment-method-class';
|
|
100
122
|
export * from './primary-bank-account-response-class';
|
|
101
123
|
export * from './refund-class';
|
|
@@ -117,6 +139,13 @@ export * from './update-bank-account-request-dto-rest';
|
|
|
117
139
|
export * from './update-bank-account-response-class';
|
|
118
140
|
export * from './update-bank-order-request-dto';
|
|
119
141
|
export * from './update-bank-order-response-class';
|
|
142
|
+
export * from './update-billing-address-request-dto';
|
|
143
|
+
export * from './update-billing-address-response-class';
|
|
144
|
+
export * from './update-payment-receipt-response-class';
|
|
145
|
+
export * from './update-payment-request-request-dto';
|
|
146
|
+
export * from './update-payment-request-response-class';
|
|
120
147
|
export * from './update-tenant-bank-account-response-class';
|
|
121
148
|
export * from './update-tenant-bank-account-rest-request-dto';
|
|
149
|
+
export * from './validate-iban-request-dto';
|
|
150
|
+
export * from './validate-iban-response-class';
|
|
122
151
|
export * from './validate-pspconfig-request-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./activate-policy-payment-method-request-dto"), exports);
|
|
18
18
|
__exportStar(require("./bank-account-class"), exports);
|
|
19
19
|
__exportStar(require("./bank-account-class-without-expand-properties"), exports);
|
|
20
|
+
__exportStar(require("./bank-data-class"), exports);
|
|
20
21
|
__exportStar(require("./bank-order-class"), exports);
|
|
21
22
|
__exportStar(require("./bank-order-entity"), exports);
|
|
22
23
|
__exportStar(require("./bank-order-xml-file-class"), exports);
|
|
@@ -27,6 +28,7 @@ __exportStar(require("./bank-transaction-entity"), exports);
|
|
|
27
28
|
__exportStar(require("./bank-transaction-invoice-class"), exports);
|
|
28
29
|
__exportStar(require("./bank-transaction-invoice-entity"), exports);
|
|
29
30
|
__exportStar(require("./bank-transfer-dto"), exports);
|
|
31
|
+
__exportStar(require("./billing-address-class"), exports);
|
|
30
32
|
__exportStar(require("./billing-address-dto"), exports);
|
|
31
33
|
__exportStar(require("./billing-profile-dto"), exports);
|
|
32
34
|
__exportStar(require("./billing-profile-limited-response-dto"), exports);
|
|
@@ -41,15 +43,24 @@ __exportStar(require("./create-bank-account-request-dto"), exports);
|
|
|
41
43
|
__exportStar(require("./create-bank-account-response-class"), exports);
|
|
42
44
|
__exportStar(require("./create-bank-order-request-dto"), exports);
|
|
43
45
|
__exportStar(require("./create-bank-order-response-class"), exports);
|
|
46
|
+
__exportStar(require("./create-billing-address-request-dto"), exports);
|
|
47
|
+
__exportStar(require("./create-billing-address-response-class"), exports);
|
|
44
48
|
__exportStar(require("./create-credit-allocation-request-dto"), exports);
|
|
45
49
|
__exportStar(require("./create-credit-allocation-response-class"), exports);
|
|
46
50
|
__exportStar(require("./create-payment-method-response-class"), exports);
|
|
47
51
|
__exportStar(require("./create-payment-order-dto"), exports);
|
|
48
52
|
__exportStar(require("./create-payment-order-request-dto"), exports);
|
|
53
|
+
__exportStar(require("./create-payment-receipt-request-dto"), exports);
|
|
54
|
+
__exportStar(require("./create-payment-receipt-response-class"), exports);
|
|
49
55
|
__exportStar(require("./create-payment-reminder-request-dto"), exports);
|
|
50
56
|
__exportStar(require("./create-payment-reminder-response-class"), exports);
|
|
51
57
|
__exportStar(require("./create-payment-request-dto"), exports);
|
|
58
|
+
__exportStar(require("./create-payment-request-request-dto"), exports);
|
|
59
|
+
__exportStar(require("./create-payment-request-response-class"), exports);
|
|
52
60
|
__exportStar(require("./create-payment-response-class"), exports);
|
|
61
|
+
__exportStar(require("./create-payout-method-by-bank-account-request-dto"), exports);
|
|
62
|
+
__exportStar(require("./create-payout-method-request-dto"), exports);
|
|
63
|
+
__exportStar(require("./create-payout-method-response-class"), exports);
|
|
53
64
|
__exportStar(require("./create-policy-payment-method-request-dto"), exports);
|
|
54
65
|
__exportStar(require("./create-policy-payment-method-response-class"), exports);
|
|
55
66
|
__exportStar(require("./create-psp-payment-method-request-dto"), exports);
|
|
@@ -69,11 +80,15 @@ __exportStar(require("./generate-invoice-match-suggestions-response-class"), exp
|
|
|
69
80
|
__exportStar(require("./get-bank-account-response-class"), exports);
|
|
70
81
|
__exportStar(require("./get-bank-order-response-class"), exports);
|
|
71
82
|
__exportStar(require("./get-bank-transactions-response-class"), exports);
|
|
83
|
+
__exportStar(require("./get-billing-address-response-class"), exports);
|
|
72
84
|
__exportStar(require("./get-credit-allocation-response-class"), exports);
|
|
73
85
|
__exportStar(require("./get-exceeding-credit-response-class"), exports);
|
|
74
86
|
__exportStar(require("./get-payment-method-response-class"), exports);
|
|
87
|
+
__exportStar(require("./get-payment-receipt-response-class"), exports);
|
|
75
88
|
__exportStar(require("./get-payment-reminder-response-class"), exports);
|
|
89
|
+
__exportStar(require("./get-payment-request-response-class"), exports);
|
|
76
90
|
__exportStar(require("./get-payment-response-class"), exports);
|
|
91
|
+
__exportStar(require("./get-payout-method-response-class"), exports);
|
|
77
92
|
__exportStar(require("./get-refund-response-class"), exports);
|
|
78
93
|
__exportStar(require("./get-tenant-bank-account-response-class"), exports);
|
|
79
94
|
__exportStar(require("./import-bank-transactions-response-class"), exports);
|
|
@@ -96,11 +111,15 @@ __exportStar(require("./link-bank-transactions-response-class"), exports);
|
|
|
96
111
|
__exportStar(require("./list-bank-accounts-response-class"), exports);
|
|
97
112
|
__exportStar(require("./list-bank-orders-response-class"), exports);
|
|
98
113
|
__exportStar(require("./list-bank-transactions-response-class"), exports);
|
|
114
|
+
__exportStar(require("./list-billing-addresses-response-class"), exports);
|
|
99
115
|
__exportStar(require("./list-credit-allocations-response-class"), exports);
|
|
100
116
|
__exportStar(require("./list-exceeding-credits-response-class"), exports);
|
|
101
117
|
__exportStar(require("./list-payment-methods-response-class"), exports);
|
|
118
|
+
__exportStar(require("./list-payment-receipts-response-class"), exports);
|
|
102
119
|
__exportStar(require("./list-payment-reminders-response-class"), exports);
|
|
120
|
+
__exportStar(require("./list-payment-requests-response-class"), exports);
|
|
103
121
|
__exportStar(require("./list-payments-response-class"), exports);
|
|
122
|
+
__exportStar(require("./list-payout-methods-response-class"), exports);
|
|
104
123
|
__exportStar(require("./list-policy-payment-methods-response-class"), exports);
|
|
105
124
|
__exportStar(require("./list-refunds-response-class"), exports);
|
|
106
125
|
__exportStar(require("./list-tenant-bank-account-response-class"), exports);
|
|
@@ -111,7 +130,10 @@ __exportStar(require("./payment-class"), exports);
|
|
|
111
130
|
__exportStar(require("./payment-class-without-expand-properties"), exports);
|
|
112
131
|
__exportStar(require("./payment-entity"), exports);
|
|
113
132
|
__exportStar(require("./payment-method-class"), exports);
|
|
133
|
+
__exportStar(require("./payment-receipt-class"), exports);
|
|
114
134
|
__exportStar(require("./payment-reminder-class"), exports);
|
|
135
|
+
__exportStar(require("./payment-request-class"), exports);
|
|
136
|
+
__exportStar(require("./payout-method-class"), exports);
|
|
115
137
|
__exportStar(require("./policy-payment-method-class"), exports);
|
|
116
138
|
__exportStar(require("./primary-bank-account-response-class"), exports);
|
|
117
139
|
__exportStar(require("./refund-class"), exports);
|
|
@@ -133,6 +155,13 @@ __exportStar(require("./update-bank-account-request-dto-rest"), exports);
|
|
|
133
155
|
__exportStar(require("./update-bank-account-response-class"), exports);
|
|
134
156
|
__exportStar(require("./update-bank-order-request-dto"), exports);
|
|
135
157
|
__exportStar(require("./update-bank-order-response-class"), exports);
|
|
158
|
+
__exportStar(require("./update-billing-address-request-dto"), exports);
|
|
159
|
+
__exportStar(require("./update-billing-address-response-class"), exports);
|
|
160
|
+
__exportStar(require("./update-payment-receipt-response-class"), exports);
|
|
161
|
+
__exportStar(require("./update-payment-request-request-dto"), exports);
|
|
162
|
+
__exportStar(require("./update-payment-request-response-class"), exports);
|
|
136
163
|
__exportStar(require("./update-tenant-bank-account-response-class"), exports);
|
|
137
164
|
__exportStar(require("./update-tenant-bank-account-rest-request-dto"), exports);
|
|
165
|
+
__exportStar(require("./validate-iban-request-dto"), exports);
|
|
166
|
+
__exportStar(require("./validate-iban-response-class"), exports);
|
|
138
167
|
__exportStar(require("./validate-pspconfig-request-dto"), exports);
|
|
@@ -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 { BillingAddressClass } from './billing-address-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListBillingAddressesResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListBillingAddressesResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Next page token.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof ListBillingAddressesResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'nextPageToken': string;
|
|
25
|
+
/**
|
|
26
|
+
* Total amount of items.
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof ListBillingAddressesResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'totalItems': number;
|
|
31
|
+
/**
|
|
32
|
+
* Items per page.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListBillingAddressesResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* The billing addresses
|
|
39
|
+
* @type {Array<BillingAddressClass>}
|
|
40
|
+
* @memberof ListBillingAddressesResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'items': Array<BillingAddressClass>;
|
|
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 });
|
|
@@ -16,16 +16,28 @@ import { ExceedingCreditClass } from './exceeding-credit-class';
|
|
|
16
16
|
* @interface ListExceedingCreditsResponseClass
|
|
17
17
|
*/
|
|
18
18
|
export interface ListExceedingCreditsResponseClass {
|
|
19
|
-
/**
|
|
20
|
-
* The list of exceeding credits.
|
|
21
|
-
* @type {Array<ExceedingCreditClass>}
|
|
22
|
-
* @memberof ListExceedingCreditsResponseClass
|
|
23
|
-
*/
|
|
24
|
-
'items': Array<ExceedingCreditClass>;
|
|
25
19
|
/**
|
|
26
20
|
* Next page token.
|
|
27
21
|
* @type {string}
|
|
28
22
|
* @memberof ListExceedingCreditsResponseClass
|
|
29
23
|
*/
|
|
30
24
|
'nextPageToken': string;
|
|
25
|
+
/**
|
|
26
|
+
* Total amount of items.
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof ListExceedingCreditsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'totalItems': number;
|
|
31
|
+
/**
|
|
32
|
+
* Items per page.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListExceedingCreditsResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* The list of exceeding credits.
|
|
39
|
+
* @type {Array<ExceedingCreditClass>}
|
|
40
|
+
* @memberof ListExceedingCreditsResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'items': Array<ExceedingCreditClass>;
|
|
31
43
|
}
|
|
@@ -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 { PaymentReceiptClass } from './payment-receipt-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListPaymentReceiptsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListPaymentReceiptsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Next page token.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof ListPaymentReceiptsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'nextPageToken': string;
|
|
25
|
+
/**
|
|
26
|
+
* Total amount of items.
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof ListPaymentReceiptsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'totalItems': number;
|
|
31
|
+
/**
|
|
32
|
+
* Items per page.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListPaymentReceiptsResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* The list of payment receipts.
|
|
39
|
+
* @type {Array<PaymentReceiptClass>}
|
|
40
|
+
* @memberof ListPaymentReceiptsResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'items': Array<PaymentReceiptClass>;
|
|
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,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 { PaymentRequestClass } from './payment-request-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListPaymentRequestsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListPaymentRequestsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Next page token.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof ListPaymentRequestsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'nextPageToken': string;
|
|
25
|
+
/**
|
|
26
|
+
* Total amount of items.
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof ListPaymentRequestsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'totalItems': number;
|
|
31
|
+
/**
|
|
32
|
+
* Items per page.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListPaymentRequestsResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* The list of payment requests.
|
|
39
|
+
* @type {Array<PaymentRequestClass>}
|
|
40
|
+
* @memberof ListPaymentRequestsResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'items': Array<PaymentRequestClass>;
|
|
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,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 { PayoutMethodClass } from './payout-method-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListPayoutMethodsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListPayoutMethodsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Next page token.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof ListPayoutMethodsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'nextPageToken': string;
|
|
25
|
+
/**
|
|
26
|
+
* Total amount of items.
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof ListPayoutMethodsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'totalItems': number;
|
|
31
|
+
/**
|
|
32
|
+
* Items per page.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListPayoutMethodsResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* The payout methods
|
|
39
|
+
* @type {Array<PayoutMethodClass>}
|
|
40
|
+
* @memberof ListPayoutMethodsResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'items': Array<PayoutMethodClass>;
|
|
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 });
|
|
@@ -16,16 +16,28 @@ import { RefundClass } from './refund-class';
|
|
|
16
16
|
* @interface ListRefundsResponseClass
|
|
17
17
|
*/
|
|
18
18
|
export interface ListRefundsResponseClass {
|
|
19
|
-
/**
|
|
20
|
-
* The list of refunds.
|
|
21
|
-
* @type {Array<RefundClass>}
|
|
22
|
-
* @memberof ListRefundsResponseClass
|
|
23
|
-
*/
|
|
24
|
-
'items': Array<RefundClass>;
|
|
25
19
|
/**
|
|
26
20
|
* Next page token.
|
|
27
21
|
* @type {string}
|
|
28
22
|
* @memberof ListRefundsResponseClass
|
|
29
23
|
*/
|
|
30
24
|
'nextPageToken': string;
|
|
25
|
+
/**
|
|
26
|
+
* Total amount of items.
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof ListRefundsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'totalItems': number;
|
|
31
|
+
/**
|
|
32
|
+
* Items per page.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListRefundsResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* The list of refunds.
|
|
39
|
+
* @type {Array<RefundClass>}
|
|
40
|
+
* @memberof ListRefundsResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'items': Array<RefundClass>;
|
|
31
43
|
}
|
|
@@ -0,0 +1,101 @@
|
|
|
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 PaymentReceiptClass
|
|
16
|
+
*/
|
|
17
|
+
export interface PaymentReceiptClass {
|
|
18
|
+
/**
|
|
19
|
+
* id
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof PaymentReceiptClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* code
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PaymentReceiptClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* amount in cents.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof PaymentReceiptClass
|
|
34
|
+
*/
|
|
35
|
+
'amount': number;
|
|
36
|
+
/**
|
|
37
|
+
* currency
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof PaymentReceiptClass
|
|
40
|
+
*/
|
|
41
|
+
'currency': string;
|
|
42
|
+
/**
|
|
43
|
+
* The receipt direction. Collect for incoming payments, Disburse for outgoing payments.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof PaymentReceiptClass
|
|
46
|
+
*/
|
|
47
|
+
'direction': PaymentReceiptClassDirectionEnum;
|
|
48
|
+
/**
|
|
49
|
+
* Date the payment was confirmed
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof PaymentReceiptClass
|
|
52
|
+
*/
|
|
53
|
+
'dateOfPayment': string;
|
|
54
|
+
/**
|
|
55
|
+
* The code of the payment request associated with the payment receipt.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof PaymentReceiptClass
|
|
58
|
+
*/
|
|
59
|
+
'paymentRequestCode'?: string;
|
|
60
|
+
/**
|
|
61
|
+
* The payment service provider that produced the payment receipt.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof PaymentReceiptClass
|
|
64
|
+
*/
|
|
65
|
+
'psp'?: string;
|
|
66
|
+
/**
|
|
67
|
+
* An optional comment associated with the payment receipt.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof PaymentReceiptClass
|
|
70
|
+
*/
|
|
71
|
+
'comment'?: string;
|
|
72
|
+
/**
|
|
73
|
+
* Time at which the object was created.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof PaymentReceiptClass
|
|
76
|
+
*/
|
|
77
|
+
'createdAt': string;
|
|
78
|
+
/**
|
|
79
|
+
* Time at which the object was updated.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof PaymentReceiptClass
|
|
82
|
+
*/
|
|
83
|
+
'updatedAt': string;
|
|
84
|
+
/**
|
|
85
|
+
* Identifier of the user who created the record.
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof PaymentReceiptClass
|
|
88
|
+
*/
|
|
89
|
+
'createdBy': string;
|
|
90
|
+
/**
|
|
91
|
+
* Identifier of the user who last updated the record.
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof PaymentReceiptClass
|
|
94
|
+
*/
|
|
95
|
+
'updatedBy': string;
|
|
96
|
+
}
|
|
97
|
+
export declare const PaymentReceiptClassDirectionEnum: {
|
|
98
|
+
readonly Collect: "collect";
|
|
99
|
+
readonly Disburse: "disburse";
|
|
100
|
+
};
|
|
101
|
+
export type PaymentReceiptClassDirectionEnum = typeof PaymentReceiptClassDirectionEnum[keyof typeof PaymentReceiptClassDirectionEnum];
|