@emilgroup/claim-sdk 1.17.2-beta.4 → 1.17.2-beta.6

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 (32) hide show
  1. package/.openapi-generator/FILES +7 -0
  2. package/README.md +2 -2
  3. package/api/claim-regulations-api.ts +16 -14
  4. package/dist/api/claim-regulations-api.d.ts +9 -8
  5. package/dist/api/claim-regulations-api.js +12 -12
  6. package/dist/models/create-regulation-item-request-dto.d.ts +22 -1
  7. package/dist/models/index.d.ts +7 -0
  8. package/dist/models/index.js +7 -0
  9. package/dist/models/payout-details-dto.d.ts +60 -0
  10. package/dist/models/payout-details-dto.js +26 -0
  11. package/dist/models/regress-details-dto.d.ts +51 -0
  12. package/dist/models/regress-details-dto.js +29 -0
  13. package/dist/models/reserve-details-dto.d.ts +29 -0
  14. package/dist/models/reserve-details-dto.js +20 -0
  15. package/dist/models/update-payout-details-dto.d.ts +60 -0
  16. package/dist/models/update-payout-details-dto.js +26 -0
  17. package/dist/models/update-regress-details-dto.d.ts +51 -0
  18. package/dist/models/update-regress-details-dto.js +29 -0
  19. package/dist/models/update-regulation-item-request-dto-rest.d.ts +69 -0
  20. package/dist/models/update-regulation-item-request-dto-rest.js +21 -0
  21. package/dist/models/update-reserve-details-dto.d.ts +29 -0
  22. package/dist/models/update-reserve-details-dto.js +20 -0
  23. package/models/create-regulation-item-request-dto.ts +22 -1
  24. package/models/index.ts +7 -0
  25. package/models/payout-details-dto.ts +70 -0
  26. package/models/regress-details-dto.ts +61 -0
  27. package/models/reserve-details-dto.ts +38 -0
  28. package/models/update-payout-details-dto.ts +70 -0
  29. package/models/update-regress-details-dto.ts +61 -0
  30. package/models/update-regulation-item-request-dto-rest.ts +78 -0
  31. package/models/update-reserve-details-dto.ts +38 -0
  32. package/package.json +1 -1
