@emilgroup/claim-sdk 1.17.2-beta.1 → 1.17.2-beta.2

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 (48) hide show
  1. package/.openapi-generator/FILES +10 -0
  2. package/README.md +2 -2
  3. package/api/claim-partner-roles-api.ts +9 -9
  4. package/api/claim-regulations-api.ts +364 -0
  5. package/api/claim-statuses-api.ts +9 -9
  6. package/api.ts +2 -0
  7. package/base.ts +5 -1
  8. package/dist/api/claim-partner-roles-api.d.ts +9 -9
  9. package/dist/api/claim-partner-roles-api.js +3 -3
  10. package/dist/api/claim-regulations-api.d.ts +215 -0
  11. package/dist/api/claim-regulations-api.js +358 -0
  12. package/dist/api/claim-statuses-api.d.ts +9 -9
  13. package/dist/api/claim-statuses-api.js +3 -3
  14. package/dist/api.d.ts +1 -0
  15. package/dist/api.js +1 -0
  16. package/dist/base.d.ts +1 -0
  17. package/dist/base.js +4 -1
  18. package/dist/models/create-regulation-item-request-dto.d.ts +75 -0
  19. package/dist/models/create-regulation-item-request-dto.js +21 -0
  20. package/dist/models/index.d.ts +9 -0
  21. package/dist/models/index.js +9 -0
  22. package/dist/models/payout-details-class.d.ts +90 -0
  23. package/dist/models/payout-details-class.js +26 -0
  24. package/dist/models/payout-details-dto.d.ts +60 -0
  25. package/dist/models/payout-details-dto.js +26 -0
  26. package/dist/models/regress-details-class.d.ts +81 -0
  27. package/dist/models/regress-details-class.js +29 -0
  28. package/dist/models/regress-details-dto.d.ts +51 -0
  29. package/dist/models/regress-details-dto.js +29 -0
  30. package/dist/models/regulation-item-class.d.ts +125 -0
  31. package/dist/models/regulation-item-class.js +34 -0
  32. package/dist/models/regulation-item-response-class.d.ts +25 -0
  33. package/dist/models/regulation-item-response-class.js +15 -0
  34. package/dist/models/reserve-details-class.d.ts +59 -0
  35. package/dist/models/reserve-details-class.js +20 -0
  36. package/dist/models/reserve-details-dto.d.ts +29 -0
  37. package/dist/models/reserve-details-dto.js +20 -0
  38. package/models/create-regulation-item-request-dto.ts +84 -0
  39. package/models/index.ts +9 -0
  40. package/models/payout-details-class.ts +100 -0
  41. package/models/payout-details-dto.ts +70 -0
  42. package/models/regress-details-class.ts +91 -0
  43. package/models/regress-details-dto.ts +61 -0
  44. package/models/regulation-item-class.ts +135 -0
  45. package/models/regulation-item-response-class.ts +31 -0
  46. package/models/reserve-details-class.ts +68 -0
  47. package/models/reserve-details-dto.ts +38 -0
  48. package/package.json +1 -1
@@ -26,6 +26,7 @@ __exportStar(require("./create-claim-request-dto"), exports);
26
26
  __exportStar(require("./create-claim-response-class"), exports);
27
27
  __exportStar(require("./create-claim-status-request-dto"), exports);
28
28
  __exportStar(require("./create-claim-status-response-class"), exports);
29
+ __exportStar(require("./create-regulation-item-request-dto"), exports);
29
30
  __exportStar(require("./create-settlement-request-dto"), exports);
30
31
  __exportStar(require("./create-settlement-response-class"), exports);
31
32
  __exportStar(require("./get-claim-partner-response-class"), exports);
@@ -42,6 +43,14 @@ __exportStar(require("./list-claims-response-class"), exports);
42
43
  __exportStar(require("./list-settlements-response-class"), exports);
43
44
  __exportStar(require("./patch-claim-request-dto"), exports);
44
45
  __exportStar(require("./patch-claim-response-class"), exports);
46
+ __exportStar(require("./payout-details-class"), exports);
47
+ __exportStar(require("./payout-details-dto"), exports);
48
+ __exportStar(require("./regress-details-class"), exports);
49
+ __exportStar(require("./regress-details-dto"), exports);
50
+ __exportStar(require("./regulation-item-class"), exports);
51
+ __exportStar(require("./regulation-item-response-class"), exports);
52
+ __exportStar(require("./reserve-details-class"), exports);
53
+ __exportStar(require("./reserve-details-dto"), exports);
45
54
  __exportStar(require("./settlement-class"), exports);
