@emilgroup/claim-sdk-node 1.10.0 → 1.11.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.
Files changed (71) hide show
  1. package/README.md +2 -2
  2. package/dist/api/claim-statuses-api.d.ts +309 -0
  3. package/dist/api/claim-statuses-api.js +535 -0
  4. package/dist/api/claims-api.d.ts +441 -0
  5. package/dist/api/claims-api.js +733 -0
  6. package/dist/api/default-api.d.ts +66 -0
  7. package/dist/api/default-api.js +200 -0
  8. package/dist/api/settlements-api.d.ts +375 -0
  9. package/dist/api/settlements-api.js +634 -0
  10. package/dist/api.d.ts +15 -0
  11. package/dist/api.js +33 -0
  12. package/dist/base.d.ts +78 -0
  13. package/dist/base.js +394 -0
  14. package/dist/common.d.ts +92 -0
  15. package/dist/common.js +277 -0
  16. package/dist/configuration.d.ts +90 -0
  17. package/dist/configuration.js +44 -0
  18. package/dist/index.d.ts +15 -0
  19. package/dist/index.js +36 -0
  20. package/dist/models/claim-class.d.ts +156 -0
  21. package/dist/models/claim-class.js +15 -0
  22. package/dist/models/claim-status-class.d.ts +36 -0
  23. package/dist/models/claim-status-class.js +15 -0
  24. package/dist/models/create-claim-request-dto.d.ts +126 -0
  25. package/dist/models/create-claim-request-dto.js +15 -0
  26. package/dist/models/create-claim-response-class.d.ts +25 -0
  27. package/dist/models/create-claim-response-class.js +15 -0
  28. package/dist/models/create-claim-status-request-dto.d.ts +30 -0
  29. package/dist/models/create-claim-status-request-dto.js +15 -0
  30. package/dist/models/create-claim-status-response-class.d.ts +25 -0
  31. package/dist/models/create-claim-status-response-class.js +15 -0
  32. package/dist/models/create-settlement-request-dto.d.ts +48 -0
  33. package/dist/models/create-settlement-request-dto.js +15 -0
  34. package/dist/models/create-settlement-response-class.d.ts +25 -0
  35. package/dist/models/create-settlement-response-class.js +15 -0
  36. package/dist/models/get-claim-response-class.d.ts +25 -0
  37. package/dist/models/get-claim-response-class.js +15 -0
  38. package/dist/models/get-claim-status-response-class.d.ts +25 -0
  39. package/dist/models/get-claim-status-response-class.js +15 -0
  40. package/dist/models/get-settlement-response-class.d.ts +25 -0
  41. package/dist/models/get-settlement-response-class.js +15 -0
  42. package/dist/models/index.d.ts +23 -0
  43. package/dist/models/index.js +39 -0
  44. package/dist/models/inline-response200.d.ts +54 -0
  45. package/dist/models/inline-response200.js +15 -0
  46. package/dist/models/inline-response503.d.ts +54 -0
  47. package/dist/models/inline-response503.js +15 -0
  48. package/dist/models/list-claim-statuses-response-class.d.ts +31 -0
  49. package/dist/models/list-claim-statuses-response-class.js +15 -0
  50. package/dist/models/list-claims-response-class.d.ts +31 -0
  51. package/dist/models/list-claims-response-class.js +15 -0
  52. package/dist/models/list-settlements-response-class.d.ts +31 -0
  53. package/dist/models/list-settlements-response-class.js +15 -0
  54. package/dist/models/patch-claim-request-dto.d.ts +120 -0
  55. package/dist/models/patch-claim-request-dto.js +15 -0
  56. package/dist/models/patch-claim-response-class.d.ts +25 -0
  57. package/dist/models/patch-claim-response-class.js +15 -0
  58. package/dist/models/settlement-class.d.ts +78 -0
  59. package/dist/models/settlement-class.js +15 -0
  60. package/dist/models/update-claim-request-dto.d.ts +120 -0
  61. package/dist/models/update-claim-request-dto.js +15 -0
  62. package/dist/models/update-claim-response-class.d.ts +25 -0
  63. package/dist/models/update-claim-response-class.js +15 -0
  64. package/dist/models/update-settlement-request-dto.d.ts +54 -0
  65. package/dist/models/update-settlement-request-dto.js +15 -0
  66. package/dist/models/update-settlement-response-class.d.ts +25 -0
  67. package/dist/models/update-settlement-response-class.js +15 -0
  68. package/models/create-claim-request-dto.ts +12 -12
  69. package/models/patch-claim-request-dto.ts +0 -6
  70. package/models/update-claim-request-dto.ts +12 -18
  71. package/package.json +2 -2
