@emilgroup/claim-sdk-node 1.3.0 → 1.3.1
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 +15 -0
- package/README.md +2 -2
- package/api/claims-api.ts +182 -61
- package/api/settlements-api.ts +760 -0
- package/api.ts +3 -1
- package/base.ts +2 -2
- package/common.ts +2 -2
- package/configuration.ts +1 -1
- package/dist/api/claims-api.d.ts +110 -50
- package/dist/api/claims-api.js +145 -44
- package/dist/api/settlements-api.d.ts +430 -0
- package/dist/api/settlements-api.js +681 -0
- package/dist/api.d.ts +2 -1
- package/dist/api.js +2 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +2 -2
- package/dist/common.d.ts +2 -2
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/models/claim-class.d.ts +138 -0
- package/dist/models/claim-class.js +15 -0
- package/dist/models/create-claim-request-dto.d.ts +7 -7
- package/dist/models/create-claim-request-dto.js +1 -1
- 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-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/delete-response-class.d.ts +24 -0
- package/dist/models/delete-response-class.js +15 -0
- package/dist/models/delete-settlement-request-dto.d.ts +30 -0
- package/dist/models/delete-settlement-request-dto.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-settlement-response-class.d.ts +25 -0
- package/dist/models/get-settlement-response-class.js +15 -0
- package/dist/models/index.d.ts +14 -0
- package/dist/models/index.js +14 -0
- package/dist/models/list-claim-response-class.d.ts +31 -0
- package/dist/models/list-claim-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/settlement-class.d.ts +72 -0
- package/dist/models/settlement-class.js +15 -0
- package/dist/models/update-claim-request-dto.d.ts +7 -7
- package/dist/models/update-claim-request-dto.js +1 -1
- 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 +48 -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/index.ts +1 -1
- package/models/claim-class.ts +144 -0
- package/models/create-claim-request-dto.ts +7 -7
- package/models/create-claim-response-class.ts +31 -0
- package/models/create-settlement-request-dto.ts +54 -0
- package/models/create-settlement-response-class.ts +31 -0
- package/models/delete-response-class.ts +30 -0
- package/models/delete-settlement-request-dto.ts +36 -0
- package/models/get-claim-response-class.ts +31 -0
- package/models/get-settlement-response-class.ts +31 -0
- package/models/index.ts +14 -0
- package/models/list-claim-response-class.ts +37 -0
- package/models/list-settlements-response-class.ts +37 -0
- package/models/settlement-class.ts +78 -0
- package/models/update-claim-request-dto.ts +7 -7
- package/models/update-claim-response-class.ts +31 -0
- package/models/update-settlement-request-dto.ts +54 -0
- package/models/update-settlement-response-class.ts +31 -0
- package/package.json +1 -1
|
@@ -0,0 +1,54 @@
|
|
|
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 CreateSettlementRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateSettlementRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Field to enter the insured object for settlement against a particular claim.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateSettlementRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'insuredObject': string;
|
|
29
|
+
/**
|
|
30
|
+
* Field for the estimation of the maximum amount against a claim for the insured object.
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof CreateSettlementRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'reserve': number;
|
|
35
|
+
/**
|
|
36
|
+
* Field for tracking the already paid out amounts against a claim for the insured object.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof CreateSettlementRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'payment': number;
|
|
41
|
+
/**
|
|
42
|
+
* Field for tracking the amount to be claimed against third party.
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof CreateSettlementRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'recourse': number;
|
|
47
|
+
/**
|
|
48
|
+
* Unique identifier of the claim to which settlement belongs to.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CreateSettlementRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'claimCode': string;
|
|
53
|
+
}
|
|
54
|
+
|
|
@@ -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 { SettlementClass } from './settlement-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateSettlementResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateSettlementResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Settlement
|
|
26
|
+
* @type {SettlementClass}
|
|
27
|
+
* @memberof CreateSettlementResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'settlement': SettlementClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
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 DeleteResponseClass
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteResponseClass {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {object}
|
|
26
|
+
* @memberof DeleteResponseClass
|
|
27
|
+
*/
|
|
28
|
+
'response': object;
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
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 DeleteSettlementRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteSettlementRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof DeleteSettlementRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'code': string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof DeleteSettlementRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'claimCode': string;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -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 { ClaimClass } from './claim-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetClaimResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetClaimResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Claim
|
|
26
|
+
* @type {ClaimClass}
|
|
27
|
+
* @memberof GetClaimResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'claim': ClaimClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -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 { SettlementClass } from './settlement-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetSettlementResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetSettlementResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Settlement
|
|
26
|
+
* @type {SettlementClass}
|
|
27
|
+
* @memberof GetSettlementResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'settlement': SettlementClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
export * from './claim-class';
|
|
1
2
|
export * from './create-claim-request-dto';
|
|
3
|
+
export * from './create-claim-response-class';
|
|
4
|
+
export * from './create-settlement-request-dto';
|
|
5
|
+
export * from './create-settlement-response-class';
|
|
6
|
+
export * from './delete-response-class';
|
|
7
|
+
export * from './delete-settlement-request-dto';
|
|
8
|
+
export * from './get-claim-response-class';
|
|
9
|
+
export * from './get-settlement-response-class';
|
|
10
|
+
export * from './list-claim-response-class';
|
|
11
|
+
export * from './list-settlements-response-class';
|
|
12
|
+
export * from './settlement-class';
|
|
2
13
|
export * from './update-claim-request-dto';
|
|
14
|
+
export * from './update-claim-response-class';
|
|
15
|
+
export * from './update-settlement-request-dto';
|
|
16
|
+
export * from './update-settlement-response-class';
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { ClaimClass } from './claim-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListClaimResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListClaimResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of claims.
|
|
26
|
+
* @type {Array<ClaimClass>}
|
|
27
|
+
* @memberof ListClaimResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<ClaimClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListClaimResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { SettlementClass } from './settlement-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListSettlementsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListSettlementsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of settlements.
|
|
26
|
+
* @type {Array<SettlementClass>}
|
|
27
|
+
* @memberof ListSettlementsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<SettlementClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListSettlementsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,78 @@
|
|
|
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 SettlementClass
|
|
21
|
+
*/
|
|
22
|
+
export interface SettlementClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof SettlementClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier for the object.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SettlementClass
|
|
33
|
+
*/
|
|
34
|
+
'code': string;
|
|
35
|
+
/**
|
|
36
|
+
* Field to enter the insured object for settlement against a particular claim.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof SettlementClass
|
|
39
|
+
*/
|
|
40
|
+
'insuredObject': string;
|
|
41
|
+
/**
|
|
42
|
+
* Field for the estimation of the maximum amount against a claim for the insured object.
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof SettlementClass
|
|
45
|
+
*/
|
|
46
|
+
'reserve': number;
|
|
47
|
+
/**
|
|
48
|
+
* Field for tracking the already paid out amounts against a claim for the insured object.
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof SettlementClass
|
|
51
|
+
*/
|
|
52
|
+
'payment': number;
|
|
53
|
+
/**
|
|
54
|
+
* Field for tracking the amount to be claimed against third party.
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof SettlementClass
|
|
57
|
+
*/
|
|
58
|
+
'recourse': number;
|
|
59
|
+
/**
|
|
60
|
+
* Unique identifier of the claim to which settlement belongs to.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof SettlementClass
|
|
63
|
+
*/
|
|
64
|
+
'claimCode': string;
|
|
65
|
+
/**
|
|
66
|
+
* Time at which the object was created.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof SettlementClass
|
|
69
|
+
*/
|
|
70
|
+
'createdAt': string;
|
|
71
|
+
/**
|
|
72
|
+
* Time at which the object was updated.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof SettlementClass
|
|
75
|
+
*/
|
|
76
|
+
'updatedAt': string;
|
|
77
|
+
}
|
|
78
|
+
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* The EMIL ClaimService API description
|
|
6
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
|
-
*
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -45,25 +45,25 @@ export interface UpdateClaimRequestDto {
|
|
|
45
45
|
*/
|
|
46
46
|
'policyCode': string;
|
|
47
47
|
/**
|
|
48
|
-
* Unique identifier
|
|
48
|
+
* Unique identifier referencing the product.
|
|
49
49
|
* @type {number}
|
|
50
50
|
* @memberof UpdateClaimRequestDto
|
|
51
51
|
*/
|
|
52
52
|
'productId': number;
|
|
53
53
|
/**
|
|
54
|
-
* Unique identifier
|
|
54
|
+
* Unique identifier referencing the product version.
|
|
55
55
|
* @type {number}
|
|
56
56
|
* @memberof UpdateClaimRequestDto
|
|
57
57
|
*/
|
|
58
58
|
'productVersionId': number;
|
|
59
59
|
/**
|
|
60
|
-
* The name of the product
|
|
60
|
+
* The name of the product.
|
|
61
61
|
* @type {string}
|
|
62
62
|
* @memberof UpdateClaimRequestDto
|
|
63
63
|
*/
|
|
64
64
|
'productName': string;
|
|
65
65
|
/**
|
|
66
|
-
* The
|
|
66
|
+
* The insured object identifier that the claim is made for.
|
|
67
67
|
* @type {number}
|
|
68
68
|
* @memberof UpdateClaimRequestDto
|
|
69
69
|
*/
|
|
@@ -105,13 +105,13 @@ export interface UpdateClaimRequestDto {
|
|
|
105
105
|
*/
|
|
106
106
|
'damageDate': string;
|
|
107
107
|
/**
|
|
108
|
-
* The date on which the claim is reported
|
|
108
|
+
* The date on which the claim is reported.
|
|
109
109
|
* @type {string}
|
|
110
110
|
* @memberof UpdateClaimRequestDto
|
|
111
111
|
*/
|
|
112
112
|
'notificationDate': string;
|
|
113
113
|
/**
|
|
114
|
-
* Tenant specific custom fields for claims (e.g. IMEI, Serial Number, etc.)
|
|
114
|
+
* Tenant specific custom fields for claims (e.g. IMEI, Serial Number, etc.).
|
|
115
115
|
* @type {object}
|
|
116
116
|
* @memberof UpdateClaimRequestDto
|
|
117
117
|
*/
|
|
@@ -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 { ClaimClass } from './claim-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface UpdateClaimResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface UpdateClaimResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Claim
|
|
26
|
+
* @type {ClaimClass}
|
|
27
|
+
* @memberof UpdateClaimResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'claim': ClaimClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
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 UpdateSettlementRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateSettlementRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Field to enter the insured object for settlement against a particular claim.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateSettlementRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'insuredObject': string;
|
|
29
|
+
/**
|
|
30
|
+
* Field for the estimation of the maximum amount against a claim for the insured object.
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof UpdateSettlementRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'reserve': number;
|
|
35
|
+
/**
|
|
36
|
+
* Field for tracking the already paid out amounts against a claim for the insured object.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof UpdateSettlementRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'payment': number;
|
|
41
|
+
/**
|
|
42
|
+
* Field for tracking the amount to be claimed against third party.
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof UpdateSettlementRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'recourse': number;
|
|
47
|
+
/**
|
|
48
|
+
* Unique identifier of the claim to which settlement belongs to.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof UpdateSettlementRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'claimCode': string;
|
|
53
|
+
}
|
|
54
|
+
|
|
@@ -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 { SettlementClass } from './settlement-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface UpdateSettlementResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface UpdateSettlementResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Settlement
|
|
26
|
+
* @type {SettlementClass}
|
|
27
|
+
* @memberof UpdateSettlementResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'settlement': SettlementClass;
|
|
30
|
+
}
|
|
31
|
+
|