@emilgroup/payment-sdk 1.14.1-beta.67 → 1.14.1-beta.69

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.
Files changed (65) hide show
  1. package/.openapi-generator/FILES +11 -1
  2. package/README.md +2 -2
  3. package/api/bank-orders-api.ts +24 -24
  4. package/api/tenant-bank-account-api.ts +8 -8
  5. package/dist/api/bank-orders-api.d.ts +24 -24
  6. package/dist/api/bank-orders-api.js +18 -18
  7. package/dist/api/tenant-bank-account-api.d.ts +8 -8
  8. package/dist/api/tenant-bank-account-api.js +6 -6
  9. package/dist/models/bank-order-class.d.ts +6 -6
  10. package/dist/models/bank-order-entity.d.ts +156 -0
  11. package/dist/models/bank-order-entity.js +29 -0
  12. package/dist/models/bank-order-xml-file-entity.d.ts +85 -0
  13. package/dist/models/bank-order-xml-file-entity.js +15 -0
  14. package/dist/models/bank-transaction-entity.d.ts +179 -0
  15. package/dist/models/{financial-account-class.js → bank-transaction-entity.js} +4 -8
  16. package/dist/models/bank-transaction-invoice-entity.d.ts +98 -0
  17. package/dist/models/bank-transaction-invoice-entity.js +15 -0
  18. package/dist/models/create-bank-order-request-dto.d.ts +2 -2
  19. package/dist/models/create-tenant-bank-account-request-dto.d.ts +27 -1
  20. package/dist/models/create-tenant-bank-account-request-dto.js +8 -0
  21. package/dist/models/credit-allocation-entity.d.ts +135 -0
  22. package/dist/models/credit-allocation-entity.js +34 -0
  23. package/dist/models/exceeding-credit-entity.d.ts +148 -0
  24. package/dist/models/exceeding-credit-entity.js +29 -0
  25. package/dist/models/index.d.ts +11 -1
  26. package/dist/models/index.js +11 -1
  27. package/dist/models/invoice-match-suggestion-entity.d.ts +103 -0
  28. package/dist/models/invoice-match-suggestion-entity.js +15 -0
  29. package/dist/models/payment-entity.d.ts +133 -0
  30. package/dist/models/payment-entity.js +15 -0
  31. package/dist/models/suggestion-generation-progress-entity.d.ts +86 -0
  32. package/dist/models/suggestion-generation-progress-entity.js +22 -0
  33. package/dist/models/tenant-bank-account-class-without-expand-properties.d.ts +26 -0
  34. package/dist/models/tenant-bank-account-class-without-expand-properties.js +8 -0
  35. package/dist/models/tenant-bank-account-class.d.ts +26 -0
  36. package/dist/models/tenant-bank-account-class.js +8 -0
  37. package/dist/models/tenant-bank-account-entity.d.ts +153 -0
  38. package/dist/models/tenant-bank-account-entity.js +23 -0
  39. package/dist/models/transaction-entity.d.ts +112 -0
  40. package/dist/models/transaction-entity.js +23 -0
  41. package/dist/models/update-bank-order-request-dto.d.ts +2 -2
  42. package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +27 -1
  43. package/dist/models/update-tenant-bank-account-rest-request-dto.js +8 -0
  44. package/models/bank-order-class.ts +6 -6
  45. package/models/bank-order-entity.ts +166 -0
  46. package/models/bank-order-xml-file-entity.ts +91 -0
  47. package/models/bank-transaction-entity.ts +188 -0
  48. package/models/bank-transaction-invoice-entity.ts +104 -0
  49. package/models/create-bank-order-request-dto.ts +2 -2
  50. package/models/create-tenant-bank-account-request-dto.ts +30 -1
  51. package/models/credit-allocation-entity.ts +145 -0
  52. package/models/exceeding-credit-entity.ts +157 -0
  53. package/models/index.ts +11 -1
  54. package/models/invoice-match-suggestion-entity.ts +109 -0
  55. package/models/payment-entity.ts +139 -0
  56. package/models/suggestion-generation-progress-entity.ts +95 -0
  57. package/models/tenant-bank-account-class-without-expand-properties.ts +29 -0
  58. package/models/tenant-bank-account-class.ts +29 -0
  59. package/models/tenant-bank-account-entity.ts +162 -0
  60. package/models/transaction-entity.ts +121 -0
  61. package/models/update-bank-order-request-dto.ts +2 -2
  62. package/models/update-tenant-bank-account-rest-request-dto.ts +30 -1
  63. package/package.json +1 -1
  64. package/dist/models/financial-account-class.d.ts +0 -111
  65. package/models/financial-account-class.ts +0 -120