@@ -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.UpdatePayoutDetailsDtoPayoutStatusEnum = exports.UpdatePayoutDetailsDtoPayoutTypeEnum = void 0;
17
+ exports.UpdatePayoutDetailsDtoPayoutTypeEnum = {
18
+ Real: 'REAL',
19
+ Statistical: 'STATISTICAL'
20
+ };
21
+ exports.UpdatePayoutDetailsDtoPayoutStatusEnum = {
22
+ Pending: 'PENDING',
23
+ InProgress: 'IN_PROGRESS',
24
+ Completed: 'COMPLETED',
25
+ Failed: 'FAILED'
26
+ };
@@ -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 UpdateRegressDetailsDto
16
+ */
17
+ export interface UpdateRegressDetailsDto {
18
+ /**
19
+ * The type of recovery.
20
+ * @type {string}
21
+ * @memberof UpdateRegressDetailsDto
22
+ */
23
+ 'recoveryType'?: UpdateRegressDetailsDtoRecoveryTypeEnum;
24
+ /**
25
+ * The status of recovery.
26
+ * @type {string}
27
+ * @memberof UpdateRegressDetailsDto
28
+ */
29
+ 'recoveryStatus'?: UpdateRegressDetailsDtoRecoveryStatusEnum;
30
+ /**
31
+ * Optional helpful and relevant information provided by the third party can be stored in this field.
32
+ * @type {string}
33
+ * @memberof UpdateRegressDetailsDto
34
+ */
35
+ 'thirdPartyInformation'?: string;
36
+ }
37
+ export declare const UpdateRegressDetailsDtoRecoveryTypeEnum: {
38
+ readonly SubrogationInitiated: "SUBROGATION_INITIATED";
39
+ readonly PartialRecovery: "PARTIAL_RECOVERY";
40
+ readonly FullRecovery: "FULL_RECOVERY";
41
+ readonly Adjustment: "ADJUSTMENT";
42
+ };
43
+ export type UpdateRegressDetailsDtoRecoveryTypeEnum = typeof UpdateRegressDetailsDtoRecoveryTypeEnum[keyof typeof UpdateRegressDetailsDtoRecoveryTypeEnum];
44
+ export declare const UpdateRegressDetailsDtoRecoveryStatusEnum: {
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 UpdateRegressDetailsDtoRecoveryStatusEnum = typeof UpdateRegressDetailsDtoRecoveryStatusEnum[keyof typeof UpdateRegressDetailsDtoRecoveryStatusEnum];
@@ -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.UpdateRegressDetailsDtoRecoveryStatusEnum = exports.UpdateRegressDetailsDtoRecoveryTypeEnum = void 0;
17
+ exports.UpdateRegressDetailsDtoRecoveryTypeEnum = {
18
+ SubrogationInitiated: 'SUBROGATION_INITIATED',
19
+ PartialRecovery: 'PARTIAL_RECOVERY',
20
+ FullRecovery: 'FULL_RECOVERY',
21
+ Adjustment: 'ADJUSTMENT'
22
+ };
23
+ exports.UpdateRegressDetailsDtoRecoveryStatusEnum = {
24
+ Pending: 'PENDING',
25
+ InProgress: 'IN_PROGRESS',
26
+ PartiallyRecovered: 'PARTIALLY_RECOVERED',
27
+ FullyRecovered: 'FULLY_RECOVERED',
28
+ Closed: 'CLOSED'
29
+ };
@@ -0,0 +1,69 @@
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 { UpdatePayoutDetailsDto } from './update-payout-details-dto';
13
+ import { UpdateRegressDetailsDto } from './update-regress-details-dto';
14
+ import { UpdateReserveDetailsDto } from './update-reserve-details-dto';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface UpdateRegulationItemRequestDtoRest
19
+ */
20
+ export interface UpdateRegulationItemRequestDtoRest {
21
+ /**
22
+ * Indicates the kind of regulation item - regulation items can be of type payout, reserve or regress. When updating must be the same as the created regulation item type.
23
+ * @type {string}
24
+ * @memberof UpdateRegulationItemRequestDtoRest
25
+ */
26
+ 'regulationItemType': UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum;
27
+ /**
28
+ * The amount for the regulation item. Must be a number with up to 2 decimal places. If not provided, the amount will not be updated.
29
+ * @type {number}
30
+ * @memberof UpdateRegulationItemRequestDtoRest
31
+ */
32
+ 'amount'?: number;
33
+ /**
34
+ * The currency for the regulation item. Must be a valid currency code.
35
+ * @type {string}
36
+ * @memberof UpdateRegulationItemRequestDtoRest
37
+ */
38
+ 'currency'?: string;
39
+ /**
40
+ * The booking date for the regulation item. Must be a valid ISO 8601 date. If not provided, the booking date will not be updated.
41
+ * @type {string}
42
+ * @memberof UpdateRegulationItemRequestDtoRest
43
+ */
44
+ 'bookingDate'?: string;
45
+ /**
46
+ * The payout details for the regulation item. Must be a valid payout details object.At least an empty object is required when updating a payout item. But if the regulation item type is not payout, this field is not required.
47
+ * @type {UpdatePayoutDetailsDto}
48
+ * @memberof UpdateRegulationItemRequestDtoRest
49
+ */
50
+ 'payoutDetails'?: UpdatePayoutDetailsDto;
51
+ /**
52
+ * The reserve details for the regulation item. Must be a valid reserve details object.At least an empty object is required when updating a reserve item. But if the regulation item type is not reserve, this field is not required.
53
+ * @type {UpdateReserveDetailsDto}
54
+ * @memberof UpdateRegulationItemRequestDtoRest
55
+ */
56
+ 'reserveDetails'?: UpdateReserveDetailsDto;
57
+ /**
58
+ * The regress details for the regulation item. Must be a valid regress details object.At least an empty object is required when updating a regress item. But if the regulation item type is not regress, this field is not required.
59
+ * @type {UpdateRegressDetailsDto}
60
+ * @memberof UpdateRegulationItemRequestDtoRest
61
+ */
62
+ 'regressDetails'?: UpdateRegressDetailsDto;
63
+ }
64
+ export declare const UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum: {
65
+ readonly Payout: "PAYOUT";
66
+ readonly Regress: "REGRESS";
67
+ readonly Reserve: "RESERVE";
68
+ };
69
+ export type UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum = typeof UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum[keyof typeof UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum];
@@ -0,0 +1,21 @@
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.UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum = void 0;
17
+ exports.UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum = {
18
+ Payout: 'PAYOUT',
19
+ Regress: 'REGRESS',
20
+ Reserve: 'RESERVE'
21
+ };
@@ -0,0 +1,29 @@
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 UpdateReserveDetailsDto
16
+ */
17
+ export interface UpdateReserveDetailsDto {
18
+ /**
19
+ * The type of the reserve.
20
+ * @type {string}
21
+ * @memberof UpdateReserveDetailsDto
22
+ */
23
+ 'reserveType'?: UpdateReserveDetailsDtoReserveTypeEnum;
24
+ }
25
+ export declare const UpdateReserveDetailsDtoReserveTypeEnum: {
26
+ readonly Initial: "INITIAL";
27
+ readonly Adjustment: "ADJUSTMENT";
28
+ };
29
+ export type UpdateReserveDetailsDtoReserveTypeEnum = typeof UpdateReserveDetailsDtoReserveTypeEnum[keyof typeof UpdateReserveDetailsDtoReserveTypeEnum];
@@ -0,0 +1,20 @@
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.UpdateReserveDetailsDtoReserveTypeEnum = void 0;
17
+ exports.UpdateReserveDetailsDtoReserveTypeEnum = {
18
+ Initial: 'INITIAL',
19
+ Adjustment: 'ADJUSTMENT'
20
+ };
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ import { PayoutDetailsDto } from './payout-details-dto';
17
+ import { RegressDetailsDto } from './regress-details-dto';
18
+ import { ReserveDetailsDto } from './reserve-details-dto';
16
19
 
17
20
  /**
18
21
  *
@@ -27,7 +30,7 @@ export interface CreateRegulationItemRequestDto {
27
30
  */
28
31
  'regulationItemType': CreateRegulationItemRequestDtoRegulationItemTypeEnum;
29
32
  /**
30
- * The amount of the regulation item
33
+ * The amount for the regulation item
31
34
  * @type {number}
32
35
  * @memberof CreateRegulationItemRequestDto
33
36
  */
@@ -50,6 +53,24 @@ export interface CreateRegulationItemRequestDto {
50
53
  * @memberof CreateRegulationItemRequestDto
51
54
  */
52
55
  'claimCode': string;
56
+ /**
57
+ * Details of the payout. Required if the regulation item type is payout.
58
+ * @type {PayoutDetailsDto}
59
+ * @memberof CreateRegulationItemRequestDto
60
+ */
61
+ 'payoutDetails'?: PayoutDetailsDto;
62
+ /**
63
+ * Details of the reserve. Required if the regulation item type is reserve.
64
+ * @type {ReserveDetailsDto}
65
+ * @memberof CreateRegulationItemRequestDto
66
+ */
67
+ 'reserveDetails'?: ReserveDetailsDto;
68
+ /**
69
+ * Details of the regress. Required if the regulation item type is regress.
70
+ * @type {RegressDetailsDto}
71
+ * @memberof CreateRegulationItemRequestDto
72
+ */
73
+ 'regressDetails'?: RegressDetailsDto;
53
74
  }
54
75
 
55
76
  export const CreateRegulationItemRequestDtoRegulationItemTypeEnum = {
package/models/index.ts CHANGED
@@ -29,14 +29,21 @@ export * from './list-settlements-response-class';
29
29
  export * from './patch-claim-request-dto';
30
30
  export * from './patch-claim-response-class';
31
31
  export * from './payout-details-class';
32
+ export * from './payout-details-dto';
32
33
  export * from './regress-details-class';
34
+ export * from './regress-details-dto';
33
35
  export * from './regulation-item-class';
34
36
  export * from './regulation-item-response-class';
35
37
  export * from './reserve-details-class';
38
+ export * from './reserve-details-dto';
36
39
  export * from './settlement-class';
37
40
  export * from './update-claim-partner-role-request-dto';
38
41
  export * from './update-claim-partner-role-response-class';
39
42
  export * from './update-claim-request-dto';
40
43
  export * from './update-claim-response-class';
44
+ export * from './update-payout-details-dto';
45
+ export * from './update-regress-details-dto';
46
+ export * from './update-regulation-item-request-dto-rest';
47
+ export * from './update-reserve-details-dto';
41
48
  export * from './update-settlement-request-dto';
42
49
  export * from './update-settlement-response-class';
@@ -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,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,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
+
@@ -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 UpdatePayoutDetailsDto
21
+ */
22
+ export interface UpdatePayoutDetailsDto {
23
+ /**
24
+ * The type of the payout.
25
+ * @type {string}
26
+ * @memberof UpdatePayoutDetailsDto
27
+ */
28
+ 'payoutType'?: UpdatePayoutDetailsDtoPayoutTypeEnum;
29
+ /**
30
+ * The status of the payout.
31
+ * @type {string}
32
+ * @memberof UpdatePayoutDetailsDto
33
+ */
34
+ 'payoutStatus'?: UpdatePayoutDetailsDtoPayoutStatusEnum;
35
+ /**
36
+ * Name of the recipient who would receive the payout.
37
+ * @type {string}
38
+ * @memberof UpdatePayoutDetailsDto
39
+ */
40
+ 'recipientName'?: string;
41
+ /**
42
+ * IBAN of the recipient
43
+ * @type {string}
44
+ * @memberof UpdatePayoutDetailsDto
45
+ */
46
+ 'iban'?: string;
47
+ /**
48
+ * Purpose of the payout
49
+ * @type {string}
50
+ * @memberof UpdatePayoutDetailsDto
51
+ */
52
+ 'payoutPurpose'?: string;
53
+ }
54
+
55
+ export const UpdatePayoutDetailsDtoPayoutTypeEnum = {
56
+ Real: 'REAL',
57
+ Statistical: 'STATISTICAL'
58
+ } as const;
59
+
60
+ export type UpdatePayoutDetailsDtoPayoutTypeEnum = typeof UpdatePayoutDetailsDtoPayoutTypeEnum[keyof typeof UpdatePayoutDetailsDtoPayoutTypeEnum];
61
+ export const UpdatePayoutDetailsDtoPayoutStatusEnum = {
62
+ Pending: 'PENDING',
63
+ InProgress: 'IN_PROGRESS',
64
+ Completed: 'COMPLETED',
65
+ Failed: 'FAILED'
66
+ } as const;
67
+
68
+ export type UpdatePayoutDetailsDtoPayoutStatusEnum = typeof UpdatePayoutDetailsDtoPayoutStatusEnum[keyof typeof UpdatePayoutDetailsDtoPayoutStatusEnum];
69
+
70
+
@@ -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 UpdateRegressDetailsDto
21
+ */
22
+ export interface UpdateRegressDetailsDto {
23
+ /**
24
+ * The type of recovery.
25
+ * @type {string}
26
+ * @memberof UpdateRegressDetailsDto
27
+ */
28
+ 'recoveryType'?: UpdateRegressDetailsDtoRecoveryTypeEnum;
29
+ /**
30
+ * The status of recovery.
31
+ * @type {string}
32
+ * @memberof UpdateRegressDetailsDto
33
+ */
34
+ 'recoveryStatus'?: UpdateRegressDetailsDtoRecoveryStatusEnum;
35
+ /**
36
+ * Optional helpful and relevant information provided by the third party can be stored in this field.
37
+ * @type {string}
38
+ * @memberof UpdateRegressDetailsDto
39
+ */
40
+ 'thirdPartyInformation'?: string;
41
+ }
42
+
43
+ export const UpdateRegressDetailsDtoRecoveryTypeEnum = {
44
+ SubrogationInitiated: 'SUBROGATION_INITIATED',
45
+ PartialRecovery: 'PARTIAL_RECOVERY',
46
+ FullRecovery: 'FULL_RECOVERY',
47
+ Adjustment: 'ADJUSTMENT'
48
+ } as const;
49
+
50
+ export type UpdateRegressDetailsDtoRecoveryTypeEnum = typeof UpdateRegressDetailsDtoRecoveryTypeEnum[keyof typeof UpdateRegressDetailsDtoRecoveryTypeEnum];
51
+ export const UpdateRegressDetailsDtoRecoveryStatusEnum = {
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 UpdateRegressDetailsDtoRecoveryStatusEnum = typeof UpdateRegressDetailsDtoRecoveryStatusEnum[keyof typeof UpdateRegressDetailsDtoRecoveryStatusEnum];
60
+
61
+