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