@emilgroup/billing-sdk-node 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.
Files changed (91) hide show
  1. package/.openapi-generator/FILES +35 -0
  2. package/.openapi-generator/VERSION +1 -0
  3. package/.openapi-generator-ignore +23 -0
  4. package/README.md +68 -0
  5. package/api/correction-invoices-api.ts +165 -0
  6. package/api/estimated-invoices-api.ts +268 -0
  7. package/api/initial-invoices-api.ts +165 -0
  8. package/api/invoices-api.ts +232 -0
  9. package/api/recurring-invoices-api.ts +165 -0
  10. package/api.ts +44 -0
  11. package/base.ts +293 -0
  12. package/common.ts +138 -0
  13. package/configuration.ts +109 -0
  14. package/dist/api/correction-invoices-api.d.ts +93 -0
  15. package/dist/api/correction-invoices-api.js +224 -0
  16. package/dist/api/estimated-invoices-api.d.ts +146 -0
  17. package/dist/api/estimated-invoices-api.js +313 -0
  18. package/dist/api/initial-invoices-api.d.ts +93 -0
  19. package/dist/api/initial-invoices-api.js +224 -0
  20. package/dist/api/invoices-api.d.ts +137 -0
  21. package/dist/api/invoices-api.js +254 -0
  22. package/dist/api/recurring-invoices-api.d.ts +93 -0
  23. package/dist/api/recurring-invoices-api.js +224 -0
  24. package/dist/api.d.ts +20 -0
  25. package/dist/api.js +40 -0
  26. package/dist/base.d.ts +77 -0
  27. package/dist/base.js +394 -0
  28. package/dist/common.d.ts +66 -0
  29. package/dist/common.js +244 -0
  30. package/dist/configuration.d.ts +90 -0
  31. package/dist/configuration.js +44 -0
  32. package/dist/index.d.ts +15 -0
  33. package/dist/index.js +35 -0
  34. package/dist/models/create-correction-invoices-response-class.d.ts +24 -0
  35. package/dist/models/create-correction-invoices-response-class.js +15 -0
  36. package/dist/models/create-custom-estimated-invoice-request-dto.d.ts +35 -0
  37. package/dist/models/create-custom-estimated-invoice-request-dto.js +20 -0
  38. package/dist/models/create-custom-estimated-invoice-response-class.d.ts +24 -0
  39. package/dist/models/create-custom-estimated-invoice-response-class.js +15 -0
  40. package/dist/models/create-estimated-invoice-request-dto.d.ts +31 -0
  41. package/dist/models/create-estimated-invoice-request-dto.js +15 -0
  42. package/dist/models/create-estimated-invoice-response-class.d.ts +31 -0
  43. package/dist/models/create-estimated-invoice-response-class.js +15 -0
  44. package/dist/models/create-invoice-request-dto.d.ts +75 -0
  45. package/dist/models/create-invoice-request-dto.js +24 -0
  46. package/dist/models/create-invoice-response-class.d.ts +25 -0
  47. package/dist/models/create-invoice-response-class.js +15 -0
  48. package/dist/models/index.d.ts +17 -0
  49. package/dist/models/index.js +33 -0
  50. package/dist/models/invoice-class.d.ts +120 -0
  51. package/dist/models/invoice-class.js +15 -0
  52. package/dist/models/list-invoices-response-class.d.ts +30 -0
  53. package/dist/models/list-invoices-response-class.js +15 -0
  54. package/dist/models/list-request-dto.d.ts +54 -0
  55. package/dist/models/list-request-dto.js +15 -0
  56. package/dist/models/policy-dto.d.ts +85 -0
  57. package/dist/models/policy-dto.js +15 -0
  58. package/dist/models/policy-object-dto.d.ts +42 -0
  59. package/dist/models/policy-object-dto.js +15 -0
  60. package/dist/models/policy-premium-dto.d.ts +43 -0
  61. package/dist/models/policy-premium-dto.js +15 -0
  62. package/dist/models/policy-premium-item-dto.d.ts +49 -0
  63. package/dist/models/policy-premium-item-dto.js +15 -0
  64. package/dist/models/policy-version-dto.d.ts +55 -0
  65. package/dist/models/policy-version-dto.js +15 -0
  66. package/dist/models/premium-formula-dto.d.ts +72 -0
  67. package/dist/models/premium-formula-dto.js +15 -0
  68. package/dist/models/timeslice-dto.d.ts +62 -0
  69. package/dist/models/timeslice-dto.js +15 -0
  70. package/git_push.sh +57 -0
  71. package/index.ts +19 -0
  72. package/models/create-correction-invoices-response-class.ts +30 -0
  73. package/models/create-custom-estimated-invoice-request-dto.ts +44 -0
  74. package/models/create-custom-estimated-invoice-response-class.ts +30 -0
  75. package/models/create-estimated-invoice-request-dto.ts +37 -0
  76. package/models/create-estimated-invoice-response-class.ts +37 -0
  77. package/models/create-invoice-request-dto.ts +84 -0
  78. package/models/create-invoice-response-class.ts +31 -0
  79. package/models/index.ts +17 -0
  80. package/models/invoice-class.ts +126 -0
  81. package/models/list-invoices-response-class.ts +36 -0
  82. package/models/list-request-dto.ts +60 -0
  83. package/models/policy-dto.ts +91 -0
  84. package/models/policy-object-dto.ts +48 -0
  85. package/models/policy-premium-dto.ts +49 -0
  86. package/models/policy-premium-item-dto.ts +55 -0
  87. package/models/policy-version-dto.ts +61 -0
  88. package/models/premium-formula-dto.ts +78 -0
  89. package/models/timeslice-dto.ts +68 -0
  90. package/package.json +30 -0
  91. package/tsconfig.json +22 -0