@@ -0,0 +1,103 @@
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 { BankTransactionEntity } from './bank-transaction-entity';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface InvoiceMatchSuggestionEntity
17
+ */
18
+ export interface InvoiceMatchSuggestionEntity {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof InvoiceMatchSuggestionEntity
23
+ */
24
+ 'id': number;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof InvoiceMatchSuggestionEntity
29
+ */
30
+ 'code': string;
31
+ /**
32
+ *
33
+ * @type {number}
34
+ * @memberof InvoiceMatchSuggestionEntity
35
+ */
36
+ 'bankTransactionId': number;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof InvoiceMatchSuggestionEntity
41
+ */
42
+ 'invoiceCode': string;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof InvoiceMatchSuggestionEntity
47
+ */
48
+ 'invoiceNumber': string;
49
+ /**
50
+ *
51
+ * @type {number}
52
+ * @memberof InvoiceMatchSuggestionEntity
53
+ */
54
+ 'confidenceScore': number;
55
+ /**
56
+ *
57
+ * @type {object}
58
+ * @memberof InvoiceMatchSuggestionEntity
59
+ */
60
+ 'matchCriteria'?: object;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof InvoiceMatchSuggestionEntity
65
+ */
66
+ 'strategy': string;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof InvoiceMatchSuggestionEntity
71
+ */
72
+ 'owner': string;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof InvoiceMatchSuggestionEntity
77
+ */
78
+ 'tenantHierarchy': string;
79
+ /**
80
+ *
81
+ * @type {BankTransactionEntity}
82
+ * @memberof InvoiceMatchSuggestionEntity
83
+ */
84
+ 'bankTransaction': BankTransactionEntity;
85
+ /**
86
+ *
87
+ * @type {string}
88
+ * @memberof InvoiceMatchSuggestionEntity
89
+ */
90
+ 'createdAt': string;
91
+ /**
92
+ *
93
+ * @type {string}
94
+ * @memberof InvoiceMatchSuggestionEntity
95
+ */
96
+ 'updatedAt': string;
97
+ /**
98
+ *
99
+ * @type {string}
100
+ * @memberof InvoiceMatchSuggestionEntity
101
+ */
102
+ 'deletedAt': string;
103
+ }
@@ -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,133 @@
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 { TransactionEntity } from './transaction-entity';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PaymentEntity
17
+ */
18
+ export interface PaymentEntity {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof PaymentEntity
23
+ */
24
+ 'id': number;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof PaymentEntity
29
+ */
30
+ 'owner': string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof PaymentEntity
35
+ */
36
+ 'psp': string;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof PaymentEntity
41
+ */
42
+ 'code': string;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof PaymentEntity
47
+ */
48
+ 'accountCode'?: string;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof PaymentEntity
53
+ */
54
+ 'partnerCode'?: string;
55
+ /**
56
+ *
57
+ * @type {string}
58
+ * @memberof PaymentEntity
59
+ */
60
+ 'productSlug': string;
61
+ /**
62
+ *
63
+ * @type {number}
64
+ * @memberof PaymentEntity
65
+ */
66
+ 'amount': number;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof PaymentEntity
71
+ */
72
+ 'currency': string;
73
+ /**
74
+ *
75
+ * @type {Array<number>}
76
+ * @memberof PaymentEntity
77
+ */
78
+ 'invoiceIds': Array<number>;
79
+ /**
80
+ *
81
+ * @type {Array<TransactionEntity>}
82
+ * @memberof PaymentEntity
83
+ */
84
+ 'transactions': Array<TransactionEntity>;
85
+ /**
86
+ *
87
+ * @type {object}
88
+ * @memberof PaymentEntity
89
+ */
90
+ 'metadata': object;
91
+ /**
92
+ *
93
+ * @type {string}
94
+ * @memberof PaymentEntity
95
+ */
96
+ 'tenantHierarchy': string;
97
+ /**
98
+ *
99
+ * @type {string}
100
+ * @memberof PaymentEntity
101
+ */
102
+ 'receivedDate': string;
103
+ /**
104
+ *
105
+ * @type {string}
106
+ * @memberof PaymentEntity
107
+ */
108
+ 'referenceNumber'?: string;
109
+ /**
110
+ *
111
+ * @type {string}
112
+ * @memberof PaymentEntity
113
+ */
114
+ 'comment'?: string;
115
+ /**
116
+ *
117
+ * @type {string}
118
+ * @memberof PaymentEntity
119
+ */
120
+ 'createdAt': string;
121
+ /**
122
+ *
123
+ * @type {string}
124
+ * @memberof PaymentEntity
125
+ */
126
+ 'deletedAt'?: string;
127
+ /**
128
+ *
129
+ * @type {string}
130
+ * @memberof PaymentEntity
131
+ */
132
+ 'ern': string;
133
+ }
@@ -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,86 @@
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 { BankTransactionEntity } from './bank-transaction-entity';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface SuggestionGenerationProgressEntity
17
+ */
18
+ export interface SuggestionGenerationProgressEntity {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof SuggestionGenerationProgressEntity
23
+ */
24
+ 'id': number;
25
+ /**
26
+ *
27
+ * @type {number}
28
+ * @memberof SuggestionGenerationProgressEntity
29
+ */
30
+ 'bankTransactionId': number;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof SuggestionGenerationProgressEntity
35
+ */
36
+ 'status': SuggestionGenerationProgressEntityStatusEnum;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof SuggestionGenerationProgressEntity
41
+ */
42
+ 'errorMessage'?: string;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof SuggestionGenerationProgressEntity
47
+ */
48
+ 'owner': string;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof SuggestionGenerationProgressEntity
53
+ */
54
+ 'tenantHierarchy': string;
55
+ /**
56
+ *
57
+ * @type {BankTransactionEntity}
58
+ * @memberof SuggestionGenerationProgressEntity
59
+ */
60
+ 'bankTransaction': BankTransactionEntity;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof SuggestionGenerationProgressEntity
65
+ */
66
+ 'createdAt': string;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof SuggestionGenerationProgressEntity
71
+ */
72
+ 'updatedAt': string;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof SuggestionGenerationProgressEntity
77
+ */
78
+ 'deletedAt': string;
79
+ }
80
+ export declare const SuggestionGenerationProgressEntityStatusEnum: {
81
+ readonly Pending: "pending";
82
+ readonly Processing: "processing";
83
+ readonly Completed: "completed";
84
+ readonly Failed: "failed";
85
+ };
86
+ export type SuggestionGenerationProgressEntityStatusEnum = typeof SuggestionGenerationProgressEntityStatusEnum[keyof typeof SuggestionGenerationProgressEntityStatusEnum];
@@ -0,0 +1,22 @@
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.SuggestionGenerationProgressEntityStatusEnum = void 0;
17
+ exports.SuggestionGenerationProgressEntityStatusEnum = {
18
+ Pending: 'pending',
19
+ Processing: 'processing',
20
+ Completed: 'completed',
21
+ Failed: 'failed'
22
+ };
@@ -105,4 +105,30 @@ export interface TenantBankAccountClassWithoutExpandProperties {
105
105
  * @memberof TenantBankAccountClassWithoutExpandProperties
106
106
  */
107
107
  'country'?: string;
108
+ /**
109
+ * SEPA Pain version
110
+ * @type {string}
111
+ * @memberof TenantBankAccountClassWithoutExpandProperties
112
+ */
113
+ 'sepaPainVersion': TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum;
114
+ /**
115
+ * Creditor ID
116
+ * @type {string}
117
+ * @memberof TenantBankAccountClassWithoutExpandProperties
118
+ */
119
+ 'creditorId': string;
120
+ /**
121
+ * Indicates whether this is the default bank account for the tenant
122
+ * @type {boolean}
123
+ * @memberof TenantBankAccountClassWithoutExpandProperties
124
+ */
125
+ 'isDefault': boolean;
108
126
  }
