@emilgroup/insurance-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 +90 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +157 -0
- package/api/insured-object-types-api.ts +232 -0
- package/api/insured-objects-api.ts +442 -0
- package/api/leads-api.ts +163 -0
- package/api/policies-api.ts +576 -0
- package/api/products-api.ts +2174 -0
- package/api.ts +40 -0
- package/base.ts +182 -0
- package/common.ts +138 -0
- package/configuration.ts +109 -0
- package/dist/api/insured-object-types-api.d.ts +141 -0
- package/dist/api/insured-object-types-api.js +251 -0
- package/dist/api/insured-objects-api.d.ts +254 -0
- package/dist/api/insured-objects-api.js +436 -0
- package/dist/api/leads-api.d.ts +96 -0
- package/dist/api/leads-api.js +221 -0
- package/dist/api/policies-api.d.ts +329 -0
- package/dist/api/policies-api.js +541 -0
- package/dist/api/products-api.d.ts +1218 -0
- package/dist/api/products-api.js +1809 -0
- package/dist/api.d.ts +20 -0
- package/dist/api.js +40 -0
- package/dist/base.d.ts +68 -0
- package/dist/base.js +243 -0
- package/dist/common.d.ts +65 -0
- package/dist/common.js +243 -0
- package/dist/configuration.d.ts +90 -0
- package/dist/configuration.js +44 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +35 -0
- package/dist/models/calculate-custom-premium-request-dto.d.ts +34 -0
- package/dist/models/calculate-custom-premium-request-dto.js +19 -0
- package/dist/models/calculate-premium-request-dto.d.ts +31 -0
- package/dist/models/calculate-premium-request-dto.js +15 -0
- package/dist/models/create-account-request-dto.d.ts +84 -0
- package/dist/models/create-account-request-dto.js +15 -0
- package/dist/models/create-bank-account-request-dto.d.ts +30 -0
- package/dist/models/create-bank-account-request-dto.js +15 -0
- package/dist/models/create-claim-request-dto.d.ts +83 -0
- package/dist/models/create-claim-request-dto.js +25 -0
- package/dist/models/create-custom-application-request-dto.d.ts +40 -0
- package/dist/models/create-custom-application-request-dto.js +19 -0
- package/dist/models/create-insured-object-request-dto.d.ts +42 -0
- package/dist/models/create-insured-object-request-dto.js +15 -0
- package/dist/models/create-insured-object-response-class.d.ts +25 -0
- package/dist/models/create-insured-object-response-class.js +15 -0
- package/dist/models/create-lead-request-dto.d.ts +45 -0
- package/dist/models/create-lead-request-dto.js +15 -0
- package/dist/models/create-policy-request-dto.d.ts +37 -0
- package/dist/models/create-policy-request-dto.js +15 -0
- package/dist/models/create-policy-response-class.d.ts +25 -0
- package/dist/models/create-policy-response-class.js +15 -0
- package/dist/models/create-premium-formula-request-dto.d.ts +65 -0
- package/dist/models/create-premium-formula-request-dto.js +25 -0
- package/dist/models/create-premium-formula-response-class.d.ts +25 -0
- package/dist/models/create-premium-formula-response-class.js +15 -0
- package/dist/models/create-product-field-request-dto.d.ts +113 -0
- package/dist/models/create-product-field-request-dto.js +20 -0
- package/dist/models/create-product-field-response-class.d.ts +25 -0
- package/dist/models/create-product-field-response-class.js +15 -0
- package/dist/models/create-product-request-dto.d.ts +57 -0
- package/dist/models/create-product-request-dto.js +30 -0
- package/dist/models/create-product-response-class.d.ts +25 -0
- package/dist/models/create-product-response-class.js +15 -0
- package/dist/models/csv-product-factor-dto.d.ts +48 -0
- package/dist/models/csv-product-factor-dto.js +15 -0
- package/dist/models/delete-request-dto.d.ts +24 -0
- package/dist/models/delete-request-dto.js +15 -0
- package/dist/models/get-insured-object-request-dto.d.ts +24 -0
- package/dist/models/get-insured-object-request-dto.js +15 -0
- package/dist/models/get-insured-object-response-class.d.ts +25 -0
- package/dist/models/get-insured-object-response-class.js +15 -0
- package/dist/models/get-policy-request-dto.d.ts +30 -0
- package/dist/models/get-policy-request-dto.js +15 -0
- package/dist/models/get-policy-response-class.d.ts +25 -0
- package/dist/models/get-policy-response-class.js +15 -0
- package/dist/models/get-premium-formula-request-dto.d.ts +24 -0
- package/dist/models/get-premium-formula-request-dto.js +15 -0
- package/dist/models/get-premium-formula-response-class.d.ts +25 -0
- package/dist/models/get-premium-formula-response-class.js +15 -0
- package/dist/models/get-product-factor-response-class.d.ts +32 -0
- package/dist/models/get-product-factor-response-class.js +15 -0
- package/dist/models/get-product-factor-value-request-dto.d.ts +42 -0
- package/dist/models/get-product-factor-value-request-dto.js +15 -0
- package/dist/models/get-product-factor-value-response-class.d.ts +25 -0
- package/dist/models/get-product-factor-value-response-class.js +15 -0
- package/dist/models/get-product-field-request-dto.d.ts +24 -0
- package/dist/models/get-product-field-request-dto.js +15 -0
- package/dist/models/get-product-field-response-class.d.ts +25 -0
- package/dist/models/get-product-field-response-class.js +15 -0
- package/dist/models/get-product-request-dto.d.ts +36 -0
- package/dist/models/get-product-request-dto.js +15 -0
- package/dist/models/get-product-response-class.d.ts +25 -0
- package/dist/models/get-product-response-class.js +15 -0
- package/dist/models/get-product-version-request-dto.d.ts +24 -0
- package/dist/models/get-product-version-request-dto.js +15 -0
- package/dist/models/get-product-version-response-class.d.ts +25 -0
- package/dist/models/get-product-version-response-class.js +15 -0
- package/dist/models/grouped-product-factor-class.d.ts +37 -0
- package/dist/models/grouped-product-factor-class.js +15 -0
- package/dist/models/grouped-product-factor-value-class.d.ts +36 -0
- package/dist/models/grouped-product-factor-value-class.js +15 -0
- package/dist/models/grouped-product-factors-response-class.d.ts +25 -0
- package/dist/models/grouped-product-factors-response-class.js +15 -0
- package/dist/models/index.d.ts +72 -0
- package/dist/models/index.js +88 -0
- package/dist/models/insured-object-class.d.ts +67 -0
- package/dist/models/insured-object-class.js +15 -0
- package/dist/models/insured-object-type-class.d.ts +48 -0
- package/dist/models/insured-object-type-class.js +15 -0
- package/dist/models/list-insured-object-types-response-class.d.ts +31 -0
- package/dist/models/list-insured-object-types-response-class.js +15 -0
- package/dist/models/list-insured-objects-response-class.d.ts +30 -0
- package/dist/models/list-insured-objects-response-class.js +15 -0
- package/dist/models/list-policies-response-class.d.ts +31 -0
- package/dist/models/list-policies-response-class.js +15 -0
- package/dist/models/list-premium-formulas-response-class.d.ts +31 -0
- package/dist/models/list-premium-formulas-response-class.js +15 -0
- package/dist/models/list-product-factors-response-class.d.ts +31 -0
- package/dist/models/list-product-factors-response-class.js +15 -0
- package/dist/models/list-product-field-types-response-class.d.ts +30 -0
- package/dist/models/list-product-field-types-response-class.js +15 -0
- package/dist/models/list-product-fields-response-class.d.ts +31 -0
- package/dist/models/list-product-fields-response-class.js +15 -0
- package/dist/models/list-products-response-class.d.ts +31 -0
- package/dist/models/list-products-response-class.js +15 -0
- package/dist/models/list-request-dto.d.ts +54 -0
- package/dist/models/list-request-dto.js +15 -0
- package/dist/models/policy-class.d.ts +86 -0
- package/dist/models/policy-class.js +15 -0
- package/dist/models/policy-object-class.d.ts +42 -0
- package/dist/models/policy-object-class.js +15 -0
- package/dist/models/policy-object-dto.d.ts +30 -0
- package/dist/models/policy-object-dto.js +15 -0
- package/dist/models/policy-premium-class.d.ts +43 -0
- package/dist/models/policy-premium-class.js +15 -0
- package/dist/models/policy-premium-item-class.d.ts +49 -0
- package/dist/models/policy-premium-item-class.js +15 -0
- package/dist/models/policy-version-class.d.ts +55 -0
- package/dist/models/policy-version-class.js +15 -0
- package/dist/models/premium-formula-class.d.ts +79 -0
- package/dist/models/premium-formula-class.js +15 -0
- package/dist/models/product-class.d.ts +74 -0
- package/dist/models/product-class.js +15 -0
- package/dist/models/product-factor-class.d.ts +68 -0
- package/dist/models/product-factor-class.js +15 -0
- package/dist/models/product-factor-value-class.d.ts +80 -0
- package/dist/models/product-factor-value-class.js +15 -0
- package/dist/models/product-field-class.d.ts +114 -0
- package/dist/models/product-field-class.js +15 -0
- package/dist/models/product-version-class.d.ts +54 -0
- package/dist/models/product-version-class.js +15 -0
- package/dist/models/shared-create-lead-request-dto.d.ts +45 -0
- package/dist/models/shared-create-lead-request-dto.js +15 -0
- package/dist/models/store-product-factors-request-dto.d.ts +30 -0
- package/dist/models/store-product-factors-request-dto.js +15 -0
- package/dist/models/store-product-factors-response-class.d.ts +25 -0
- package/dist/models/store-product-factors-response-class.js +15 -0
- package/dist/models/timeslice-class.d.ts +62 -0
- package/dist/models/timeslice-class.js +15 -0
- package/dist/models/update-insured-object-request-dto.d.ts +48 -0
- package/dist/models/update-insured-object-request-dto.js +15 -0
- package/dist/models/update-policy-request-dto.d.ts +42 -0
- package/dist/models/update-policy-request-dto.js +15 -0
- package/dist/models/update-policy-response-class.d.ts +25 -0
- package/dist/models/update-policy-response-class.js +15 -0
- package/dist/models/update-premium-formula-request-dto.d.ts +71 -0
- package/dist/models/update-premium-formula-request-dto.js +25 -0
- package/dist/models/update-product-field-request-dto.d.ts +119 -0
- package/dist/models/update-product-field-request-dto.js +20 -0
- package/dist/models/update-product-request-dto.d.ts +42 -0
- package/dist/models/update-product-request-dto.js +15 -0
- package/dist/models/update-product-version-request-dto.d.ts +43 -0
- package/dist/models/update-product-version-request-dto.js +22 -0
- package/dist/models/validate-product-factors-request-dto.d.ts +30 -0
- package/dist/models/validate-product-factors-request-dto.js +15 -0
- package/git_push.sh +57 -0
- package/index.ts +19 -0
- package/models/calculate-custom-premium-request-dto.ts +43 -0
- package/models/calculate-premium-request-dto.ts +37 -0
- package/models/create-account-request-dto.ts +90 -0
- package/models/create-bank-account-request-dto.ts +36 -0
- package/models/create-claim-request-dto.ts +93 -0
- package/models/create-custom-application-request-dto.ts +49 -0
- package/models/create-insured-object-request-dto.ts +48 -0
- package/models/create-insured-object-response-class.ts +31 -0
- package/models/create-lead-request-dto.ts +51 -0
- package/models/create-policy-request-dto.ts +43 -0
- package/models/create-policy-response-class.ts +31 -0
- package/models/create-premium-formula-request-dto.ts +75 -0
- package/models/create-premium-formula-response-class.ts +31 -0
- package/models/create-product-field-request-dto.ts +122 -0
- package/models/create-product-field-response-class.ts +31 -0
- package/models/create-product-request-dto.ts +66 -0
- package/models/create-product-response-class.ts +31 -0
- package/models/csv-product-factor-dto.ts +54 -0
- package/models/delete-request-dto.ts +30 -0
- package/models/get-insured-object-request-dto.ts +30 -0
- package/models/get-insured-object-response-class.ts +31 -0
- package/models/get-policy-request-dto.ts +36 -0
- package/models/get-policy-response-class.ts +31 -0
- package/models/get-premium-formula-request-dto.ts +30 -0
- package/models/get-premium-formula-response-class.ts +31 -0
- package/models/get-product-factor-response-class.ts +38 -0
- package/models/get-product-factor-value-request-dto.ts +48 -0
- package/models/get-product-factor-value-response-class.ts +31 -0
- package/models/get-product-field-request-dto.ts +30 -0
- package/models/get-product-field-response-class.ts +31 -0
- package/models/get-product-request-dto.ts +42 -0
- package/models/get-product-response-class.ts +31 -0
- package/models/get-product-version-request-dto.ts +30 -0
- package/models/get-product-version-response-class.ts +31 -0
- package/models/grouped-product-factor-class.ts +43 -0
- package/models/grouped-product-factor-value-class.ts +42 -0
- package/models/grouped-product-factors-response-class.ts +31 -0
- package/models/index.ts +72 -0
- package/models/insured-object-class.ts +73 -0
- package/models/insured-object-type-class.ts +54 -0
- package/models/list-insured-object-types-response-class.ts +37 -0
- package/models/list-insured-objects-response-class.ts +36 -0
- package/models/list-policies-response-class.ts +37 -0
- package/models/list-premium-formulas-response-class.ts +37 -0
- package/models/list-product-factors-response-class.ts +37 -0
- package/models/list-product-field-types-response-class.ts +36 -0
- package/models/list-product-fields-response-class.ts +37 -0
- package/models/list-products-response-class.ts +37 -0
- package/models/list-request-dto.ts +60 -0
- package/models/policy-class.ts +92 -0
- package/models/policy-object-class.ts +48 -0
- package/models/policy-object-dto.ts +36 -0
- package/models/policy-premium-class.ts +49 -0
- package/models/policy-premium-item-class.ts +55 -0
- package/models/policy-version-class.ts +61 -0
- package/models/premium-formula-class.ts +85 -0
- package/models/product-class.ts +80 -0
- package/models/product-factor-class.ts +74 -0
- package/models/product-factor-value-class.ts +86 -0
- package/models/product-field-class.ts +120 -0
- package/models/product-version-class.ts +60 -0
- package/models/shared-create-lead-request-dto.ts +51 -0
- package/models/store-product-factors-request-dto.ts +36 -0
- package/models/store-product-factors-response-class.ts +31 -0
- package/models/timeslice-class.ts +68 -0
- package/models/update-insured-object-request-dto.ts +54 -0
- package/models/update-policy-request-dto.ts +48 -0
- package/models/update-policy-response-class.ts +31 -0
- package/models/update-premium-formula-request-dto.ts +81 -0
- package/models/update-product-field-request-dto.ts +128 -0
- package/models/update-product-request-dto.ts +48 -0
- package/models/update-product-version-request-dto.ts +52 -0
- package/models/validate-product-factors-request-dto.ts +36 -0
- package/package.json +27 -0
- package/tsconfig.json +21 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL InsuranceService
|
|
6
|
+
* The EMIL InsuranceService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
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,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL InsuranceService
|
|
3
|
+
* The EMIL InsuranceService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 GetProductVersionRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface GetProductVersionRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Product version id
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof GetProductVersionRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL InsuranceService
|
|
6
|
+
* The EMIL InsuranceService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
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 InsuranceService
|
|
3
|
+
* The EMIL InsuranceService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 { ProductVersionClass } from './product-version-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetProductVersionResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetProductVersionResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Product version
|
|
21
|
+
* @type {ProductVersionClass}
|
|
22
|
+
* @memberof GetProductVersionResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'productVersion': ProductVersionClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL InsuranceService
|
|
6
|
+
* The EMIL InsuranceService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
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,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL InsuranceService
|
|
3
|
+
* The EMIL InsuranceService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 { GroupedProductFactorValueClass } from './grouped-product-factor-value-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GroupedProductFactorClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GroupedProductFactorClass {
|
|
19
|
+
/**
|
|
20
|
+
* Factor group
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof GroupedProductFactorClass
|
|
23
|
+
*/
|
|
24
|
+
'group': string;
|
|
25
|
+
/**
|
|
26
|
+
* Factor label
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof GroupedProductFactorClass
|
|
29
|
+
*/
|
|
30
|
+
'label': string;
|
|
31
|
+
/**
|
|
32
|
+
* Factor values
|
|
33
|
+
* @type {Array<GroupedProductFactorValueClass>}
|
|
34
|
+
* @memberof GroupedProductFactorClass
|
|
35
|
+
*/
|
|
36
|
+
'values': Array<GroupedProductFactorValueClass>;
|
|
37
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL InsuranceService
|
|
6
|
+
* The EMIL InsuranceService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
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 InsuranceService
|
|
3
|
+
* The EMIL InsuranceService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 GroupedProductFactorValueClass
|
|
16
|
+
*/
|
|
17
|
+
export interface GroupedProductFactorValueClass {
|
|
18
|
+
/**
|
|
19
|
+
* Factor name
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof GroupedProductFactorValueClass
|
|
22
|
+
*/
|
|
23
|
+
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* Factor key
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof GroupedProductFactorValueClass
|
|
28
|
+
*/
|
|
29
|
+
'key': string;
|
|
30
|
+
/**
|
|
31
|
+
* Factor value
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof GroupedProductFactorValueClass
|
|
34
|
+
*/
|
|
35
|
+
'value': number;
|
|
36
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL InsuranceService
|
|
6
|
+
* The EMIL InsuranceService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
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 InsuranceService
|
|
3
|
+
* The EMIL InsuranceService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 { GroupedProductFactorClass } from './grouped-product-factor-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GroupedProductFactorsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GroupedProductFactorsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Factors
|
|
21
|
+
* @type {Array<GroupedProductFactorClass>}
|
|
22
|
+
* @memberof GroupedProductFactorsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'productFactors': Array<GroupedProductFactorClass>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL InsuranceService
|
|
6
|
+
* The EMIL InsuranceService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
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,72 @@
|
|
|
1
|
+
export * from './calculate-custom-premium-request-dto';
|
|
2
|
+
export * from './calculate-premium-request-dto';
|
|
3
|
+
export * from './create-account-request-dto';
|
|
4
|
+
export * from './create-bank-account-request-dto';
|
|
5
|
+
export * from './create-claim-request-dto';
|
|
6
|
+
export * from './create-custom-application-request-dto';
|
|
7
|
+
export * from './create-insured-object-request-dto';
|
|
8
|
+
export * from './create-insured-object-response-class';
|
|
9
|
+
export * from './create-lead-request-dto';
|
|
10
|
+
export * from './create-policy-request-dto';
|
|
11
|
+
export * from './create-policy-response-class';
|
|
12
|
+
export * from './create-premium-formula-request-dto';
|
|
13
|
+
export * from './create-premium-formula-response-class';
|
|
14
|
+
export * from './create-product-field-request-dto';
|
|
15
|
+
export * from './create-product-field-response-class';
|
|
16
|
+
export * from './create-product-request-dto';
|
|
17
|
+
export * from './create-product-response-class';
|
|
18
|
+
export * from './csv-product-factor-dto';
|
|
19
|
+
export * from './delete-request-dto';
|
|
20
|
+
export * from './get-insured-object-request-dto';
|
|
21
|
+
export * from './get-insured-object-response-class';
|
|
22
|
+
export * from './get-policy-request-dto';
|
|
23
|
+
export * from './get-policy-response-class';
|
|
24
|
+
export * from './get-premium-formula-request-dto';
|
|
25
|
+
export * from './get-premium-formula-response-class';
|
|
26
|
+
export * from './get-product-factor-response-class';
|
|
27
|
+
export * from './get-product-factor-value-request-dto';
|
|
28
|
+
export * from './get-product-factor-value-response-class';
|
|
29
|
+
export * from './get-product-field-request-dto';
|
|
30
|
+
export * from './get-product-field-response-class';
|
|
31
|
+
export * from './get-product-request-dto';
|
|
32
|
+
export * from './get-product-response-class';
|
|
33
|
+
export * from './get-product-version-request-dto';
|
|
34
|
+
export * from './get-product-version-response-class';
|
|
35
|
+
export * from './grouped-product-factor-class';
|
|
36
|
+
export * from './grouped-product-factor-value-class';
|
|
37
|
+
export * from './grouped-product-factors-response-class';
|
|
38
|
+
export * from './insured-object-class';
|
|
39
|
+
export * from './insured-object-type-class';
|
|
40
|
+
export * from './list-insured-object-types-response-class';
|
|
41
|
+
export * from './list-insured-objects-response-class';
|
|
42
|
+
export * from './list-policies-response-class';
|
|
43
|
+
export * from './list-premium-formulas-response-class';
|
|
44
|
+
export * from './list-product-factors-response-class';
|
|
45
|
+
export * from './list-product-field-types-response-class';
|
|
46
|
+
export * from './list-product-fields-response-class';
|
|
47
|
+
export * from './list-products-response-class';
|
|
48
|
+
export * from './list-request-dto';
|
|
49
|
+
export * from './policy-class';
|
|
50
|
+
export * from './policy-object-class';
|
|
51
|
+
export * from './policy-object-dto';
|
|
52
|
+
export * from './policy-premium-class';
|
|
53
|
+
export * from './policy-premium-item-class';
|
|
54
|
+
export * from './policy-version-class';
|
|
55
|
+
export * from './premium-formula-class';
|
|
56
|
+
export * from './product-class';
|
|
57
|
+
export * from './product-factor-class';
|
|
58
|
+
export * from './product-factor-value-class';
|
|
59
|
+
export * from './product-field-class';
|
|
60
|
+
export * from './product-version-class';
|
|
61
|
+
export * from './shared-create-lead-request-dto';
|
|
62
|
+
export * from './store-product-factors-request-dto';
|
|
63
|
+
export * from './store-product-factors-response-class';
|
|
64
|
+
export * from './timeslice-class';
|
|
65
|
+
export * from './update-insured-object-request-dto';
|
|
66
|
+
export * from './update-policy-request-dto';
|
|
67
|
+
export * from './update-policy-response-class';
|
|
68
|
+
export * from './update-premium-formula-request-dto';
|
|
69
|
+
export * from './update-product-field-request-dto';
|
|
70
|
+
export * from './update-product-request-dto';
|
|
71
|
+
export * from './update-product-version-request-dto';
|
|
72
|
+
export * from './validate-product-factors-request-dto';
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./calculate-custom-premium-request-dto"), exports);
|
|
18
|
+
__exportStar(require("./calculate-premium-request-dto"), exports);
|
|
19
|
+
__exportStar(require("./create-account-request-dto"), exports);
|
|
20
|
+
__exportStar(require("./create-bank-account-request-dto"), exports);
|
|
21
|
+
__exportStar(require("./create-claim-request-dto"), exports);
|
|
22
|
+
__exportStar(require("./create-custom-application-request-dto"), exports);
|
|
23
|
+
__exportStar(require("./create-insured-object-request-dto"), exports);
|
|
24
|
+
__exportStar(require("./create-insured-object-response-class"), exports);
|
|
25
|
+
__exportStar(require("./create-lead-request-dto"), exports);
|
|
26
|
+
__exportStar(require("./create-policy-request-dto"), exports);
|
|
27
|
+
__exportStar(require("./create-policy-response-class"), exports);
|
|
28
|
+
__exportStar(require("./create-premium-formula-request-dto"), exports);
|
|
29
|
+
__exportStar(require("./create-premium-formula-response-class"), exports);
|
|
30
|
+
__exportStar(require("./create-product-field-request-dto"), exports);
|
|
31
|
+
__exportStar(require("./create-product-field-response-class"), exports);
|
|
32
|
+
__exportStar(require("./create-product-request-dto"), exports);
|
|
33
|
+
__exportStar(require("./create-product-response-class"), exports);
|
|
34
|
+
__exportStar(require("./csv-product-factor-dto"), exports);
|
|
35
|
+
__exportStar(require("./delete-request-dto"), exports);
|
|
36
|
+
__exportStar(require("./get-insured-object-request-dto"), exports);
|
|
37
|
+
__exportStar(require("./get-insured-object-response-class"), exports);
|
|
38
|
+
__exportStar(require("./get-policy-request-dto"), exports);
|
|
39
|
+
__exportStar(require("./get-policy-response-class"), exports);
|
|
40
|
+
__exportStar(require("./get-premium-formula-request-dto"), exports);
|
|
41
|
+
__exportStar(require("./get-premium-formula-response-class"), exports);
|
|
42
|
+
__exportStar(require("./get-product-factor-response-class"), exports);
|
|
43
|
+
__exportStar(require("./get-product-factor-value-request-dto"), exports);
|
|
44
|
+
__exportStar(require("./get-product-factor-value-response-class"), exports);
|
|
45
|
+
__exportStar(require("./get-product-field-request-dto"), exports);
|
|
46
|
+
__exportStar(require("./get-product-field-response-class"), exports);
|
|
47
|
+
__exportStar(require("./get-product-request-dto"), exports);
|
|
48
|
+
__exportStar(require("./get-product-response-class"), exports);
|
|
49
|
+
__exportStar(require("./get-product-version-request-dto"), exports);
|
|
50
|
+
__exportStar(require("./get-product-version-response-class"), exports);
|
|
51
|
+
__exportStar(require("./grouped-product-factor-class"), exports);
|
|
52
|
+
__exportStar(require("./grouped-product-factor-value-class"), exports);
|
|
53
|
+
__exportStar(require("./grouped-product-factors-response-class"), exports);
|
|
54
|
+
__exportStar(require("./insured-object-class"), exports);
|
|
55
|
+
__exportStar(require("./insured-object-type-class"), exports);
|
|
56
|
+
__exportStar(require("./list-insured-object-types-response-class"), exports);
|
|
57
|
+
__exportStar(require("./list-insured-objects-response-class"), exports);
|
|
58
|
+
__exportStar(require("./list-policies-response-class"), exports);
|
|
59
|
+
__exportStar(require("./list-premium-formulas-response-class"), exports);
|
|
60
|
+
__exportStar(require("./list-product-factors-response-class"), exports);
|
|
61
|
+
__exportStar(require("./list-product-field-types-response-class"), exports);
|
|
62
|
+
__exportStar(require("./list-product-fields-response-class"), exports);
|
|
63
|
+
__exportStar(require("./list-products-response-class"), exports);
|
|
64
|
+
__exportStar(require("./list-request-dto"), exports);
|
|
65
|
+
__exportStar(require("./policy-class"), exports);
|
|
66
|
+
__exportStar(require("./policy-object-class"), exports);
|
|
67
|
+
__exportStar(require("./policy-object-dto"), exports);
|
|
68
|
+
__exportStar(require("./policy-premium-class"), exports);
|
|
69
|
+
__exportStar(require("./policy-premium-item-class"), exports);
|
|
70
|
+
__exportStar(require("./policy-version-class"), exports);
|
|
71
|
+
__exportStar(require("./premium-formula-class"), exports);
|
|
72
|
+
__exportStar(require("./product-class"), exports);
|
|
73
|
+
__exportStar(require("./product-factor-class"), exports);
|
|
74
|
+
__exportStar(require("./product-factor-value-class"), exports);
|
|
75
|
+
__exportStar(require("./product-field-class"), exports);
|
|
76
|
+
__exportStar(require("./product-version-class"), exports);
|
|
77
|
+
__exportStar(require("./shared-create-lead-request-dto"), exports);
|
|
78
|
+
__exportStar(require("./store-product-factors-request-dto"), exports);
|
|
79
|
+
__exportStar(require("./store-product-factors-response-class"), exports);
|
|
80
|
+
__exportStar(require("./timeslice-class"), exports);
|
|
81
|
+
__exportStar(require("./update-insured-object-request-dto"), exports);
|
|
82
|
+
__exportStar(require("./update-policy-request-dto"), exports);
|
|
83
|
+
__exportStar(require("./update-policy-response-class"), exports);
|
|
84
|
+
__exportStar(require("./update-premium-formula-request-dto"), exports);
|
|
85
|
+
__exportStar(require("./update-product-field-request-dto"), exports);
|
|
86
|
+
__exportStar(require("./update-product-request-dto"), exports);
|
|
87
|
+
__exportStar(require("./update-product-version-request-dto"), exports);
|
|
88
|
+
__exportStar(require("./validate-product-factors-request-dto"), exports);
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL InsuranceService
|
|
3
|
+
* The EMIL InsuranceService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 { ProductFieldClass } from './product-field-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface InsuredObjectClass
|
|
17
|
+
*/
|
|
18
|
+
export interface InsuredObjectClass {
|
|
19
|
+
/**
|
|
20
|
+
* Insured object id
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof InsuredObjectClass
|
|
23
|
+
*/
|
|
24
|
+
'id': number;
|
|
25
|
+
/**
|
|
26
|
+
* Product version id
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof InsuredObjectClass
|
|
29
|
+
*/
|
|
30
|
+
'productVersionId': number;
|
|
31
|
+
/**
|
|
32
|
+
* Insured object name
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof InsuredObjectClass
|
|
35
|
+
*/
|
|
36
|
+
'name': string;
|
|
37
|
+
/**
|
|
38
|
+
* Insured object label
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof InsuredObjectClass
|
|
41
|
+
*/
|
|
42
|
+
'label': string;
|
|
43
|
+
/**
|
|
44
|
+
* Insured object type id
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof InsuredObjectClass
|
|
47
|
+
*/
|
|
48
|
+
'insuredObjectTypeId': number;
|
|
49
|
+
/**
|
|
50
|
+
* Product fields
|
|
51
|
+
* @type {Array<ProductFieldClass>}
|
|
52
|
+
* @memberof InsuredObjectClass
|
|
53
|
+
*/
|
|
54
|
+
'productFields': Array<ProductFieldClass>;
|
|
55
|
+
/**
|
|
56
|
+
* Date created
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof InsuredObjectClass
|
|
59
|
+
*/
|
|
60
|
+
'createdAt': string;
|
|
61
|
+
/**
|
|
62
|
+
* Date updated
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof InsuredObjectClass
|
|
65
|
+
*/
|
|
66
|
+
'updatedAt': string;
|
|
67
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL InsuranceService
|
|
6
|
+
* The EMIL InsuranceService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
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,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL InsuranceService
|
|
3
|
+
* The EMIL InsuranceService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 InsuredObjectTypeClass
|
|
16
|
+
*/
|
|
17
|
+
export interface InsuredObjectTypeClass {
|
|
18
|
+
/**
|
|
19
|
+
* Insured object type id
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof InsuredObjectTypeClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Insured object type name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof InsuredObjectTypeClass
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
* Insured object type\'s slug
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof InsuredObjectTypeClass
|
|
34
|
+
*/
|
|
35
|
+
'slug': string;
|
|
36
|
+
/**
|
|
37
|
+
* Date created
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof InsuredObjectTypeClass
|
|
40
|
+
*/
|
|
41
|
+
'createdAt': string;
|
|
42
|
+
/**
|
|
43
|
+
* Date updated
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof InsuredObjectTypeClass
|
|
46
|
+
*/
|
|
47
|
+
'updatedAt': string;
|
|
48
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL InsuranceService
|
|
6
|
+
* The EMIL InsuranceService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
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 InsuranceService
|
|
3
|
+
* The EMIL InsuranceService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 { InsuredObjectTypeClass } from './insured-object-type-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListInsuredObjectTypesResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListInsuredObjectTypesResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Products
|
|
21
|
+
* @type {Array<InsuredObjectTypeClass>}
|
|
22
|
+
* @memberof ListInsuredObjectTypesResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<InsuredObjectTypeClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListInsuredObjectTypesResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL InsuranceService
|
|
6
|
+
* The EMIL InsuranceService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
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,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL InsuranceService
|
|
3
|
+
* The EMIL InsuranceService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 ListInsuredObjectsResponseClass
|
|
16
|
+
*/
|
|
17
|
+
export interface ListInsuredObjectsResponseClass {
|
|
18
|
+
/**
|
|
19
|
+
* Insured objects
|
|
20
|
+
* @type {Array<string>}
|
|
21
|
+
* @memberof ListInsuredObjectsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
'items': Array<string>;
|
|
24
|
+
/**
|
|
25
|
+
* Next Page token
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ListInsuredObjectsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'nextPageToken': string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL InsuranceService
|
|
6
|
+
* The EMIL InsuranceService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
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 });
|