@emilgroup/claim-sdk 1.0.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 +40 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +51 -0
- package/api/claim-statuses-api.ts +543 -0
- package/api/claims-api.ts +783 -0
- package/api/default-api.ts +120 -0
- package/api/settlements-api.ts +663 -0
- package/api.ts +33 -0
- package/base.ts +250 -0
- package/common.ts +198 -0
- package/configuration.ts +101 -0
- package/dist/api/claim-statuses-api.d.ts +309 -0
- package/dist/api/claim-statuses-api.js +531 -0
- package/dist/api/claims-api.d.ts +441 -0
- package/dist/api/claims-api.js +729 -0
- package/dist/api/default-api.d.ts +66 -0
- package/dist/api/default-api.js +196 -0
- package/dist/api/settlements-api.d.ts +375 -0
- package/dist/api/settlements-api.js +630 -0
- package/dist/api.d.ts +15 -0
- package/dist/api.js +33 -0
- package/dist/base.d.ts +73 -0
- package/dist/base.js +297 -0
- package/dist/common.d.ts +91 -0
- package/dist/common.js +276 -0
- package/dist/configuration.d.ts +83 -0
- package/dist/configuration.js +44 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +36 -0
- package/dist/models/claim-class.d.ts +156 -0
- package/dist/models/claim-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-request-dto.d.ts +126 -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-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 +23 -0
- package/dist/models/index.js +39 -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-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-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/git_push.sh +57 -0
- package/index.ts +19 -0
- package/models/claim-class.ts +162 -0
- package/models/claim-status-class.ts +42 -0
- package/models/create-claim-request-dto.ts +132 -0
- package/models/create-claim-response-class.ts +31 -0
- package/models/create-claim-status-request-dto.ts +36 -0
- package/models/create-claim-status-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/get-claim-response-class.ts +31 -0
- package/models/get-claim-status-response-class.ts +31 -0
- package/models/get-settlement-response-class.ts +31 -0
- package/models/index.ts +23 -0
- package/models/inline-response200.ts +48 -0
- package/models/inline-response503.ts +48 -0
- package/models/list-claim-statuses-response-class.ts +37 -0
- package/models/list-claims-response-class.ts +37 -0
- package/models/list-settlements-response-class.ts +37 -0
- package/models/patch-claim-request-dto.ts +132 -0
- package/models/patch-claim-response-class.ts +31 -0
- package/models/settlement-class.ts +84 -0
- package/models/update-claim-request-dto.ts +132 -0
- package/models/update-claim-response-class.ts +31 -0
- package/models/update-settlement-request-dto.ts +60 -0
- package/models/update-settlement-response-class.ts +31 -0
- package/package.json +27 -0
- package/tsconfig.json +22 -0
|
@@ -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,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 { ClaimStatusClass } from './claim-status-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetClaimStatusResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetClaimStatusResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The claim status response.
|
|
26
|
+
* @type {ClaimStatusClass}
|
|
27
|
+
* @memberof GetClaimStatusResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'claimStatus': ClaimStatusClass;
|
|
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
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export * from './claim-class';
|
|
2
|
+
export * from './claim-status-class';
|
|
3
|
+
export * from './create-claim-request-dto';
|
|
4
|
+
export * from './create-claim-response-class';
|
|
5
|
+
export * from './create-claim-status-request-dto';
|
|
6
|
+
export * from './create-claim-status-response-class';
|
|
7
|
+
export * from './create-settlement-request-dto';
|
|
8
|
+
export * from './create-settlement-response-class';
|
|
9
|
+
export * from './get-claim-response-class';
|
|
10
|
+
export * from './get-claim-status-response-class';
|
|
11
|
+
export * from './get-settlement-response-class';
|
|
12
|
+
export * from './inline-response200';
|
|
13
|
+
export * from './inline-response503';
|
|
14
|
+
export * from './list-claim-statuses-response-class';
|
|
15
|
+
export * from './list-claims-response-class';
|
|
16
|
+
export * from './list-settlements-response-class';
|
|
17
|
+
export * from './patch-claim-request-dto';
|
|
18
|
+
export * from './patch-claim-response-class';
|
|
19
|
+
export * from './settlement-class';
|
|
20
|
+
export * from './update-claim-request-dto';
|
|
21
|
+
export * from './update-claim-response-class';
|
|
22
|
+
export * from './update-settlement-request-dto';
|
|
23
|
+
export * from './update-settlement-response-class';
|
|
@@ -0,0 +1,48 @@
|
|
|
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 InlineResponse200
|
|
21
|
+
*/
|
|
22
|
+
export interface InlineResponse200 {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof InlineResponse200
|
|
27
|
+
*/
|
|
28
|
+
'status'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {{ [key: string]: { [key: string]: string; }; }}
|
|
32
|
+
* @memberof InlineResponse200
|
|
33
|
+
*/
|
|
34
|
+
'info'?: { [key: string]: { [key: string]: string; }; } | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {{ [key: string]: { [key: string]: string; }; }}
|
|
38
|
+
* @memberof InlineResponse200
|
|
39
|
+
*/
|
|
40
|
+
'error'?: { [key: string]: { [key: string]: string; }; } | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {{ [key: string]: { [key: string]: string; }; }}
|
|
44
|
+
* @memberof InlineResponse200
|
|
45
|
+
*/
|
|
46
|
+
'details'?: { [key: string]: { [key: string]: string; }; };
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
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 InlineResponse503
|
|
21
|
+
*/
|
|
22
|
+
export interface InlineResponse503 {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof InlineResponse503
|
|
27
|
+
*/
|
|
28
|
+
'status'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {{ [key: string]: { [key: string]: string; }; }}
|
|
32
|
+
* @memberof InlineResponse503
|
|
33
|
+
*/
|
|
34
|
+
'info'?: { [key: string]: { [key: string]: string; }; } | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {{ [key: string]: { [key: string]: string; }; }}
|
|
38
|
+
* @memberof InlineResponse503
|
|
39
|
+
*/
|
|
40
|
+
'error'?: { [key: string]: { [key: string]: string; }; } | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {{ [key: string]: { [key: string]: string; }; }}
|
|
44
|
+
* @memberof InlineResponse503
|
|
45
|
+
*/
|
|
46
|
+
'details'?: { [key: string]: { [key: string]: string; }; };
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -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 { ClaimStatusClass } from './claim-status-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListClaimStatusesResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListClaimStatusesResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of claim statuses.
|
|
26
|
+
* @type {Array<ClaimStatusClass>}
|
|
27
|
+
* @memberof ListClaimStatusesResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<ClaimStatusClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListClaimStatusesResponseClass
|
|
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 { ClaimClass } from './claim-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListClaimsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListClaimsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of claims.
|
|
26
|
+
* @type {Array<ClaimClass>}
|
|
27
|
+
* @memberof ListClaimsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<ClaimClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListClaimsResponseClass
|
|
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,132 @@
|
|
|
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 PatchClaimRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface PatchClaimRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier of the claim that this object belongs to.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof PatchClaimRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'code': string;
|
|
29
|
+
/**
|
|
30
|
+
* Field to enter the claim title.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PatchClaimRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'title'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The current status of the claim.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PatchClaimRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'status'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Unique identifier of the account that the claim belongs to.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PatchClaimRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'accountCode'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Field for the policy number that the claim belongs to.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PatchClaimRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'policyNumber'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Field for the policy code that the claim belongs to.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PatchClaimRequestDto
|
|
57
|
+
*/
|
|
58
|
+
'policyCode'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Unique identifier referencing the product.
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof PatchClaimRequestDto
|
|
63
|
+
*/
|
|
64
|
+
'productId'?: number;
|
|
65
|
+
/**
|
|
66
|
+
* Unique identifier referencing the product version.
|
|
67
|
+
* @type {number}
|
|
68
|
+
* @memberof PatchClaimRequestDto
|
|
69
|
+
*/
|
|
70
|
+
'productVersionId'?: number;
|
|
71
|
+
/**
|
|
72
|
+
* The name of the product.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof PatchClaimRequestDto
|
|
75
|
+
*/
|
|
76
|
+
'productName'?: string;
|
|
77
|
+
/**
|
|
78
|
+
* The insured object identifier that the claim is made for.
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof PatchClaimRequestDto
|
|
81
|
+
*/
|
|
82
|
+
'insuredObjectId'?: number;
|
|
83
|
+
/**
|
|
84
|
+
* The claim\'s description in 5000 characters.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof PatchClaimRequestDto
|
|
87
|
+
*/
|
|
88
|
+
'description'?: string;
|
|
89
|
+
/**
|
|
90
|
+
* 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.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof PatchClaimRequestDto
|
|
93
|
+
*/
|
|
94
|
+
'adjuster'?: string;
|
|
95
|
+
/**
|
|
96
|
+
* A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof PatchClaimRequestDto
|
|
99
|
+
*/
|
|
100
|
+
'reporter'?: string;
|
|
101
|
+
/**
|
|
102
|
+
* The contact email of the policyholder.
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof PatchClaimRequestDto
|
|
105
|
+
*/
|
|
106
|
+
'contactEmail'?: string;
|
|
107
|
+
/**
|
|
108
|
+
* The contact phone of the policyholder.
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof PatchClaimRequestDto
|
|
111
|
+
*/
|
|
112
|
+
'contactPhone'?: string;
|
|
113
|
+
/**
|
|
114
|
+
* The claim\'s damage date.
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof PatchClaimRequestDto
|
|
117
|
+
*/
|
|
118
|
+
'damageDate'?: string;
|
|
119
|
+
/**
|
|
120
|
+
* The date on which the claim is reported.
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof PatchClaimRequestDto
|
|
123
|
+
*/
|
|
124
|
+
'notificationDate'?: string;
|
|
125
|
+
/**
|
|
126
|
+
* Tenant specific custom fields for claims (e.g. IMEI, Serial Number, etc.).
|
|
127
|
+
* @type {object}
|
|
128
|
+
* @memberof PatchClaimRequestDto
|
|
129
|
+
*/
|
|
130
|
+
'customFields'?: object;
|
|
131
|
+
}
|
|
132
|
+
|
|
@@ -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 PatchClaimResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface PatchClaimResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The claim response.
|
|
26
|
+
* @type {ClaimClass}
|
|
27
|
+
* @memberof PatchClaimResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'claim': ClaimClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL ClaimService
|
|
5
|
+
* The EMIL ClaimService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
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
|
+
* Unique identifier of the claim to which settlement belongs to.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof SettlementClass
|
|
69
|
+
*/
|
|
70
|
+
'currency': string;
|
|
71
|
+
/**
|
|
72
|
+
* Time at which the object was created.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof SettlementClass
|
|
75
|
+
*/
|
|
76
|
+
'createdAt': string;
|
|
77
|
+
/**
|
|
78
|
+
* Time at which the object was updated.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof SettlementClass
|
|
81
|
+
*/
|
|
82
|
+
'updatedAt': string;
|
|
83
|
+
}
|
|
84
|
+
|