46
55
  __exportStar(require("./update-claim-partner-role-request-dto"), exports);
47
56
  __exportStar(require("./update-claim-partner-role-response-class"), exports);
@@ -0,0 +1,90 @@
1
+ /**
2
+ * EMIL ClaimService
3
+ * The EMIL ClaimService API description
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 PayoutDetailsClass
16
+ */
17
+ export interface PayoutDetailsClass {
18
+ /**
19
+ * Unique identifier for the object.
20
+ * @type {string}
21
+ * @memberof PayoutDetailsClass
22
+ */
23
+ 'code': string;
24
+ /**
25
+ * Unique identifier of the Regulation Item that this object belongs to.
26
+ * @type {string}
27
+ * @memberof PayoutDetailsClass
28
+ */
29
+ 'regulationItemCode': string;
30
+ /**
31
+ * The type of the payout.
32
+ * @type {string}
33
+ * @memberof PayoutDetailsClass
34
+ */
35
+ 'payoutType': PayoutDetailsClassPayoutTypeEnum;
36
+ /**
37
+ * The status of the payout.
38
+ * @type {string}
39
+ * @memberof PayoutDetailsClass
40
+ */
41
+ 'payoutStatus': PayoutDetailsClassPayoutStatusEnum;
42
+ /**
43
+ * Name of the recipient who would receive the payout
44
+ * @type {string}
45
+ * @memberof PayoutDetailsClass
46
+ */
47
+ 'recipientName': string;
48
+ /**
49
+ * IBAN of the recipient
50
+ * @type {string}
51
+ * @memberof PayoutDetailsClass
52
+ */
53
+ 'iban': string;
54
+ /**
55
+ * Purpose of the payout
56
+ * @type {string}
57
+ * @memberof PayoutDetailsClass
58
+ */
59
+ 'payoutPurpose': string;
60
+ /**
61
+ * The current version of the entity - the version is increased with every update. Initial version is 1
62
+ * @type {number}
63
+ * @memberof PayoutDetailsClass
64
+ */
65
+ 'version': number;
66
+ /**
67
+ * Time at which the object was created.
68
+ * @type {string}
69
+ * @memberof PayoutDetailsClass
70
+ */
71
+ 'createdAt': string;
72
+ /**
73
+ * Time at which the object was updated.
74
+ * @type {string}
75
+ * @memberof PayoutDetailsClass
76
+ */
77
+ 'updatedAt': string;
78
+ }
79
+ export declare const PayoutDetailsClassPayoutTypeEnum: {
80
+ readonly Real: "REAL";
81
+ readonly Statistical: "STATISTICAL";
82
+ };
83
+ export type PayoutDetailsClassPayoutTypeEnum = typeof PayoutDetailsClassPayoutTypeEnum[keyof typeof PayoutDetailsClassPayoutTypeEnum];
84
+ export declare const PayoutDetailsClassPayoutStatusEnum: {
85
+ readonly Pending: "PENDING";
86
+ readonly InProgress: "IN_PROGRESS";
87
+ readonly Completed: "COMPLETED";
88
+ readonly Failed: "FAILED";
89
+ };
90
+ export type PayoutDetailsClassPayoutStatusEnum = typeof PayoutDetailsClassPayoutStatusEnum[keyof typeof PayoutDetailsClassPayoutStatusEnum];
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL ClaimService
6
+ * The EMIL ClaimService API description
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.PayoutDetailsClassPayoutStatusEnum = exports.PayoutDetailsClassPayoutTypeEnum = void 0;
17
+ exports.PayoutDetailsClassPayoutTypeEnum = {
18
+ Real: 'REAL',
19
+ Statistical: 'STATISTICAL'
20
+ };
21
+ exports.PayoutDetailsClassPayoutStatusEnum = {
22
+ Pending: 'PENDING',
23
+ InProgress: 'IN_PROGRESS',
24
+ Completed: 'COMPLETED',
25
+ Failed: 'FAILED'
26
+ };
@@ -0,0 +1,60 @@
1
+ /**
2
+ * EMIL ClaimService
3
+ * The EMIL ClaimService API description
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 PayoutDetailsDto
16
+ */
17
+ export interface PayoutDetailsDto {
18
+ /**
19
+ * The type of the payout.
20
+ * @type {string}
21
+ * @memberof PayoutDetailsDto
22
+ */
23
+ 'payoutType': PayoutDetailsDtoPayoutTypeEnum;
24
+ /**
25
+ * The status of the payout.
26
+ * @type {string}
27
+ * @memberof PayoutDetailsDto
28
+ */
29
+ 'payoutStatus': PayoutDetailsDtoPayoutStatusEnum;
30
+ /**
31
+ * Name of the recipient who would receive the payout.
32
+ * @type {string}
33
+ * @memberof PayoutDetailsDto
34
+ */
35
+ 'recipientName': string;
36
+ /**
37
+ * IBAN of the recipient
38
+ * @type {string}
39
+ * @memberof PayoutDetailsDto
40
+ */
41
+ 'iban': string;
42
+ /**
43
+ * Purpose of the payout
44
+ * @type {string}
45
+ * @memberof PayoutDetailsDto
46
+ */
47
+ 'payoutPurpose'?: string;
48
+ }
49
+ export declare const PayoutDetailsDtoPayoutTypeEnum: {
50
+ readonly Real: "REAL";
51
+ readonly Statistical: "STATISTICAL";
52
+ };
53
+ export type PayoutDetailsDtoPayoutTypeEnum = typeof PayoutDetailsDtoPayoutTypeEnum[keyof typeof PayoutDetailsDtoPayoutTypeEnum];
54
+ export declare const PayoutDetailsDtoPayoutStatusEnum: {
55
+ readonly Pending: "PENDING";
56
+ readonly InProgress: "IN_PROGRESS";
57
+ readonly Completed: "COMPLETED";
58
+ readonly Failed: "FAILED";
59
+ };
60
+ export type PayoutDetailsDtoPayoutStatusEnum = typeof PayoutDetailsDtoPayoutStatusEnum[keyof typeof PayoutDetailsDtoPayoutStatusEnum];
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL ClaimService
6
+ * The EMIL ClaimService API description
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.PayoutDetailsDtoPayoutStatusEnum = exports.PayoutDetailsDtoPayoutTypeEnum = void 0;
17
+ exports.PayoutDetailsDtoPayoutTypeEnum = {
18
+ Real: 'REAL',
19
+ Statistical: 'STATISTICAL'
20
+ };
21
+ exports.PayoutDetailsDtoPayoutStatusEnum = {
22
+ Pending: 'PENDING',
23
+ InProgress: 'IN_PROGRESS',
24
+ Completed: 'COMPLETED',
25
+ Failed: 'FAILED'
26
+ };
@@ -0,0 +1,81 @@
1
+ /**
2
+ * EMIL ClaimService
3
+ * The EMIL ClaimService API description
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 RegressDetailsClass
16
+ */
17
+ export interface RegressDetailsClass {
18
+ /**
19
+ * Unique identifier for the object.
20
+ * @type {string}
21
+ * @memberof RegressDetailsClass
22
+ */
23
+ 'code': string;
24
+ /**
25
+ * Unique identifier of the Regulation Item that this object belongs to.
26
+ * @type {string}
27
+ * @memberof RegressDetailsClass
28
+ */
29
+ 'regulationItemCode': string;
30
+ /**
31
+ * The type of recovery.
32
+ * @type {string}
33
+ * @memberof RegressDetailsClass
34
+ */
35
+ 'recoveryType': RegressDetailsClassRecoveryTypeEnum;
36
+ /**
37
+ * The status of recovery.
38
+ * @type {string}
39
+ * @memberof RegressDetailsClass
40
+ */
41
+ 'recoveryStatus': RegressDetailsClassRecoveryStatusEnum;
42
+ /**
43
+ * Any information provided by the third party.
44
+ * @type {string}
45
+ * @memberof RegressDetailsClass
46
+ */
47
+ 'thirdPartyInformation': string;
48
+ /**
49
+ * The current version of the entity - the version is increased with every update. Initial version is 1
50
+ * @type {number}
51
+ * @memberof RegressDetailsClass
52
+ */
53
+ 'version': number;
54
+ /**
55
+ * Time at which the object was created.
56
+ * @type {string}
57
+ * @memberof RegressDetailsClass
58
+ */
59
+ 'createdAt': string;
60
+ /**
61
+ * Time at which the object was updated.
62
+ * @type {string}
63
+ * @memberof RegressDetailsClass
64
+ */
65
+ 'updatedAt': string;
66
+ }
67
+ export declare const RegressDetailsClassRecoveryTypeEnum: {
68
+ readonly SubrogationInitiated: "SUBROGATION_INITIATED";
69
+ readonly PartialRecovery: "PARTIAL_RECOVERY";
70
+ readonly FullRecovery: "FULL_RECOVERY";
71
+ readonly Adjustment: "ADJUSTMENT";
72
+ };
73
+ export type RegressDetailsClassRecoveryTypeEnum = typeof RegressDetailsClassRecoveryTypeEnum[keyof typeof RegressDetailsClassRecoveryTypeEnum];
74
+ export declare const RegressDetailsClassRecoveryStatusEnum: {
75
+ readonly Pending: "PENDING";
76
+ readonly InProgress: "IN_PROGRESS";
77
+ readonly PartiallyRecovered: "PARTIALLY_RECOVERED";
78
+ readonly FullyRecovered: "FULLY_RECOVERED";
79
+ readonly Closed: "CLOSED";
80
+ };
81
+ export type RegressDetailsClassRecoveryStatusEnum = typeof RegressDetailsClassRecoveryStatusEnum[keyof typeof RegressDetailsClassRecoveryStatusEnum];
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL ClaimService
6
+ * The EMIL ClaimService API description
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.RegressDetailsClassRecoveryStatusEnum = exports.RegressDetailsClassRecoveryTypeEnum = void 0;
17
+ exports.RegressDetailsClassRecoveryTypeEnum = {
18
+ SubrogationInitiated: 'SUBROGATION_INITIATED',
19
+ PartialRecovery: 'PARTIAL_RECOVERY',
20
+ FullRecovery: 'FULL_RECOVERY',
21
+ Adjustment: 'ADJUSTMENT'
22
+ };
23
+ exports.RegressDetailsClassRecoveryStatusEnum = {
24
+ Pending: 'PENDING',
25
+ InProgress: 'IN_PROGRESS',
26
+ PartiallyRecovered: 'PARTIALLY_RECOVERED',
27
+ FullyRecovered: 'FULLY_RECOVERED',
28
+ Closed: 'CLOSED'
29
+ };
@@ -0,0 +1,51 @@
1
+ /**
2
+ * EMIL ClaimService
3
+ * The EMIL ClaimService API description
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 RegressDetailsDto
16
+ */
17
+ export interface RegressDetailsDto {
18
+ /**
19
+ * The type of recovery.
20
+ * @type {string}
21
+ * @memberof RegressDetailsDto
22
+ */
23
+ 'recoveryType': RegressDetailsDtoRecoveryTypeEnum;
24
+ /**
25
+ * The status of recovery.
26
+ * @type {string}
27
+ * @memberof RegressDetailsDto
28
+ */
29
+ 'recoveryStatus': RegressDetailsDtoRecoveryStatusEnum;
30
+ /**
31
+ * Optional helpful and relevant information provided by the third party can be stored in this field.
32
+ * @type {string}
33
+ * @memberof RegressDetailsDto
34
+ */
35
+ 'thirdPartyInformation'?: string;
36
+ }
37
+ export declare const RegressDetailsDtoRecoveryTypeEnum: {
38
+ readonly SubrogationInitiated: "SUBROGATION_INITIATED";
39
+ readonly PartialRecovery: "PARTIAL_RECOVERY";
40
+ readonly FullRecovery: "FULL_RECOVERY";
41
+ readonly Adjustment: "ADJUSTMENT";
42
+ };
43
+ export type RegressDetailsDtoRecoveryTypeEnum = typeof RegressDetailsDtoRecoveryTypeEnum[keyof typeof RegressDetailsDtoRecoveryTypeEnum];
44
+ export declare const RegressDetailsDtoRecoveryStatusEnum: {
45
+ readonly Pending: "PENDING";
46
+ readonly InProgress: "IN_PROGRESS";
47
+ readonly PartiallyRecovered: "PARTIALLY_RECOVERED";
48
+ readonly FullyRecovered: "FULLY_RECOVERED";
49
+ readonly Closed: "CLOSED";
50
+ };
51
+ export type RegressDetailsDtoRecoveryStatusEnum = typeof RegressDetailsDtoRecoveryStatusEnum[keyof typeof RegressDetailsDtoRecoveryStatusEnum];
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL ClaimService
6
+ * The EMIL ClaimService API description
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.RegressDetailsDtoRecoveryStatusEnum = exports.RegressDetailsDtoRecoveryTypeEnum = void 0;
17
+ exports.RegressDetailsDtoRecoveryTypeEnum = {
18
+ SubrogationInitiated: 'SUBROGATION_INITIATED',
19
+ PartialRecovery: 'PARTIAL_RECOVERY',
20
+ FullRecovery: 'FULL_RECOVERY',
21
+ Adjustment: 'ADJUSTMENT'
22
+ };
23
+ exports.RegressDetailsDtoRecoveryStatusEnum = {
24
+ Pending: 'PENDING',
25
+ InProgress: 'IN_PROGRESS',
26
+ PartiallyRecovered: 'PARTIALLY_RECOVERED',
27
+ FullyRecovered: 'FULLY_RECOVERED',
28
+ Closed: 'CLOSED'
29
+ };
@@ -0,0 +1,125 @@
1
+ /**
2
+ * EMIL ClaimService
3
+ * The EMIL ClaimService API description
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 { PayoutDetailsClass } from './payout-details-class';
13
+ import { RegressDetailsClass } from './regress-details-class';
14
+ import { ReserveDetailsClass } from './reserve-details-class';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface RegulationItemClass
19
+ */
20
+ export interface RegulationItemClass {
21
+ /**
22
+ * Unique identifier for the object.
23
+ * @type {string}
24
+ * @memberof RegulationItemClass
25
+ */
26
+ 'code': string;
27
+ /**
28
+ * Indicates the kind of regulation item - regulation items can be of type payout, reserve or regress
29
+ * @type {string}
30
+ * @memberof RegulationItemClass
31
+ */
32
+ 'regulationItemType': RegulationItemClassRegulationItemTypeEnum;
33
+ /**
34
+ * The amount of the regulation item - the amount is displayed in cents
35
+ * @type {number}
36
+ * @memberof RegulationItemClass
37
+ */
38
+ 'amount': number;
39
+ /**
40
+ * The currency of the regulation item
41
+ * @type {string}
42
+ * @memberof RegulationItemClass
43
+ */
44
+ 'currency': RegulationItemClassCurrencyEnum;
45
+ /**
46
+ * Booking date for the regulation item
47
+ * @type {string}
48
+ * @memberof RegulationItemClass
49
+ */
50
+ 'bookingDate': string;
51
+ /**
52
+ * Unique identifier of the Claim that this object belongs to.
53
+ * @type {string}
54
+ * @memberof RegulationItemClass
55
+ */
56
+ 'claimCode': string;
57
+ /**
58
+ * The ClaimClass response.
59
+ * @type {object}
60
+ * @memberof RegulationItemClass
61
+ */
62
+ 'claim': object;
63
+ /**
64
+ * The PayoutDetailsClass response.
65
+ * @type {PayoutDetailsClass}
66
+ * @memberof RegulationItemClass
67
+ */
68
+ 'payoutDetails': PayoutDetailsClass;
69
+ /**
70
+ * The ReserveDetailsClass response.
71
+ * @type {ReserveDetailsClass}
72
+ * @memberof RegulationItemClass
73
+ */
74
+ 'reserveDetails': ReserveDetailsClass;
75
+ /**
76
+ * The RegressDetailsClass response.
77
+ * @type {RegressDetailsClass}
78
+ * @memberof RegulationItemClass
79
+ */
80
+ 'regressDetails': RegressDetailsClass;
81
+ /**
82
+ * The user who created the regulation item - can be `System User` or a real user
83
+ * @type {string}
84
+ * @memberof RegulationItemClass
85
+ */
86
+ 'updatedBy': string;
87
+ /**
88
+ * The version of the regulation item - the version is increased with every update. Initial version is 1
89
+ * @type {number}
90
+ * @memberof RegulationItemClass
91
+ */
92
+ 'version': number;
93
+ /**
94
+ * Time at which the object was created.
95
+ * @type {string}
96
+ * @memberof RegulationItemClass
97
+ */
98
+ 'createdAt': string;
99
+ /**
100
+ * Time at which the object was updated.
101
+ * @type {string}
102
+ * @memberof RegulationItemClass
103
+ */
104
+ 'updatedAt': string;
105
+ }
106
+ export declare const RegulationItemClassRegulationItemTypeEnum: {
107
+ readonly Payout: "PAYOUT";
108
+ readonly Regress: "REGRESS";
109
+ readonly Reserve: "RESERVE";
110
+ };
111
+ export type RegulationItemClassRegulationItemTypeEnum = typeof RegulationItemClassRegulationItemTypeEnum[keyof typeof RegulationItemClassRegulationItemTypeEnum];
112
+ export declare const RegulationItemClassCurrencyEnum: {
113
+ readonly Eur: "EUR";
114
+ readonly Usd: "USD";
115
+ readonly Gbp: "GBP";
116
+ readonly Chf: "CHF";
117
+ readonly Pln: "PLN";
118
+ readonly Aud: "AUD";
119
+ readonly Cad: "CAD";
120
+ readonly Ddk: "DDK";
121
+ readonly Huf: "HUF";
122
+ readonly Nok: "NOK";
123
+ readonly Sek: "SEK";
124
+ };
125
+ export type RegulationItemClassCurrencyEnum = typeof RegulationItemClassCurrencyEnum[keyof typeof RegulationItemClassCurrencyEnum];
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL ClaimService
6
+ * The EMIL ClaimService API description
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.RegulationItemClassCurrencyEnum = exports.RegulationItemClassRegulationItemTypeEnum = void 0;
17
+ exports.RegulationItemClassRegulationItemTypeEnum = {
18
+ Payout: 'PAYOUT',
19
+ Regress: 'REGRESS',
20
+ Reserve: 'RESERVE'
21
+ };
22
+ exports.RegulationItemClassCurrencyEnum = {
23
+ Eur: 'EUR',
24
+ Usd: 'USD',
25
+ Gbp: 'GBP',
26
+ Chf: 'CHF',
27
+ Pln: 'PLN',
28
+ Aud: 'AUD',
29
+ Cad: 'CAD',
30
+ Ddk: 'DDK',
31
+ Huf: 'HUF',
32
+ Nok: 'NOK',
33
+ Sek: 'SEK'
34
+ };
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL ClaimService
3
+ * The EMIL ClaimService API description
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 { RegulationItemClass } from './regulation-item-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface RegulationItemResponseClass
17
+ */
18
+ export interface RegulationItemResponseClass {
19
+ /**
20
+ * The regulation item response.
21
+ * @type {RegulationItemClass}
22
+ * @memberof RegulationItemResponseClass
23
+ */
24
+ 'regulationItem': RegulationItemClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL ClaimService
6
+ * The EMIL ClaimService API description
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,59 @@
1
+ /**
2
+ * EMIL ClaimService
3
+ * The EMIL ClaimService API description
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 ReserveDetailsClass
16
+ */
17
+ export interface ReserveDetailsClass {
18
+ /**
19
+ * Unique identifier for the object.
20
+ * @type {string}
21
+ * @memberof ReserveDetailsClass
22
+ */
23
+ 'code': string;
24
+ /**
25
+ * Unique identifier of the Regulation Item that this object belongs to.
26
+ * @type {string}
27
+ * @memberof ReserveDetailsClass
28
+ */
29
+ 'regulationItemCode': string;
30
+ /**
31
+ * The type of the reserve.
32
+ * @type {string}
33
+ * @memberof ReserveDetailsClass
34
+ */
35
+ 'reserveType': ReserveDetailsClassReserveTypeEnum;
36
+ /**
37
+ * The current version of the entity - the version is increased with every update. Initial version is 1
38
+ * @type {number}
39
+ * @memberof ReserveDetailsClass
40
+ */
41
+ 'version': number;
42
+ /**
43
+ * Time at which the object was created.
44
+ * @type {string}
45
+ * @memberof ReserveDetailsClass
46
+ */
47
+ 'createdAt': string;
48
+ /**
49
+ * Time at which the object was updated.
50
+ * @type {string}
51
+ * @memberof ReserveDetailsClass
52
+ */
53
+ 'updatedAt': string;
54
+ }
55
+ export declare const ReserveDetailsClassReserveTypeEnum: {
56
+ readonly Initial: "INITIAL";
57
+ readonly Adjustment: "ADJUSTMENT";
58
+ };
59
+ export type ReserveDetailsClassReserveTypeEnum = typeof ReserveDetailsClassReserveTypeEnum[keyof typeof ReserveDetailsClassReserveTypeEnum];