@@ -0,0 +1,54 @@
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 InlineResponse503
16
+ */
17
+ export interface InlineResponse503 {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof InlineResponse503
22
+ */
23
+ 'status'?: string;
24
+ /**
25
+ *
26
+ * @type {{ [key: string]: { [key: string]: string; }; }}
27
+ * @memberof InlineResponse503
28
+ */
29
+ 'info'?: {
30
+ [key: string]: {
31
+ [key: string]: string;
32
+ };
33
+ } | null;
34
+ /**
35
+ *
36
+ * @type {{ [key: string]: { [key: string]: string; }; }}
37
+ * @memberof InlineResponse503
38
+ */
39
+ 'error'?: {
40
+ [key: string]: {
41
+ [key: string]: string;
42
+ };
43
+ } | null;
44
+ /**
45
+ *
46
+ * @type {{ [key: string]: { [key: string]: string; }; }}
47
+ * @memberof InlineResponse503
48
+ */
49
+ 'details'?: {
50
+ [key: string]: {
51
+ [key: string]: string;
52
+ };
53
+ };
54
+ }
@@ -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 { 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,120 @@
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 claim\'s description in 5000 characters.
74
+ * @type {string}
75
+ * @memberof PatchClaimRequestDto
76
+ */
77
+ 'description'?: string;
78
+ /**
79
+ * 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.
80
+ * @type {string}
81
+ * @memberof PatchClaimRequestDto
82
+ */
83
+ 'adjuster'?: string;
84
+ /**
85
+ * A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
86
+ * @type {string}
87
+ * @memberof PatchClaimRequestDto
88
+ */
89
+ 'reporter'?: string;
90
+ /**
91
+ * The contact email of the policyholder.
92
+ * @type {string}
93
+ * @memberof PatchClaimRequestDto
94
+ */
95
+ 'contactEmail'?: string;
96
+ /**
97
+ * The contact phone of the policyholder.
98
+ * @type {string}
99
+ * @memberof PatchClaimRequestDto
100
+ */
101
+ 'contactPhone'?: string;
102
+ /**
103
+ * The claim\'s damage date.
104
+ * @type {string}
105
+ * @memberof PatchClaimRequestDto
106
+ */
107
+ 'damageDate'?: string;
108
+ /**
109
+ * The date on which the claim is reported.
110
+ * @type {string}
111
+ * @memberof PatchClaimRequestDto
112
+ */
113
+ 'notificationDate'?: string;
114
+ /**
115
+ * Tenant specific custom fields for claims (e.g. IMEI, Serial Number, etc.).
116
+ * @type {object}
117
+ * @memberof PatchClaimRequestDto
118
+ */
119
+ 'customFields'?: object;
120
+ }
@@ -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,120 @@
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 claim\'s description in 5000 characters.
74
+ * @type {string}
75
+ * @memberof UpdateClaimRequestDto
76
+ */
77
+ 'description'?: string;
78
+ /**
79
+ * 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.
80
+ * @type {string}
81
+ * @memberof UpdateClaimRequestDto
82
+ */
83
+ 'adjuster'?: string;
84
+ /**
85
+ * A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
86
+ * @type {string}
87
+ * @memberof UpdateClaimRequestDto
88
+ */
89
+ 'reporter'?: string;
90
+ /**
91
+ * The contact email of the policyholder.
92
+ * @type {string}
93
+ * @memberof UpdateClaimRequestDto
94
+ */
95
+ 'contactEmail'?: string;
96
+ /**
97
+ * The contact phone of the policyholder.
98
+ * @type {string}
99
+ * @memberof UpdateClaimRequestDto
100
+ */
101
+ 'contactPhone'?: string;
102
+ /**
103
+ * The claim\'s damage date.
104
+ * @type {string}
105
+ * @memberof UpdateClaimRequestDto
106
+ */
107
+ 'damageDate': string;
108
+ /**
109
+ * The date on which the claim is reported.
110
+ * @type {string}
111
+ * @memberof UpdateClaimRequestDto
112
+ */
113
+ 'notificationDate': string;
114
+ /**
115
+ * Tenant specific custom fields for claims (e.g. IMEI, Serial Number, etc.).
116
+ * @type {object}
117
+ * @memberof UpdateClaimRequestDto
118
+ */
119
+ 'customFields'?: object;
120
+ }
@@ -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
+ }
@@ -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 });