@@ -0,0 +1,17 @@
1
+ export * from './create-correction-invoices-response-class';
2
+ export * from './create-custom-estimated-invoice-request-dto';
3
+ export * from './create-custom-estimated-invoice-response-class';
4
+ export * from './create-estimated-invoice-request-dto';
5
+ export * from './create-estimated-invoice-response-class';
6
+ export * from './create-invoice-request-dto';
7
+ export * from './create-invoice-response-class';
8
+ export * from './invoice-class';
9
+ export * from './list-invoices-response-class';
10
+ export * from './list-request-dto';
11
+ export * from './policy-dto';
12
+ export * from './policy-object-dto';
13
+ export * from './policy-premium-dto';
14
+ export * from './policy-premium-item-dto';
15
+ export * from './policy-version-dto';
16
+ export * from './premium-formula-dto';
17
+ export * from './timeslice-dto';
@@ -0,0 +1,126 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL BillingService
5
+ * The EMIL BillingService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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 InvoiceClass
21
+ */
22
+ export interface InvoiceClass {
23
+ /**
24
+ * Invoice id
25
+ * @type {number}
26
+ * @memberof InvoiceClass
27
+ */
28
+ 'id': number;
29
+ /**
30
+ * policy code
31
+ * @type {string}
32
+ * @memberof InvoiceClass
33
+ */
34
+ 'policyCode': string;
35
+ /**
36
+ * Account number
37
+ * @type {string}
38
+ * @memberof InvoiceClass
39
+ */
40
+ 'accountNumber': string;
41
+ /**
42
+ * Invoice code
43
+ * @type {string}
44
+ * @memberof InvoiceClass
45
+ */
46
+ 'code': string;
47
+ /**
48
+ * Invoice type
49
+ * @type {string}
50
+ * @memberof InvoiceClass
51
+ */
52
+ 'type': string;
53
+ /**
54
+ * Invoice number
55
+ * @type {string}
56
+ * @memberof InvoiceClass
57
+ */
58
+ 'invoiceNumber': string;
59
+ /**
60
+ * Net amount
61
+ * @type {number}
62
+ * @memberof InvoiceClass
63
+ */
64
+ 'netAmount': number;
65
+ /**
66
+ * Tax amount
67
+ * @type {number}
68
+ * @memberof InvoiceClass
69
+ */
70
+ 'taxAmount': number;
71
+ /**
72
+ * Credit amount
73
+ * @type {number}
74
+ * @memberof InvoiceClass
75
+ */
76
+ 'creditAmount': number;
77
+ /**
78
+ * Gross amount
79
+ * @type {number}
80
+ * @memberof InvoiceClass
81
+ */
82
+ 'grossAmount': number;
83
+ /**
84
+ * Invoice status
85
+ * @type {string}
86
+ * @memberof InvoiceClass
87
+ */
88
+ 'status': string;
89
+ /**
90
+ * Invoice due date
91
+ * @type {string}
92
+ * @memberof InvoiceClass
93
+ */
94
+ 'dueDate': string;
95
+ /**
96
+ * Invoice metadata
97
+ * @type {object}
98
+ * @memberof InvoiceClass
99
+ */
100
+ 'metadata': object;
101
+ /**
102
+ * Invoice billing interval from
103
+ * @type {string}
104
+ * @memberof InvoiceClass
105
+ */
106
+ 'billingIntervalFrom': string;
107
+ /**
108
+ * Invoice billing interval to
109
+ * @type {string}
110
+ * @memberof InvoiceClass
111
+ */
112
+ 'billingIntervalTo': string;
113
+ /**
114
+ * Invoice created at
115
+ * @type {string}
116
+ * @memberof InvoiceClass
117
+ */
118
+ 'createdAt': string;
119
+ /**
120
+ * Invoice items
121
+ * @type {Array<string>}
122
+ * @memberof InvoiceClass
123
+ */
124
+ 'invoiceItems': Array<string>;
125
+ }
126
+
@@ -0,0 +1,36 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL BillingService
5
+ * The EMIL BillingService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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 ListInvoicesResponseClass
21
+ */
22
+ export interface ListInvoicesResponseClass {
23
+ /**
24
+ * Invoices list items
25
+ * @type {Array<string>}
26
+ * @memberof ListInvoicesResponseClass
27
+ */
28
+ 'items': Array<string>;
29
+ /**
30
+ * Next page token
31
+ * @type {string}
32
+ * @memberof ListInvoicesResponseClass
33
+ */
34
+ 'nextPageToken': string;
35
+ }
36
+
@@ -0,0 +1,60 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL BillingService
5
+ * The EMIL BillingService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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 ListRequestDto
21
+ */
22
+ export interface ListRequestDto {
23
+ /**
24
+ * Page size
25
+ * @type {number}
26
+ * @memberof ListRequestDto
27
+ */
28
+ 'pageSize'?: number;
29
+ /**
30
+ * Page token
31
+ * @type {string}
32
+ * @memberof ListRequestDto
33
+ */
34
+ 'pageToken'?: string;
35
+ /**
36
+ * List filter
37
+ * @type {string}
38
+ * @memberof ListRequestDto
39
+ */
40
+ 'filter'?: string;
41
+ /**
42
+ * Search query
43
+ * @type {string}
44
+ * @memberof ListRequestDto
45
+ */
46
+ 'search'?: string;
47
+ /**
48
+ * Ordering criteria
49
+ * @type {string}
50
+ * @memberof ListRequestDto
51
+ */
52
+ 'order'?: string;
53
+ /**
54
+ * Extra fields to fetch
55
+ * @type {string}
56
+ * @memberof ListRequestDto
57
+ */
58
+ 'expand'?: string;
59
+ }
60
+
@@ -0,0 +1,91 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL BillingService
5
+ * The EMIL BillingService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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 { PolicyVersionDto } from './policy-version-dto';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface PolicyDto
22
+ */
23
+ export interface PolicyDto {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof PolicyDto
28
+ */
29
+ 'policyStartDate': string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof PolicyDto
34
+ */
35
+ 'createdAt': string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof PolicyDto
40
+ */
41
+ 'updatedAt': string;
42
+ /**
43
+ *
44
+ * @type {Array<PolicyVersionDto>}
45
+ * @memberof PolicyDto
46
+ */
47
+ 'versions': Array<PolicyVersionDto>;
48
+ /**
49
+ *
50
+ * @type {number}
51
+ * @memberof PolicyDto
52
+ */
53
+ 'id': number;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof PolicyDto
58
+ */
59
+ 'code': string;
60
+ /**
61
+ *
62
+ * @type {string}
63
+ * @memberof PolicyDto
64
+ */
65
+ 'policyNumber': string;
66
+ /**
67
+ *
68
+ * @type {number}
69
+ * @memberof PolicyDto
70
+ */
71
+ 'productVersionId': number;
72
+ /**
73
+ *
74
+ * @type {number}
75
+ * @memberof PolicyDto
76
+ */
77
+ 'productId': number;
78
+ /**
79
+ *
80
+ * @type {string}
81
+ * @memberof PolicyDto
82
+ */
83
+ 'accountCode': string;
84
+ /**
85
+ *
86
+ * @type {number}
87
+ * @memberof PolicyDto
88
+ */
89
+ 'statusId': number;
90
+ }
91
+
@@ -0,0 +1,48 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL BillingService
5
+ * The EMIL BillingService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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 PolicyObjectDto
21
+ */
22
+ export interface PolicyObjectDto {
23
+ /**
24
+ *
25
+ * @type {object}
26
+ * @memberof PolicyObjectDto
27
+ */
28
+ 'data': object;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof PolicyObjectDto
33
+ */
34
+ 'insuredObjectId': number;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof PolicyObjectDto
39
+ */
40
+ 'insuredObjectName': string;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PolicyObjectDto
45
+ */
46
+ 'summary': string;
47
+ }
48
+
@@ -0,0 +1,49 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL BillingService
5
+ * The EMIL BillingService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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 { PolicyPremiumItemDto } from './policy-premium-item-dto';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface PolicyPremiumDto
22
+ */
23
+ export interface PolicyPremiumDto {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof PolicyPremiumDto
28
+ */
29
+ 'createdAt': string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof PolicyPremiumDto
34
+ */
35
+ 'updatedAt': string;
36
+ /**
37
+ *
38
+ * @type {Array<PolicyPremiumItemDto>}
39
+ * @memberof PolicyPremiumDto
40
+ */
41
+ 'premiumItems': Array<PolicyPremiumItemDto>;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof PolicyPremiumDto
46
+ */
47
+ 'grandTotal': number;
48
+ }
49
+
@@ -0,0 +1,55 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL BillingService
5
+ * The EMIL BillingService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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 { PremiumFormulaDto } from './premium-formula-dto';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface PolicyPremiumItemDto
22
+ */
23
+ export interface PolicyPremiumItemDto {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof PolicyPremiumItemDto
28
+ */
29
+ 'createdAt': string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof PolicyPremiumItemDto
34
+ */
35
+ 'updatedAt': string;
36
+ /**
37
+ *
38
+ * @type {PremiumFormulaDto}
39
+ * @memberof PolicyPremiumItemDto
40
+ */
41
+ 'premiumFormula': PremiumFormulaDto;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof PolicyPremiumItemDto
46
+ */
47
+ 'premiumFormulaId': number;
48
+ /**
49
+ *
50
+ * @type {number}
51
+ * @memberof PolicyPremiumItemDto
52
+ */
53
+ 'total': number;
54
+ }
55
+
@@ -0,0 +1,61 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL BillingService
5
+ * The EMIL BillingService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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 { TimesliceDto } from './timeslice-dto';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface PolicyVersionDto
22
+ */
23
+ export interface PolicyVersionDto {
24
+ /**
25
+ *
26
+ * @type {object}
27
+ * @memberof PolicyVersionDto
28
+ */
29
+ 'metadata': object;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof PolicyVersionDto
34
+ */
35
+ 'createdAt': string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof PolicyVersionDto
40
+ */
41
+ 'updatedAt': string;
42
+ /**
43
+ *
44
+ * @type {Array<TimesliceDto>}
45
+ * @memberof PolicyVersionDto
46
+ */
47
+ 'timeline': Array<TimesliceDto>;
48
+ /**
49
+ *
50
+ * @type {number}
51
+ * @memberof PolicyVersionDto
52
+ */
53
+ 'id': number;
54
+ /**
55
+ *
56
+ * @type {boolean}
57
+ * @memberof PolicyVersionDto
58
+ */
59
+ 'isCurrent': boolean;
60
+ }
61
+
@@ -0,0 +1,78 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL BillingService
5
+ * The EMIL BillingService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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 PremiumFormulaDto
21
+ */
22
+ export interface PremiumFormulaDto {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof PremiumFormulaDto
27
+ */
28
+ 'createdAt': string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PremiumFormulaDto
33
+ */
34
+ 'updatedAt': string;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof PremiumFormulaDto
39
+ */
40
+ 'id': number;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof PremiumFormulaDto
45
+ */
46
+ 'productVersionId': number;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof PremiumFormulaDto
51
+ */
52
+ 'group': string;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof PremiumFormulaDto
57
+ */
58
+ 'name': string;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof PremiumFormulaDto
63
+ */
64
+ 'expression': string;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof PremiumFormulaDto
69
+ */
70
+ 'type': string;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof PremiumFormulaDto
75
+ */
76
+ 'unit': string;
77
+ }
78
+
@@ -0,0 +1,68 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL BillingService
5
+ * The EMIL BillingService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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 { PolicyObjectDto } from './policy-object-dto';
17
+ import { PolicyPremiumDto } from './policy-premium-dto';
18
+
19
+ /**
20
+ *
21
+ * @export
22
+ * @interface TimesliceDto
23
+ */
24
+ export interface TimesliceDto {
25
+ /**
26
+ *
27
+ * @type {Array<PolicyObjectDto>}
28
+ * @memberof TimesliceDto
29
+ */
30
+ 'policyObjects': Array<PolicyObjectDto>;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof TimesliceDto
35
+ */
36
+ 'from': string;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof TimesliceDto
41
+ */
42
+ 'to': string;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof TimesliceDto
47
+ */
48
+ 'createdAt': string;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof TimesliceDto
53
+ */
54
+ 'updatedAt': string;
55
+ /**
56
+ *
57
+ * @type {PolicyPremiumDto}
58
+ * @memberof TimesliceDto
59
+ */
60
+ 'premium': PolicyPremiumDto;
61
+ /**
62
+ *
63
+ * @type {number}
64
+ * @memberof TimesliceDto
65
+ */
66
+ 'id': number;
67
+ }
68
+