127
+ export declare const TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum: {
128
+ readonly _00302: "pain.008.003.02";
129
+ readonly _00802: "pain.008.008.02";
130
+ readonly _00109: "pain.008.001.09";
131
+ readonly _00110: "pain.008.001.10";
132
+ readonly _00111: "pain.008.001.11";
133
+ };
134
+ export type TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = typeof TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum[keyof typeof TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum];
@@ -13,3 +13,11 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = void 0;
17
+ exports.TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = {
18
+ _00302: 'pain.008.003.02',
19
+ _00802: 'pain.008.008.02',
20
+ _00109: 'pain.008.001.09',
21
+ _00110: 'pain.008.001.10',
22
+ _00111: 'pain.008.001.11'
23
+ };
@@ -112,4 +112,30 @@ export interface TenantBankAccountClass {
112
112
  * @memberof TenantBankAccountClass
113
113
  */
114
114
  'country'?: string;
115
+ /**
116
+ * SEPA Pain version
117
+ * @type {string}
118
+ * @memberof TenantBankAccountClass
119
+ */
120
+ 'sepaPainVersion': TenantBankAccountClassSepaPainVersionEnum;
121
+ /**
122
+ * Creditor ID
123
+ * @type {string}
124
+ * @memberof TenantBankAccountClass
125
+ */
126
+ 'creditorId': string;
127
+ /**
128
+ * Indicates whether this is the default bank account for the tenant
129
+ * @type {boolean}
130
+ * @memberof TenantBankAccountClass
131
+ */
132
+ 'isDefault': boolean;
115
133
  }
