@emilgroup/claim-sdk 1.17.2-beta.2 → 1.17.2-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +2 -4
- package/README.md +2 -2
- package/api/claim-regulations-api.ts +366 -45
- package/api/{default-api.ts → health-check-api.ts} +22 -18
- package/api.ts +2 -2
- package/dist/api/claim-regulations-api.d.ts +215 -40
- package/dist/api/claim-regulations-api.js +307 -23
- package/dist/api/health-check-api.d.ts +70 -0
- package/dist/api/{default-api.js → health-check-api.js} +31 -27
- package/dist/api.d.ts +1 -1
- package/dist/api.js +1 -1
- package/dist/models/create-claim-partner-response-class.d.ts +1 -1
- package/dist/models/create-claim-partner-role-response-class.d.ts +1 -1
- package/dist/models/create-claim-request-dto.d.ts +17 -17
- package/dist/models/create-regulation-item-request-dto.d.ts +20 -27
- package/dist/models/create-regulation-item-request-dto.js +14 -1
- package/dist/models/get-claim-partner-response-class.d.ts +1 -1
- package/dist/models/get-claim-partner-role-response-class.d.ts +1 -1
- package/dist/models/index.d.ts +1 -3
- package/dist/models/index.js +1 -3
- package/dist/models/list-regulations-response-class.d.ts +31 -0
- package/dist/models/{reserve-details-dto.js → list-regulations-response-class.js} +0 -5
- package/dist/models/patch-claim-request-dto.d.ts +18 -18
- package/dist/models/payout-details-class.d.ts +1 -1
- package/dist/models/regulation-item-class.d.ts +5 -4
- package/dist/models/update-claim-partner-role-response-class.d.ts +1 -1
- package/dist/models/update-claim-request-dto.d.ts +15 -15
- package/models/create-claim-partner-response-class.ts +1 -1
- package/models/create-claim-partner-role-response-class.ts +1 -1
- package/models/create-claim-request-dto.ts +17 -17
- package/models/create-regulation-item-request-dto.ts +21 -27
- package/models/get-claim-partner-response-class.ts +1 -1
- package/models/get-claim-partner-role-response-class.ts +1 -1
- package/models/index.ts +1 -3
- package/models/list-regulations-response-class.ts +37 -0
- package/models/patch-claim-request-dto.ts +18 -18
- package/models/payout-details-class.ts +1 -1
- package/models/regulation-item-class.ts +5 -4
- package/models/update-claim-partner-role-response-class.ts +1 -1
- package/models/update-claim-request-dto.ts +15 -15
- package/package.json +1 -1
- package/dist/api/default-api.d.ts +0 -66
- package/dist/models/payout-details-dto.d.ts +0 -60
- package/dist/models/payout-details-dto.js +0 -26
- package/dist/models/regress-details-dto.d.ts +0 -51
- package/dist/models/regress-details-dto.js +0 -29
- package/dist/models/reserve-details-dto.d.ts +0 -29
- package/models/payout-details-dto.ts +0 -70
- package/models/regress-details-dto.ts +0 -61
- package/models/reserve-details-dto.ts +0 -38
|
@@ -20,97 +20,97 @@ export interface CreateClaimRequestDto {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof CreateClaimRequestDto
|
|
22
22
|
*/
|
|
23
|
-
'claimNumber'
|
|
23
|
+
'claimNumber': string;
|
|
24
24
|
/**
|
|
25
25
|
* Field to enter the claim title.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof CreateClaimRequestDto
|
|
28
28
|
*/
|
|
29
|
-
'title'
|
|
29
|
+
'title': string;
|
|
30
30
|
/**
|
|
31
31
|
* The current status of the claim.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof CreateClaimRequestDto
|
|
34
34
|
*/
|
|
35
|
-
'status'
|
|
35
|
+
'status': string;
|
|
36
36
|
/**
|
|
37
37
|
* Unique identifier of the account that the claim belongs to.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof CreateClaimRequestDto
|
|
40
40
|
*/
|
|
41
|
-
'accountCode'
|
|
41
|
+
'accountCode': string;
|
|
42
42
|
/**
|
|
43
43
|
* Field for the policy number that the claim belongs to.
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof CreateClaimRequestDto
|
|
46
46
|
*/
|
|
47
|
-
'policyNumber'
|
|
47
|
+
'policyNumber': string;
|
|
48
48
|
/**
|
|
49
49
|
* Field for the policy code that the claim belongs to.
|
|
50
50
|
* @type {string}
|
|
51
51
|
* @memberof CreateClaimRequestDto
|
|
52
52
|
*/
|
|
53
|
-
'policyCode'
|
|
53
|
+
'policyCode': string;
|
|
54
54
|
/**
|
|
55
55
|
* Unique identifier referencing the product.
|
|
56
56
|
* @type {number}
|
|
57
57
|
* @memberof CreateClaimRequestDto
|
|
58
58
|
*/
|
|
59
|
-
'productId'
|
|
59
|
+
'productId': number;
|
|
60
60
|
/**
|
|
61
61
|
* Unique identifier referencing the product version.
|
|
62
62
|
* @type {number}
|
|
63
63
|
* @memberof CreateClaimRequestDto
|
|
64
64
|
*/
|
|
65
|
-
'productVersionId'
|
|
65
|
+
'productVersionId': number;
|
|
66
66
|
/**
|
|
67
67
|
* The name of the product.
|
|
68
68
|
* @type {string}
|
|
69
69
|
* @memberof CreateClaimRequestDto
|
|
70
70
|
*/
|
|
71
|
-
'productName'
|
|
71
|
+
'productName': string;
|
|
72
72
|
/**
|
|
73
73
|
* The insured object identifier that the claim is made for.
|
|
74
74
|
* @type {number}
|
|
75
75
|
* @memberof CreateClaimRequestDto
|
|
76
76
|
*/
|
|
77
|
-
'insuredObjectId'
|
|
77
|
+
'insuredObjectId': number;
|
|
78
78
|
/**
|
|
79
79
|
* The policy object code that the claim is made for.
|
|
80
80
|
* @type {string}
|
|
81
81
|
* @memberof CreateClaimRequestDto
|
|
82
82
|
*/
|
|
83
|
-
'policyObjectCode'
|
|
83
|
+
'policyObjectCode': string;
|
|
84
84
|
/**
|
|
85
85
|
* The claim\'s description in 5000 characters.
|
|
86
86
|
* @type {string}
|
|
87
87
|
* @memberof CreateClaimRequestDto
|
|
88
88
|
*/
|
|
89
|
-
'description'
|
|
89
|
+
'description': string;
|
|
90
90
|
/**
|
|
91
91
|
* The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and hospital records, and inspecting property damage to determine the extent of the insurance company\'s liability.
|
|
92
92
|
* @type {string}
|
|
93
93
|
* @memberof CreateClaimRequestDto
|
|
94
94
|
*/
|
|
95
|
-
'adjuster'
|
|
95
|
+
'adjuster': string;
|
|
96
96
|
/**
|
|
97
97
|
* A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
|
|
98
98
|
* @type {string}
|
|
99
99
|
* @memberof CreateClaimRequestDto
|
|
100
100
|
*/
|
|
101
|
-
'reporter'
|
|
101
|
+
'reporter': string;
|
|
102
102
|
/**
|
|
103
103
|
* The contact email of the policyholder.
|
|
104
104
|
* @type {string}
|
|
105
105
|
* @memberof CreateClaimRequestDto
|
|
106
106
|
*/
|
|
107
|
-
'contactEmail'
|
|
107
|
+
'contactEmail': string;
|
|
108
108
|
/**
|
|
109
109
|
* The contact phone of the policyholder.
|
|
110
110
|
* @type {string}
|
|
111
111
|
* @memberof CreateClaimRequestDto
|
|
112
112
|
*/
|
|
113
|
-
'contactPhone'
|
|
113
|
+
'contactPhone': string;
|
|
114
114
|
/**
|
|
115
115
|
* The claim\'s damage date.
|
|
116
116
|
* @type {string}
|
|
@@ -128,5 +128,5 @@ export interface CreateClaimRequestDto {
|
|
|
128
128
|
* @type {object}
|
|
129
129
|
* @memberof CreateClaimRequestDto
|
|
130
130
|
*/
|
|
131
|
-
'customFields'
|
|
131
|
+
'customFields': object;
|
|
132
132
|
}
|
|
@@ -9,9 +9,6 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { PayoutDetailsDto } from './payout-details-dto';
|
|
13
|
-
import { RegressDetailsDto } from './regress-details-dto';
|
|
14
|
-
import { ReserveDetailsDto } from './reserve-details-dto';
|
|
15
12
|
/**
|
|
16
13
|
*
|
|
17
14
|
* @export
|
|
@@ -19,53 +16,35 @@ import { ReserveDetailsDto } from './reserve-details-dto';
|
|
|
19
16
|
*/
|
|
20
17
|
export interface CreateRegulationItemRequestDto {
|
|
21
18
|
/**
|
|
22
|
-
*
|
|
19
|
+
* Indicates the kind of regulation item - regulation items can be of type payout, reserve or regress
|
|
23
20
|
* @type {string}
|
|
24
21
|
* @memberof CreateRegulationItemRequestDto
|
|
25
22
|
*/
|
|
26
23
|
'regulationItemType': CreateRegulationItemRequestDtoRegulationItemTypeEnum;
|
|
27
24
|
/**
|
|
28
|
-
*
|
|
25
|
+
* The amount of the regulation item
|
|
29
26
|
* @type {number}
|
|
30
27
|
* @memberof CreateRegulationItemRequestDto
|
|
31
28
|
*/
|
|
32
29
|
'amount': number;
|
|
33
30
|
/**
|
|
34
|
-
*
|
|
31
|
+
* The currency of the regulation item
|
|
35
32
|
* @type {string}
|
|
36
33
|
* @memberof CreateRegulationItemRequestDto
|
|
37
34
|
*/
|
|
38
|
-
'currency':
|
|
35
|
+
'currency': CreateRegulationItemRequestDtoCurrencyEnum;
|
|
39
36
|
/**
|
|
40
|
-
*
|
|
37
|
+
* Booking date for the regulation item
|
|
41
38
|
* @type {string}
|
|
42
39
|
* @memberof CreateRegulationItemRequestDto
|
|
43
40
|
*/
|
|
44
41
|
'bookingDate': string;
|
|
45
42
|
/**
|
|
46
|
-
*
|
|
43
|
+
* Unique identifier of the Claim that this object belongs to.
|
|
47
44
|
* @type {string}
|
|
48
45
|
* @memberof CreateRegulationItemRequestDto
|
|
49
46
|
*/
|
|
50
47
|
'claimCode': string;
|
|
51
|
-
/**
|
|
52
|
-
*
|
|
53
|
-
* @type {PayoutDetailsDto}
|
|
54
|
-
* @memberof CreateRegulationItemRequestDto
|
|
55
|
-
*/
|
|
56
|
-
'payoutDetails'?: PayoutDetailsDto;
|
|
57
|
-
/**
|
|
58
|
-
*
|
|
59
|
-
* @type {ReserveDetailsDto}
|
|
60
|
-
* @memberof CreateRegulationItemRequestDto
|
|
61
|
-
*/
|
|
62
|
-
'reserveDetails'?: ReserveDetailsDto;
|
|
63
|
-
/**
|
|
64
|
-
*
|
|
65
|
-
* @type {RegressDetailsDto}
|
|
66
|
-
* @memberof CreateRegulationItemRequestDto
|
|
67
|
-
*/
|
|
68
|
-
'regressDetails'?: RegressDetailsDto;
|
|
69
48
|
}
|
|
70
49
|
export declare const CreateRegulationItemRequestDtoRegulationItemTypeEnum: {
|
|
71
50
|
readonly Payout: "PAYOUT";
|
|
@@ -73,3 +52,17 @@ export declare const CreateRegulationItemRequestDtoRegulationItemTypeEnum: {
|
|
|
73
52
|
readonly Reserve: "RESERVE";
|
|
74
53
|
};
|
|
75
54
|
export type CreateRegulationItemRequestDtoRegulationItemTypeEnum = typeof CreateRegulationItemRequestDtoRegulationItemTypeEnum[keyof typeof CreateRegulationItemRequestDtoRegulationItemTypeEnum];
|
|
55
|
+
export declare const CreateRegulationItemRequestDtoCurrencyEnum: {
|
|
56
|
+
readonly Eur: "EUR";
|
|
57
|
+
readonly Usd: "USD";
|
|
58
|
+
readonly Gbp: "GBP";
|
|
59
|
+
readonly Chf: "CHF";
|
|
60
|
+
readonly Pln: "PLN";
|
|
61
|
+
readonly Aud: "AUD";
|
|
62
|
+
readonly Cad: "CAD";
|
|
63
|
+
readonly Ddk: "DDK";
|
|
64
|
+
readonly Huf: "HUF";
|
|
65
|
+
readonly Nok: "NOK";
|
|
66
|
+
readonly Sek: "SEK";
|
|
67
|
+
};
|
|
68
|
+
export type CreateRegulationItemRequestDtoCurrencyEnum = typeof CreateRegulationItemRequestDtoCurrencyEnum[keyof typeof CreateRegulationItemRequestDtoCurrencyEnum];
|
|
@@ -13,9 +13,22 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.CreateRegulationItemRequestDtoRegulationItemTypeEnum = void 0;
|
|
16
|
+
exports.CreateRegulationItemRequestDtoCurrencyEnum = exports.CreateRegulationItemRequestDtoRegulationItemTypeEnum = void 0;
|
|
17
17
|
exports.CreateRegulationItemRequestDtoRegulationItemTypeEnum = {
|
|
18
18
|
Payout: 'PAYOUT',
|
|
19
19
|
Regress: 'REGRESS',
|
|
20
20
|
Reserve: 'RESERVE'
|
|
21
21
|
};
|
|
22
|
+
exports.CreateRegulationItemRequestDtoCurrencyEnum = {
|
|
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
|
+
};
|
package/dist/models/index.d.ts
CHANGED
|
@@ -24,17 +24,15 @@ export * from './list-claim-partner-roles-response-class';
|
|
|
24
24
|
export * from './list-claim-partners-response-class';
|
|
25
25
|
export * from './list-claim-statuses-response-class';
|
|
26
26
|
export * from './list-claims-response-class';
|
|
27
|
+
export * from './list-regulations-response-class';
|
|
27
28
|
export * from './list-settlements-response-class';
|
|
28
29
|
export * from './patch-claim-request-dto';
|
|
29
30
|
export * from './patch-claim-response-class';
|
|
30
31
|
export * from './payout-details-class';
|
|
31
|
-
export * from './payout-details-dto';
|
|
32
32
|
export * from './regress-details-class';
|
|
33
|
-
export * from './regress-details-dto';
|
|
34
33
|
export * from './regulation-item-class';
|
|
35
34
|
export * from './regulation-item-response-class';
|
|
36
35
|
export * from './reserve-details-class';
|
|
37
|
-
export * from './reserve-details-dto';
|
|
38
36
|
export * from './settlement-class';
|
|
39
37
|
export * from './update-claim-partner-role-request-dto';
|
|
40
38
|
export * from './update-claim-partner-role-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -40,17 +40,15 @@ __exportStar(require("./list-claim-partner-roles-response-class"), exports);
|
|
|
40
40
|
__exportStar(require("./list-claim-partners-response-class"), exports);
|
|
41
41
|
__exportStar(require("./list-claim-statuses-response-class"), exports);
|
|
42
42
|
__exportStar(require("./list-claims-response-class"), exports);
|
|
43
|
+
__exportStar(require("./list-regulations-response-class"), exports);
|
|
43
44
|
__exportStar(require("./list-settlements-response-class"), exports);
|
|
44
45
|
__exportStar(require("./patch-claim-request-dto"), exports);
|
|
45
46
|
__exportStar(require("./patch-claim-response-class"), exports);
|
|
46
47
|
__exportStar(require("./payout-details-class"), exports);
|
|
47
|
-
__exportStar(require("./payout-details-dto"), exports);
|
|
48
48
|
__exportStar(require("./regress-details-class"), exports);
|
|
49
|
-
__exportStar(require("./regress-details-dto"), exports);
|
|
50
49
|
__exportStar(require("./regulation-item-class"), exports);
|
|
51
50
|
__exportStar(require("./regulation-item-response-class"), exports);
|
|
52
51
|
__exportStar(require("./reserve-details-class"), exports);
|
|
53
|
-
__exportStar(require("./reserve-details-dto"), exports);
|
|
54
52
|
__exportStar(require("./settlement-class"), exports);
|
|
55
53
|
__exportStar(require("./update-claim-partner-role-request-dto"), exports);
|
|
56
54
|
__exportStar(require("./update-claim-partner-role-response-class"), exports);
|
|
@@ -0,0 +1,31 @@
|
|
|
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 ListRegulationsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListRegulationsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The list of claim regulations.
|
|
21
|
+
* @type {Array<RegulationItemClass>}
|
|
22
|
+
* @memberof ListRegulationsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<RegulationItemClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListRegulationsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
}
|
|
@@ -13,8 +13,3 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.ReserveDetailsDtoReserveTypeEnum = void 0;
|
|
17
|
-
exports.ReserveDetailsDtoReserveTypeEnum = {
|
|
18
|
-
Initial: 'INITIAL',
|
|
19
|
-
Adjustment: 'ADJUSTMENT'
|
|
20
|
-
};
|
|
@@ -20,107 +20,107 @@ export interface PatchClaimRequestDto {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof PatchClaimRequestDto
|
|
22
22
|
*/
|
|
23
|
-
'title'
|
|
23
|
+
'title': string;
|
|
24
24
|
/**
|
|
25
25
|
* The current status of the claim.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof PatchClaimRequestDto
|
|
28
28
|
*/
|
|
29
|
-
'status'
|
|
29
|
+
'status': string;
|
|
30
30
|
/**
|
|
31
31
|
* Unique identifier of the account that the claim belongs to.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof PatchClaimRequestDto
|
|
34
34
|
*/
|
|
35
|
-
'accountCode'
|
|
35
|
+
'accountCode': string;
|
|
36
36
|
/**
|
|
37
37
|
* Field for the policy number that the claim belongs to.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof PatchClaimRequestDto
|
|
40
40
|
*/
|
|
41
|
-
'policyNumber'
|
|
41
|
+
'policyNumber': string;
|
|
42
42
|
/**
|
|
43
43
|
* Field for the policy code that the claim belongs to.
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof PatchClaimRequestDto
|
|
46
46
|
*/
|
|
47
|
-
'policyCode'
|
|
47
|
+
'policyCode': string;
|
|
48
48
|
/**
|
|
49
49
|
* Unique identifier referencing the product.
|
|
50
50
|
* @type {number}
|
|
51
51
|
* @memberof PatchClaimRequestDto
|
|
52
52
|
*/
|
|
53
|
-
'productId'
|
|
53
|
+
'productId': number;
|
|
54
54
|
/**
|
|
55
55
|
* Unique identifier referencing the product version.
|
|
56
56
|
* @type {number}
|
|
57
57
|
* @memberof PatchClaimRequestDto
|
|
58
58
|
*/
|
|
59
|
-
'productVersionId'
|
|
59
|
+
'productVersionId': number;
|
|
60
60
|
/**
|
|
61
61
|
* The name of the product.
|
|
62
62
|
* @type {string}
|
|
63
63
|
* @memberof PatchClaimRequestDto
|
|
64
64
|
*/
|
|
65
|
-
'productName'
|
|
65
|
+
'productName': string;
|
|
66
66
|
/**
|
|
67
67
|
* The insured object identifier that the claim is made for.
|
|
68
68
|
* @type {number}
|
|
69
69
|
* @memberof PatchClaimRequestDto
|
|
70
70
|
*/
|
|
71
|
-
'insuredObjectId'
|
|
71
|
+
'insuredObjectId': number;
|
|
72
72
|
/**
|
|
73
73
|
* The policy object code that the claim is made for.
|
|
74
74
|
* @type {string}
|
|
75
75
|
* @memberof PatchClaimRequestDto
|
|
76
76
|
*/
|
|
77
|
-
'policyObjectCode'
|
|
77
|
+
'policyObjectCode': string;
|
|
78
78
|
/**
|
|
79
79
|
* The claim\'s description in 5000 characters.
|
|
80
80
|
* @type {string}
|
|
81
81
|
* @memberof PatchClaimRequestDto
|
|
82
82
|
*/
|
|
83
|
-
'description'
|
|
83
|
+
'description': string;
|
|
84
84
|
/**
|
|
85
85
|
* The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and hospital records, and inspecting property damage to determine the extent of the insurance company\'s liability.
|
|
86
86
|
* @type {string}
|
|
87
87
|
* @memberof PatchClaimRequestDto
|
|
88
88
|
*/
|
|
89
|
-
'adjuster'
|
|
89
|
+
'adjuster': string;
|
|
90
90
|
/**
|
|
91
91
|
* A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
|
|
92
92
|
* @type {string}
|
|
93
93
|
* @memberof PatchClaimRequestDto
|
|
94
94
|
*/
|
|
95
|
-
'reporter'
|
|
95
|
+
'reporter': string;
|
|
96
96
|
/**
|
|
97
97
|
* The contact email of the policyholder.
|
|
98
98
|
* @type {string}
|
|
99
99
|
* @memberof PatchClaimRequestDto
|
|
100
100
|
*/
|
|
101
|
-
'contactEmail'
|
|
101
|
+
'contactEmail': string;
|
|
102
102
|
/**
|
|
103
103
|
* The contact phone of the policyholder.
|
|
104
104
|
* @type {string}
|
|
105
105
|
* @memberof PatchClaimRequestDto
|
|
106
106
|
*/
|
|
107
|
-
'contactPhone'
|
|
107
|
+
'contactPhone': string;
|
|
108
108
|
/**
|
|
109
109
|
* The claim\'s damage date.
|
|
110
110
|
* @type {string}
|
|
111
111
|
* @memberof PatchClaimRequestDto
|
|
112
112
|
*/
|
|
113
|
-
'damageDate'
|
|
113
|
+
'damageDate': string;
|
|
114
114
|
/**
|
|
115
115
|
* The date on which the claim is reported.
|
|
116
116
|
* @type {string}
|
|
117
117
|
* @memberof PatchClaimRequestDto
|
|
118
118
|
*/
|
|
119
|
-
'notificationDate'
|
|
119
|
+
'notificationDate': string;
|
|
120
120
|
/**
|
|
121
121
|
* Tenant specific custom fields for claims (e.g. IMEI, Serial Number, etc.).
|
|
122
122
|
* @type {object}
|
|
123
123
|
* @memberof PatchClaimRequestDto
|
|
124
124
|
*/
|
|
125
|
-
'customFields'
|
|
125
|
+
'customFields': object;
|
|
126
126
|
}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { ClaimClass } from './claim-class';
|
|
12
13
|
import { PayoutDetailsClass } from './payout-details-class';
|
|
13
14
|
import { RegressDetailsClass } from './regress-details-class';
|
|
14
15
|
import { ReserveDetailsClass } from './reserve-details-class';
|
|
@@ -31,7 +32,7 @@ export interface RegulationItemClass {
|
|
|
31
32
|
*/
|
|
32
33
|
'regulationItemType': RegulationItemClassRegulationItemTypeEnum;
|
|
33
34
|
/**
|
|
34
|
-
* The amount of the regulation item
|
|
35
|
+
* The amount of the regulation item
|
|
35
36
|
* @type {number}
|
|
36
37
|
* @memberof RegulationItemClass
|
|
37
38
|
*/
|
|
@@ -56,10 +57,10 @@ export interface RegulationItemClass {
|
|
|
56
57
|
'claimCode': string;
|
|
57
58
|
/**
|
|
58
59
|
* The ClaimClass response.
|
|
59
|
-
* @type {
|
|
60
|
+
* @type {ClaimClass}
|
|
60
61
|
* @memberof RegulationItemClass
|
|
61
62
|
*/
|
|
62
|
-
'claim':
|
|
63
|
+
'claim': ClaimClass;
|
|
63
64
|
/**
|
|
64
65
|
* The PayoutDetailsClass response.
|
|
65
66
|
* @type {PayoutDetailsClass}
|
|
@@ -79,7 +80,7 @@ export interface RegulationItemClass {
|
|
|
79
80
|
*/
|
|
80
81
|
'regressDetails': RegressDetailsClass;
|
|
81
82
|
/**
|
|
82
|
-
* The
|
|
83
|
+
* The system level identifier of the user who made the latest update
|
|
83
84
|
* @type {string}
|
|
84
85
|
* @memberof RegulationItemClass
|
|
85
86
|
*/
|
|
@@ -20,7 +20,7 @@ export interface UpdateClaimRequestDto {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof UpdateClaimRequestDto
|
|
22
22
|
*/
|
|
23
|
-
'title'
|
|
23
|
+
'title': string;
|
|
24
24
|
/**
|
|
25
25
|
* The current status of the claim.
|
|
26
26
|
* @type {string}
|
|
@@ -32,79 +32,79 @@ export interface UpdateClaimRequestDto {
|
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof UpdateClaimRequestDto
|
|
34
34
|
*/
|
|
35
|
-
'accountCode'
|
|
35
|
+
'accountCode': string;
|
|
36
36
|
/**
|
|
37
37
|
* Field for the policy number that the claim belongs to.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof UpdateClaimRequestDto
|
|
40
40
|
*/
|
|
41
|
-
'policyNumber'
|
|
41
|
+
'policyNumber': string;
|
|
42
42
|
/**
|
|
43
43
|
* Field for the policy code that the claim belongs to.
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof UpdateClaimRequestDto
|
|
46
46
|
*/
|
|
47
|
-
'policyCode'
|
|
47
|
+
'policyCode': string;
|
|
48
48
|
/**
|
|
49
49
|
* Unique identifier referencing the product.
|
|
50
50
|
* @type {number}
|
|
51
51
|
* @memberof UpdateClaimRequestDto
|
|
52
52
|
*/
|
|
53
|
-
'productId'
|
|
53
|
+
'productId': number;
|
|
54
54
|
/**
|
|
55
55
|
* Unique identifier referencing the product version.
|
|
56
56
|
* @type {number}
|
|
57
57
|
* @memberof UpdateClaimRequestDto
|
|
58
58
|
*/
|
|
59
|
-
'productVersionId'
|
|
59
|
+
'productVersionId': number;
|
|
60
60
|
/**
|
|
61
61
|
* The name of the product.
|
|
62
62
|
* @type {string}
|
|
63
63
|
* @memberof UpdateClaimRequestDto
|
|
64
64
|
*/
|
|
65
|
-
'productName'
|
|
65
|
+
'productName': string;
|
|
66
66
|
/**
|
|
67
67
|
* The insured object identifier that the claim is made for.
|
|
68
68
|
* @type {number}
|
|
69
69
|
* @memberof UpdateClaimRequestDto
|
|
70
70
|
*/
|
|
71
|
-
'insuredObjectId'
|
|
71
|
+
'insuredObjectId': number;
|
|
72
72
|
/**
|
|
73
73
|
* The policy object code that the claim is made for.
|
|
74
74
|
* @type {string}
|
|
75
75
|
* @memberof UpdateClaimRequestDto
|
|
76
76
|
*/
|
|
77
|
-
'policyObjectCode'
|
|
77
|
+
'policyObjectCode': string;
|
|
78
78
|
/**
|
|
79
79
|
* The claim\'s description in 5000 characters.
|
|
80
80
|
* @type {string}
|
|
81
81
|
* @memberof UpdateClaimRequestDto
|
|
82
82
|
*/
|
|
83
|
-
'description'
|
|
83
|
+
'description': string;
|
|
84
84
|
/**
|
|
85
85
|
* The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and hospital records, and inspecting property damage to determine the extent of the insurance company\'s liability.
|
|
86
86
|
* @type {string}
|
|
87
87
|
* @memberof UpdateClaimRequestDto
|
|
88
88
|
*/
|
|
89
|
-
'adjuster'
|
|
89
|
+
'adjuster': string;
|
|
90
90
|
/**
|
|
91
91
|
* A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
|
|
92
92
|
* @type {string}
|
|
93
93
|
* @memberof UpdateClaimRequestDto
|
|
94
94
|
*/
|
|
95
|
-
'reporter'
|
|
95
|
+
'reporter': string;
|
|
96
96
|
/**
|
|
97
97
|
* The contact email of the policyholder.
|
|
98
98
|
* @type {string}
|
|
99
99
|
* @memberof UpdateClaimRequestDto
|
|
100
100
|
*/
|
|
101
|
-
'contactEmail'
|
|
101
|
+
'contactEmail': string;
|
|
102
102
|
/**
|
|
103
103
|
* The contact phone of the policyholder.
|
|
104
104
|
* @type {string}
|
|
105
105
|
* @memberof UpdateClaimRequestDto
|
|
106
106
|
*/
|
|
107
|
-
'contactPhone'
|
|
107
|
+
'contactPhone': string;
|
|
108
108
|
/**
|
|
109
109
|
* The claim\'s damage date.
|
|
110
110
|
* @type {string}
|
|
@@ -122,5 +122,5 @@ export interface UpdateClaimRequestDto {
|
|
|
122
122
|
* @type {object}
|
|
123
123
|
* @memberof UpdateClaimRequestDto
|
|
124
124
|
*/
|
|
125
|
-
'customFields'
|
|
125
|
+
'customFields': object;
|
|
126
126
|
}
|