@emilgroup/claim-sdk-node 1.10.0 → 1.16.0
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 +14 -0
- package/README.md +2 -2
- package/api/claim-partner-roles-api.ts +681 -0
- package/api/claim-partners-api.ts +574 -0
- package/api/claim-statuses-api.ts +24 -10
- package/api/claims-api.ts +24 -10
- package/api/settlements-api.ts +24 -10
- package/api.ts +4 -0
- package/configuration.ts +1 -1
- package/dist/api/claim-partner-roles-api.d.ts +384 -0
- package/dist/api/claim-partner-roles-api.js +640 -0
- package/dist/api/claim-partners-api.d.ts +327 -0
- package/dist/api/claim-partners-api.js +547 -0
- package/dist/api/claim-statuses-api.d.ts +318 -0
- package/dist/api/claim-statuses-api.js +541 -0
- package/dist/api/claims-api.d.ts +450 -0
- package/dist/api/claims-api.js +739 -0
- package/dist/api/default-api.d.ts +66 -0
- package/dist/api/default-api.js +200 -0
- package/dist/api/settlements-api.d.ts +384 -0
- package/dist/api/settlements-api.js +640 -0
- package/dist/api.d.ts +17 -0
- package/dist/api.js +35 -0
- package/dist/base.d.ts +78 -0
- package/dist/base.js +394 -0
- package/dist/common.d.ts +92 -0
- package/dist/common.js +277 -0
- package/dist/configuration.d.ts +90 -0
- package/dist/configuration.js +51 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +36 -0
- package/dist/models/claim-class.d.ts +168 -0
- package/dist/models/claim-class.js +15 -0
- package/dist/models/claim-partner-class.d.ts +61 -0
- package/dist/models/claim-partner-class.js +15 -0
- package/dist/models/claim-partner-role-class.d.ts +54 -0
- package/dist/models/claim-partner-role-class.js +15 -0
- package/dist/models/claim-status-class.d.ts +36 -0
- package/dist/models/claim-status-class.js +15 -0
- package/dist/models/create-claim-partner-request-dto.d.ts +36 -0
- package/dist/models/create-claim-partner-request-dto.js +15 -0
- package/dist/models/create-claim-partner-response-class.d.ts +25 -0
- package/dist/models/create-claim-partner-response-class.js +15 -0
- package/dist/models/create-claim-partner-role-request-dto.d.ts +30 -0
- package/dist/models/create-claim-partner-role-request-dto.js +15 -0
- package/dist/models/create-claim-partner-role-response-class.d.ts +25 -0
- package/dist/models/create-claim-partner-role-response-class.js +15 -0
- package/dist/models/create-claim-request-dto.d.ts +132 -0
- package/dist/models/create-claim-request-dto.js +15 -0
- package/dist/models/create-claim-response-class.d.ts +25 -0
- package/dist/models/create-claim-response-class.js +15 -0
- package/dist/models/create-claim-status-request-dto.d.ts +30 -0
- package/dist/models/create-claim-status-request-dto.js +15 -0
- package/dist/models/create-claim-status-response-class.d.ts +25 -0
- package/dist/models/create-claim-status-response-class.js +15 -0
- package/dist/models/create-settlement-request-dto.d.ts +48 -0
- package/dist/models/create-settlement-request-dto.js +15 -0
- package/dist/models/create-settlement-response-class.d.ts +25 -0
- package/dist/models/create-settlement-response-class.js +15 -0
- package/dist/models/get-claim-partner-response-class.d.ts +25 -0
- package/dist/models/get-claim-partner-response-class.js +15 -0
- package/dist/models/get-claim-partner-role-response-class.d.ts +25 -0
- package/dist/models/get-claim-partner-role-response-class.js +15 -0
- package/dist/models/get-claim-response-class.d.ts +25 -0
- package/dist/models/get-claim-response-class.js +15 -0
- package/dist/models/get-claim-status-response-class.d.ts +25 -0
- package/dist/models/get-claim-status-response-class.js +15 -0
- package/dist/models/get-settlement-response-class.d.ts +25 -0
- package/dist/models/get-settlement-response-class.js +15 -0
- package/dist/models/index.d.ts +35 -0
- package/dist/models/index.js +51 -0
- package/dist/models/inline-response200.d.ts +54 -0
- package/dist/models/inline-response200.js +15 -0
- package/dist/models/inline-response503.d.ts +54 -0
- package/dist/models/inline-response503.js +15 -0
- package/dist/models/list-claim-partner-roles-response-class.d.ts +31 -0
- package/dist/models/list-claim-partner-roles-response-class.js +15 -0
- package/dist/models/list-claim-partners-response-class.d.ts +31 -0
- package/dist/models/list-claim-partners-response-class.js +15 -0
- package/dist/models/list-claim-statuses-response-class.d.ts +31 -0
- package/dist/models/list-claim-statuses-response-class.js +15 -0
- package/dist/models/list-claims-response-class.d.ts +31 -0
- package/dist/models/list-claims-response-class.js +15 -0
- package/dist/models/list-settlements-response-class.d.ts +31 -0
- package/dist/models/list-settlements-response-class.js +15 -0
- package/dist/models/patch-claim-request-dto.d.ts +126 -0
- package/dist/models/patch-claim-request-dto.js +15 -0
- package/dist/models/patch-claim-response-class.d.ts +25 -0
- package/dist/models/patch-claim-response-class.js +15 -0
- package/dist/models/settlement-class.d.ts +78 -0
- package/dist/models/settlement-class.js +15 -0
- package/dist/models/update-claim-partner-role-request-dto.d.ts +36 -0
- package/dist/models/update-claim-partner-role-request-dto.js +15 -0
- package/dist/models/update-claim-partner-role-response-class.d.ts +25 -0
- package/dist/models/update-claim-partner-role-response-class.js +15 -0
- package/dist/models/update-claim-request-dto.d.ts +126 -0
- package/dist/models/update-claim-request-dto.js +15 -0
- package/dist/models/update-claim-response-class.d.ts +25 -0
- package/dist/models/update-claim-response-class.js +15 -0
- package/dist/models/update-settlement-request-dto.d.ts +54 -0
- package/dist/models/update-settlement-request-dto.js +15 -0
- package/dist/models/update-settlement-response-class.d.ts +25 -0
- package/dist/models/update-settlement-response-class.js +15 -0
- package/models/claim-class.ts +13 -1
- package/models/claim-partner-class.ts +67 -0
- package/models/claim-partner-role-class.ts +60 -0
- package/models/claim-status-class.ts +1 -1
- package/models/create-claim-partner-request-dto.ts +42 -0
- package/models/create-claim-partner-response-class.ts +31 -0
- package/models/create-claim-partner-role-request-dto.ts +36 -0
- package/models/create-claim-partner-role-response-class.ts +31 -0
- package/models/create-claim-request-dto.ts +19 -13
- package/models/create-claim-status-request-dto.ts +1 -1
- package/models/get-claim-partner-response-class.ts +31 -0
- package/models/get-claim-partner-role-response-class.ts +31 -0
- package/models/index.ts +12 -0
- package/models/inline-response200.ts +6 -6
- package/models/inline-response503.ts +6 -6
- package/models/list-claim-partner-roles-response-class.ts +37 -0
- package/models/list-claim-partners-response-class.ts +37 -0
- package/models/patch-claim-request-dto.ts +8 -8
- package/models/update-claim-partner-role-request-dto.ts +42 -0
- package/models/update-claim-partner-role-response-class.ts +31 -0
- package/models/update-claim-request-dto.ts +20 -20
- package/package.json +1 -1
|
@@ -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 { ClaimStatusClass } from './claim-status-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListClaimStatusesResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListClaimStatusesResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The list of claim statuses.
|
|
21
|
+
* @type {Array<ClaimStatusClass>}
|
|
22
|
+
* @memberof ListClaimStatusesResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<ClaimStatusClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListClaimStatusesResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
}
|
|
@@ -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,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 { ClaimClass } from './claim-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListClaimsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListClaimsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The list of claims.
|
|
21
|
+
* @type {Array<ClaimClass>}
|
|
22
|
+
* @memberof ListClaimsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<ClaimClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListClaimsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
}
|
|
@@ -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,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 { SettlementClass } from './settlement-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListSettlementsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListSettlementsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The list of settlements.
|
|
21
|
+
* @type {Array<SettlementClass>}
|
|
22
|
+
* @memberof ListSettlementsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<SettlementClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListSettlementsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
}
|
|
@@ -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,126 @@
|
|
|
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 PatchClaimRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface PatchClaimRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Field to enter the claim title.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PatchClaimRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'title'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The current status of the claim.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PatchClaimRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'status'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier of the account that the claim belongs to.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PatchClaimRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'accountCode'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Field for the policy number that the claim belongs to.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof PatchClaimRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'policyNumber'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Field for the policy code that the claim belongs to.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof PatchClaimRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'policyCode'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Unique identifier referencing the product.
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof PatchClaimRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'productId'?: number;
|
|
54
|
+
/**
|
|
55
|
+
* Unique identifier referencing the product version.
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof PatchClaimRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'productVersionId'?: number;
|
|
60
|
+
/**
|
|
61
|
+
* The name of the product.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof PatchClaimRequestDto
|
|
64
|
+
*/
|
|
65
|
+
'productName'?: string;
|
|
66
|
+
/**
|
|
67
|
+
* The insured object identifier that the claim is made for.
|
|
68
|
+
* @type {number}
|
|
69
|
+
* @memberof PatchClaimRequestDto
|
|
70
|
+
*/
|
|
71
|
+
'insuredObjectId'?: number;
|
|
72
|
+
/**
|
|
73
|
+
* The policy object code that the claim is made for.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof PatchClaimRequestDto
|
|
76
|
+
*/
|
|
77
|
+
'policyObjectCode'?: string;
|
|
78
|
+
/**
|
|
79
|
+
* The claim\'s description in 5000 characters.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof PatchClaimRequestDto
|
|
82
|
+
*/
|
|
83
|
+
'description'?: string;
|
|
84
|
+
/**
|
|
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
|
+
* @type {string}
|
|
87
|
+
* @memberof PatchClaimRequestDto
|
|
88
|
+
*/
|
|
89
|
+
'adjuster'?: string;
|
|
90
|
+
/**
|
|
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
|
+
* @type {string}
|
|
93
|
+
* @memberof PatchClaimRequestDto
|
|
94
|
+
*/
|
|
95
|
+
'reporter'?: string;
|
|
96
|
+
/**
|
|
97
|
+
* The contact email of the policyholder.
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof PatchClaimRequestDto
|
|
100
|
+
*/
|
|
101
|
+
'contactEmail'?: string;
|
|
102
|
+
/**
|
|
103
|
+
* The contact phone of the policyholder.
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof PatchClaimRequestDto
|
|
106
|
+
*/
|
|
107
|
+
'contactPhone'?: string;
|
|
108
|
+
/**
|
|
109
|
+
* The claim\'s damage date.
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof PatchClaimRequestDto
|
|
112
|
+
*/
|
|
113
|
+
'damageDate'?: string;
|
|
114
|
+
/**
|
|
115
|
+
* The date on which the claim is reported.
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof PatchClaimRequestDto
|
|
118
|
+
*/
|
|
119
|
+
'notificationDate'?: string;
|
|
120
|
+
/**
|
|
121
|
+
* Tenant specific custom fields for claims (e.g. IMEI, Serial Number, etc.).
|
|
122
|
+
* @type {object}
|
|
123
|
+
* @memberof PatchClaimRequestDto
|
|
124
|
+
*/
|
|
125
|
+
'customFields'?: object;
|
|
126
|
+
}
|
|
@@ -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,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 { ClaimClass } from './claim-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PatchClaimResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface PatchClaimResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The claim response.
|
|
21
|
+
* @type {ClaimClass}
|
|
22
|
+
* @memberof PatchClaimResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'claim': ClaimClass;
|
|
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,78 @@
|
|
|
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 SettlementClass
|
|
16
|
+
*/
|
|
17
|
+
export interface SettlementClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof SettlementClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier for the object.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SettlementClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* Field to enter the insured object for settlement against a particular claim.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SettlementClass
|
|
34
|
+
*/
|
|
35
|
+
'insuredObject': string;
|
|
36
|
+
/**
|
|
37
|
+
* Field for the estimation of the maximum amount against a claim for the insured object.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof SettlementClass
|
|
40
|
+
*/
|
|
41
|
+
'reserve': number;
|
|
42
|
+
/**
|
|
43
|
+
* Field for tracking the already paid out amounts against a claim for the insured object.
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof SettlementClass
|
|
46
|
+
*/
|
|
47
|
+
'payment': number;
|
|
48
|
+
/**
|
|
49
|
+
* Field for tracking the amount to be claimed against third party.
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof SettlementClass
|
|
52
|
+
*/
|
|
53
|
+
'recourse': number;
|
|
54
|
+
/**
|
|
55
|
+
* Unique identifier of the claim to which settlement belongs to.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof SettlementClass
|
|
58
|
+
*/
|
|
59
|
+
'claimCode': string;
|
|
60
|
+
/**
|
|
61
|
+
* Unique identifier of the claim to which settlement belongs to.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof SettlementClass
|
|
64
|
+
*/
|
|
65
|
+
'currency': string;
|
|
66
|
+
/**
|
|
67
|
+
* Time at which the object was created.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof SettlementClass
|
|
70
|
+
*/
|
|
71
|
+
'createdAt': string;
|
|
72
|
+
/**
|
|
73
|
+
* Time at which the object was updated.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof SettlementClass
|
|
76
|
+
*/
|
|
77
|
+
'updatedAt': string;
|
|
78
|
+
}
|
|
@@ -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,36 @@
|
|
|
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 UpdateClaimPartnerRoleRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateClaimPartnerRoleRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Unique identifier for the object.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateClaimPartnerRoleRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'code': string;
|
|
24
|
+
/**
|
|
25
|
+
* Name of the claim partner role.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdateClaimPartnerRoleRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UpdateClaimPartnerRoleRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'productSlug'?: string;
|
|
36
|
+
}
|
|
@@ -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,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 { ClaimPartnerRoleClass } from './claim-partner-role-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateClaimPartnerRoleResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateClaimPartnerRoleResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Claim partner role
|
|
21
|
+
* @type {ClaimPartnerRoleClass}
|
|
22
|
+
* @memberof UpdateClaimPartnerRoleResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'claimPartnerRole'?: ClaimPartnerRoleClass;
|
|
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,126 @@
|
|
|
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 UpdateClaimRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateClaimRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Field to enter the claim title.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateClaimRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'title'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The current status of the claim.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdateClaimRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'status': string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier of the account that the claim belongs to.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UpdateClaimRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'accountCode'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Field for the policy number that the claim belongs to.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof UpdateClaimRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'policyNumber'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Field for the policy code that the claim belongs to.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof UpdateClaimRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'policyCode'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Unique identifier referencing the product.
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof UpdateClaimRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'productId'?: number;
|
|
54
|
+
/**
|
|
55
|
+
* Unique identifier referencing the product version.
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof UpdateClaimRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'productVersionId'?: number;
|
|
60
|
+
/**
|
|
61
|
+
* The name of the product.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof UpdateClaimRequestDto
|
|
64
|
+
*/
|
|
65
|
+
'productName'?: string;
|
|
66
|
+
/**
|
|
67
|
+
* The insured object identifier that the claim is made for.
|
|
68
|
+
* @type {number}
|
|
69
|
+
* @memberof UpdateClaimRequestDto
|
|
70
|
+
*/
|
|
71
|
+
'insuredObjectId'?: number;
|
|
72
|
+
/**
|
|
73
|
+
* The policy object code that the claim is made for.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof UpdateClaimRequestDto
|
|
76
|
+
*/
|
|
77
|
+
'policyObjectCode'?: string;
|
|
78
|
+
/**
|
|
79
|
+
* The claim\'s description in 5000 characters.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof UpdateClaimRequestDto
|
|
82
|
+
*/
|
|
83
|
+
'description'?: string;
|
|
84
|
+
/**
|
|
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
|
+
* @type {string}
|
|
87
|
+
* @memberof UpdateClaimRequestDto
|
|
88
|
+
*/
|
|
89
|
+
'adjuster'?: string;
|
|
90
|
+
/**
|
|
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
|
+
* @type {string}
|
|
93
|
+
* @memberof UpdateClaimRequestDto
|
|
94
|
+
*/
|
|
95
|
+
'reporter'?: string;
|
|
96
|
+
/**
|
|
97
|
+
* The contact email of the policyholder.
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof UpdateClaimRequestDto
|
|
100
|
+
*/
|
|
101
|
+
'contactEmail'?: string;
|
|
102
|
+
/**
|
|
103
|
+
* The contact phone of the policyholder.
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof UpdateClaimRequestDto
|
|
106
|
+
*/
|
|
107
|
+
'contactPhone'?: string;
|
|
108
|
+
/**
|
|
109
|
+
* The claim\'s damage date.
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof UpdateClaimRequestDto
|
|
112
|
+
*/
|
|
113
|
+
'damageDate': string;
|
|
114
|
+
/**
|
|
115
|
+
* The date on which the claim is reported.
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof UpdateClaimRequestDto
|
|
118
|
+
*/
|
|
119
|
+
'notificationDate': string;
|
|
120
|
+
/**
|
|
121
|
+
* Tenant specific custom fields for claims (e.g. IMEI, Serial Number, etc.).
|
|
122
|
+
* @type {object}
|
|
123
|
+
* @memberof UpdateClaimRequestDto
|
|
124
|
+
*/
|
|
125
|
+
'customFields'?: object;
|
|
126
|
+
}
|
|
@@ -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,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 { ClaimClass } from './claim-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateClaimResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateClaimResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Claim
|
|
21
|
+
* @type {ClaimClass}
|
|
22
|
+
* @memberof UpdateClaimResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'claim': ClaimClass;
|
|
25
|
+
}
|