134
+ export declare const TenantBankAccountClassSepaPainVersionEnum: {
135
+ readonly _00302: "pain.008.003.02";
136
+ readonly _00802: "pain.008.008.02";
137
+ readonly _00109: "pain.008.001.09";
138
+ readonly _00110: "pain.008.001.10";
139
+ readonly _00111: "pain.008.001.11";
140
+ };
141
+ export type TenantBankAccountClassSepaPainVersionEnum = typeof TenantBankAccountClassSepaPainVersionEnum[keyof typeof TenantBankAccountClassSepaPainVersionEnum];
@@ -13,3 +13,11 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.TenantBankAccountClassSepaPainVersionEnum = void 0;
17
+ exports.TenantBankAccountClassSepaPainVersionEnum = {
18
+ _00302: 'pain.008.003.02',
19
+ _00802: 'pain.008.008.02',
20
+ _00109: 'pain.008.001.09',
21
+ _00110: 'pain.008.001.10',
22
+ _00111: 'pain.008.001.11'
23
+ };
@@ -0,0 +1,153 @@
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 { BankTransactionEntity } from './bank-transaction-entity';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface TenantBankAccountEntity
17
+ */
18
+ export interface TenantBankAccountEntity {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof TenantBankAccountEntity
23
+ */
24
+ 'id': number;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof TenantBankAccountEntity
29
+ */
30
+ 'code': string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof TenantBankAccountEntity
35
+ */
36
+ 'owner': string;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof TenantBankAccountEntity
41
+ */
42
+ 'bankName': string;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof TenantBankAccountEntity
47
+ */
48
+ 'iban': string;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof TenantBankAccountEntity
53
+ */
54
+ 'accountNumber': string;
55
+ /**
56
+ *
57
+ * @type {string}
58
+ * @memberof TenantBankAccountEntity
59
+ */
60
+ 'accountName': string;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof TenantBankAccountEntity
65
+ */
66
+ 'bookingAccount': string;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof TenantBankAccountEntity
71
+ */
72
+ 'street'?: string;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof TenantBankAccountEntity
77
+ */
78
+ 'houseNumber'?: string;
79
+ /**
80
+ *
81
+ * @type {string}
82
+ * @memberof TenantBankAccountEntity
83
+ */
84
+ 'zipCode'?: string;
85
+ /**
86
+ *
87
+ * @type {string}
88
+ * @memberof TenantBankAccountEntity
89
+ */
90
+ 'city'?: string;
91
+ /**
92
+ *
93
+ * @type {string}
94
+ * @memberof TenantBankAccountEntity
95
+ */
96
+ 'country'?: string;
97
+ /**
98
+ *
99
+ * @type {boolean}
100
+ * @memberof TenantBankAccountEntity
101
+ */
102
+ 'isDefault': boolean;
103
+ /**
104
+ *
105
+ * @type {string}
106
+ * @memberof TenantBankAccountEntity
107
+ */
108
+ 'sepaPainVersion'?: TenantBankAccountEntitySepaPainVersionEnum;
109
+ /**
110
+ *
111
+ * @type {string}
112
+ * @memberof TenantBankAccountEntity
113
+ */
114
+ 'creditorId'?: string;
115
+ /**
116
+ *
117
+ * @type {string}
118
+ * @memberof TenantBankAccountEntity
119
+ */
120
+ 'tenantHierarchy': string;
121
+ /**
122
+ *
123
+ * @type {Array<BankTransactionEntity>}
124
+ * @memberof TenantBankAccountEntity
125
+ */
126
+ 'bankTransactions': Array<BankTransactionEntity>;
127
+ /**
128
+ *
129
+ * @type {string}
130
+ * @memberof TenantBankAccountEntity
131
+ */
132
+ 'createdAt'?: string;
133
+ /**
134
+ *
135
+ * @type {string}
136
+ * @memberof TenantBankAccountEntity
137
+ */
138
+ 'updatedAt'?: string;
139
+ /**
140
+ *
141
+ * @type {string}
142
+ * @memberof TenantBankAccountEntity
143
+ */
144
+ 'deletedAt'?: string;
145
+ }
146
+ export declare const TenantBankAccountEntitySepaPainVersionEnum: {
147
+ readonly _00302: "pain.008.003.02";
148
+ readonly _00802: "pain.008.008.02";
149
+ readonly _00109: "pain.008.001.09";
150
+ readonly _00110: "pain.008.001.10";
151
+ readonly _00111: "pain.008.001.11";
152
+ };
153
+ export type TenantBankAccountEntitySepaPainVersionEnum = typeof TenantBankAccountEntitySepaPainVersionEnum[keyof typeof TenantBankAccountEntitySepaPainVersionEnum];
@@ -0,0 +1,23 @@
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.TenantBankAccountEntitySepaPainVersionEnum = void 0;
17
+ exports.TenantBankAccountEntitySepaPainVersionEnum = {
18
+ _00302: 'pain.008.003.02',
19
+ _00802: 'pain.008.008.02',
20
+ _00109: 'pain.008.001.09',
21
+ _00110: 'pain.008.001.10',
22
+ _00111: 'pain.008.001.11'
23
+ };