ch-admin-api-client-typescript 5.30.38 → 5.30.44
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/lib/models/hospital-item-model.d.ts +6 -78
- package/lib/models/hospital-item-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +53 -72
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/models/hospital-item-model.ts +6 -90
- package/src/models/hospital-model.ts +53 -74
|
@@ -9,14 +9,8 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { AppointmentOptionModel } from './appointment-option-model';
|
|
13
12
|
import { AuditableEntityModel } from './auditable-entity-model';
|
|
14
|
-
import { GradeModel } from './grade-model';
|
|
15
|
-
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
16
|
-
import { LocationModel } from './location-model';
|
|
17
13
|
import { MarketingType } from './marketing-type';
|
|
18
|
-
import { MediaModel } from './media-model';
|
|
19
|
-
import { PaymentMethod } from './payment-method';
|
|
20
14
|
/**
|
|
21
15
|
*
|
|
22
16
|
* @export
|
|
@@ -35,6 +29,12 @@ export interface HospitalItemModel {
|
|
|
35
29
|
* @memberof HospitalItemModel
|
|
36
30
|
*/
|
|
37
31
|
'languageCode'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof HospitalItemModel
|
|
36
|
+
*/
|
|
37
|
+
'countryId'?: string;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {string}
|
|
@@ -89,18 +89,6 @@ export interface HospitalItemModel {
|
|
|
89
89
|
* @memberof HospitalItemModel
|
|
90
90
|
*/
|
|
91
91
|
'marketingType'?: MarketingType;
|
|
92
|
-
/**
|
|
93
|
-
*
|
|
94
|
-
* @type {boolean}
|
|
95
|
-
* @memberof HospitalItemModel
|
|
96
|
-
*/
|
|
97
|
-
'consultationEnabled'?: boolean | null;
|
|
98
|
-
/**
|
|
99
|
-
*
|
|
100
|
-
* @type {number}
|
|
101
|
-
* @memberof HospitalItemModel
|
|
102
|
-
*/
|
|
103
|
-
'consultationFee'?: number | null;
|
|
104
92
|
/**
|
|
105
93
|
*
|
|
106
94
|
* @type {string}
|
|
@@ -113,66 +101,6 @@ export interface HospitalItemModel {
|
|
|
113
101
|
* @memberof HospitalItemModel
|
|
114
102
|
*/
|
|
115
103
|
'websiteUrl'?: string | null;
|
|
116
|
-
/**
|
|
117
|
-
*
|
|
118
|
-
* @type {boolean}
|
|
119
|
-
* @memberof HospitalItemModel
|
|
120
|
-
*/
|
|
121
|
-
'paymentEnabled'?: boolean;
|
|
122
|
-
/**
|
|
123
|
-
*
|
|
124
|
-
* @type {string}
|
|
125
|
-
* @memberof HospitalItemModel
|
|
126
|
-
*/
|
|
127
|
-
'appointmentCurrency'?: string | null;
|
|
128
|
-
/**
|
|
129
|
-
*
|
|
130
|
-
* @type {string}
|
|
131
|
-
* @memberof HospitalItemModel
|
|
132
|
-
*/
|
|
133
|
-
'countryId'?: string;
|
|
134
|
-
/**
|
|
135
|
-
*
|
|
136
|
-
* @type {Array<MediaModel>}
|
|
137
|
-
* @memberof HospitalItemModel
|
|
138
|
-
*/
|
|
139
|
-
'medias'?: Array<MediaModel> | null;
|
|
140
|
-
/**
|
|
141
|
-
*
|
|
142
|
-
* @type {LocationModel}
|
|
143
|
-
* @memberof HospitalItemModel
|
|
144
|
-
*/
|
|
145
|
-
'location'?: LocationModel;
|
|
146
|
-
/**
|
|
147
|
-
*
|
|
148
|
-
* @type {HospitalConsultationOptionModel}
|
|
149
|
-
* @memberof HospitalItemModel
|
|
150
|
-
*/
|
|
151
|
-
'consultationOption'?: HospitalConsultationOptionModel;
|
|
152
|
-
/**
|
|
153
|
-
*
|
|
154
|
-
* @type {AppointmentOptionModel}
|
|
155
|
-
* @memberof HospitalItemModel
|
|
156
|
-
*/
|
|
157
|
-
'appointmentOption'?: AppointmentOptionModel;
|
|
158
|
-
/**
|
|
159
|
-
*
|
|
160
|
-
* @type {string}
|
|
161
|
-
* @memberof HospitalItemModel
|
|
162
|
-
*/
|
|
163
|
-
'gradeId'?: string | null;
|
|
164
|
-
/**
|
|
165
|
-
*
|
|
166
|
-
* @type {GradeModel}
|
|
167
|
-
* @memberof HospitalItemModel
|
|
168
|
-
*/
|
|
169
|
-
'grade'?: GradeModel;
|
|
170
|
-
/**
|
|
171
|
-
*
|
|
172
|
-
* @type {Array<PaymentMethod>}
|
|
173
|
-
* @memberof HospitalItemModel
|
|
174
|
-
*/
|
|
175
|
-
'paymentMethods'?: Array<PaymentMethod> | null;
|
|
176
104
|
/**
|
|
177
105
|
*
|
|
178
106
|
* @type {AuditableEntityModel}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hospital-item-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"hospital-item-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,eAAe,CAAC,EAAE,aAAa,CAAC;IAChC;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;CAC5C"}
|
|
@@ -14,7 +14,6 @@ import { AuditableEntityModel } from './auditable-entity-model';
|
|
|
14
14
|
import { DeployStatus } from './deploy-status';
|
|
15
15
|
import { FeatureModel } from './feature-model';
|
|
16
16
|
import { GradeModel } from './grade-model';
|
|
17
|
-
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
18
17
|
import { HospitalLanguageItemModel } from './hospital-language-item-model';
|
|
19
18
|
import { HospitalTagItemModel } from './hospital-tag-item-model';
|
|
20
19
|
import { LocationModel } from './location-model';
|
|
@@ -39,6 +38,12 @@ export interface HospitalModel {
|
|
|
39
38
|
* @memberof HospitalModel
|
|
40
39
|
*/
|
|
41
40
|
'languageCode'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof HospitalModel
|
|
45
|
+
*/
|
|
46
|
+
'countryId'?: string;
|
|
42
47
|
/**
|
|
43
48
|
*
|
|
44
49
|
* @type {string}
|
|
@@ -93,18 +98,6 @@ export interface HospitalModel {
|
|
|
93
98
|
* @memberof HospitalModel
|
|
94
99
|
*/
|
|
95
100
|
'marketingType'?: MarketingType;
|
|
96
|
-
/**
|
|
97
|
-
*
|
|
98
|
-
* @type {boolean}
|
|
99
|
-
* @memberof HospitalModel
|
|
100
|
-
*/
|
|
101
|
-
'consultationEnabled'?: boolean | null;
|
|
102
|
-
/**
|
|
103
|
-
*
|
|
104
|
-
* @type {number}
|
|
105
|
-
* @memberof HospitalModel
|
|
106
|
-
*/
|
|
107
|
-
'consultationFee'?: number | null;
|
|
108
101
|
/**
|
|
109
102
|
*
|
|
110
103
|
* @type {string}
|
|
@@ -119,178 +112,166 @@ export interface HospitalModel {
|
|
|
119
112
|
'websiteUrl'?: string | null;
|
|
120
113
|
/**
|
|
121
114
|
*
|
|
122
|
-
* @type {
|
|
115
|
+
* @type {AuditableEntityModel}
|
|
123
116
|
* @memberof HospitalModel
|
|
124
117
|
*/
|
|
125
|
-
'
|
|
118
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
126
119
|
/**
|
|
127
120
|
*
|
|
128
121
|
* @type {string}
|
|
129
122
|
* @memberof HospitalModel
|
|
130
123
|
*/
|
|
131
|
-
'
|
|
124
|
+
'description'?: string | null;
|
|
132
125
|
/**
|
|
133
126
|
*
|
|
134
127
|
* @type {string}
|
|
135
128
|
* @memberof HospitalModel
|
|
136
129
|
*/
|
|
137
|
-
'
|
|
130
|
+
'overview'?: string | null;
|
|
138
131
|
/**
|
|
139
132
|
*
|
|
140
|
-
* @type {
|
|
133
|
+
* @type {string}
|
|
141
134
|
* @memberof HospitalModel
|
|
142
135
|
*/
|
|
143
|
-
'
|
|
136
|
+
'content'?: string | null;
|
|
144
137
|
/**
|
|
145
138
|
*
|
|
146
|
-
* @type {
|
|
139
|
+
* @type {number}
|
|
147
140
|
* @memberof HospitalModel
|
|
148
141
|
*/
|
|
149
|
-
'
|
|
142
|
+
'bedsCount'?: number | null;
|
|
150
143
|
/**
|
|
151
144
|
*
|
|
152
|
-
* @type {
|
|
145
|
+
* @type {number}
|
|
153
146
|
* @memberof HospitalModel
|
|
154
147
|
*/
|
|
155
|
-
'
|
|
148
|
+
'operationsPerYear'?: number | null;
|
|
156
149
|
/**
|
|
157
150
|
*
|
|
158
|
-
* @type {
|
|
151
|
+
* @type {number}
|
|
159
152
|
* @memberof HospitalModel
|
|
160
153
|
*/
|
|
161
|
-
'
|
|
154
|
+
'foundationYear'?: number | null;
|
|
162
155
|
/**
|
|
163
156
|
*
|
|
164
|
-
* @type {
|
|
157
|
+
* @type {number}
|
|
165
158
|
* @memberof HospitalModel
|
|
166
159
|
*/
|
|
167
|
-
'
|
|
160
|
+
'medicalStaffCount'?: number | null;
|
|
168
161
|
/**
|
|
169
162
|
*
|
|
170
|
-
* @type {
|
|
163
|
+
* @type {number}
|
|
171
164
|
* @memberof HospitalModel
|
|
172
165
|
*/
|
|
173
|
-
'
|
|
166
|
+
'doctorCount'?: number | null;
|
|
174
167
|
/**
|
|
175
168
|
*
|
|
176
|
-
* @type {
|
|
169
|
+
* @type {string}
|
|
177
170
|
* @memberof HospitalModel
|
|
178
171
|
*/
|
|
179
|
-
'
|
|
172
|
+
'contactTel'?: string | null;
|
|
180
173
|
/**
|
|
181
174
|
*
|
|
182
|
-
* @type {
|
|
175
|
+
* @type {string}
|
|
183
176
|
* @memberof HospitalModel
|
|
184
177
|
*/
|
|
185
|
-
'
|
|
178
|
+
'contactEmail'?: string | null;
|
|
186
179
|
/**
|
|
187
180
|
*
|
|
188
181
|
* @type {string}
|
|
189
182
|
* @memberof HospitalModel
|
|
190
183
|
*/
|
|
191
|
-
'
|
|
184
|
+
'customStyle'?: string | null;
|
|
192
185
|
/**
|
|
193
186
|
*
|
|
194
187
|
* @type {string}
|
|
195
188
|
* @memberof HospitalModel
|
|
196
189
|
*/
|
|
197
|
-
'
|
|
190
|
+
'corporateIdentificationNumber'?: string | null;
|
|
198
191
|
/**
|
|
199
192
|
*
|
|
200
193
|
* @type {string}
|
|
201
194
|
* @memberof HospitalModel
|
|
202
195
|
*/
|
|
203
|
-
'
|
|
196
|
+
'gstRegistrationNumber'?: string | null;
|
|
204
197
|
/**
|
|
205
198
|
*
|
|
206
|
-
* @type {
|
|
199
|
+
* @type {string}
|
|
207
200
|
* @memberof HospitalModel
|
|
208
201
|
*/
|
|
209
|
-
'
|
|
202
|
+
'permanentAccountNumber'?: string | null;
|
|
210
203
|
/**
|
|
211
204
|
*
|
|
212
|
-
* @type {
|
|
205
|
+
* @type {string}
|
|
213
206
|
* @memberof HospitalModel
|
|
214
207
|
*/
|
|
215
|
-
'
|
|
208
|
+
'hospitalRegistrationNumber'?: string | null;
|
|
216
209
|
/**
|
|
217
210
|
*
|
|
218
|
-
* @type {
|
|
211
|
+
* @type {Array<HospitalLanguageItemModel>}
|
|
219
212
|
* @memberof HospitalModel
|
|
220
213
|
*/
|
|
221
|
-
'
|
|
214
|
+
'languages'?: Array<HospitalLanguageItemModel> | null;
|
|
222
215
|
/**
|
|
223
216
|
*
|
|
224
|
-
* @type {
|
|
217
|
+
* @type {FeatureModel}
|
|
225
218
|
* @memberof HospitalModel
|
|
226
219
|
*/
|
|
227
|
-
'
|
|
220
|
+
'feature'?: FeatureModel;
|
|
228
221
|
/**
|
|
229
222
|
*
|
|
230
|
-
* @type {
|
|
223
|
+
* @type {Array<MediaModel>}
|
|
231
224
|
* @memberof HospitalModel
|
|
232
225
|
*/
|
|
233
|
-
'
|
|
226
|
+
'medias'?: Array<MediaModel> | null;
|
|
234
227
|
/**
|
|
235
228
|
*
|
|
236
|
-
* @type {
|
|
229
|
+
* @type {LocationModel}
|
|
237
230
|
* @memberof HospitalModel
|
|
238
231
|
*/
|
|
239
|
-
'
|
|
232
|
+
'location'?: LocationModel;
|
|
240
233
|
/**
|
|
241
234
|
*
|
|
242
|
-
* @type {
|
|
235
|
+
* @type {Array<HospitalTagItemModel>}
|
|
243
236
|
* @memberof HospitalModel
|
|
244
237
|
*/
|
|
245
|
-
'
|
|
238
|
+
'tags'?: Array<HospitalTagItemModel> | null;
|
|
246
239
|
/**
|
|
247
240
|
*
|
|
248
|
-
* @type {
|
|
241
|
+
* @type {AppointmentOptionModel}
|
|
249
242
|
* @memberof HospitalModel
|
|
250
243
|
*/
|
|
251
|
-
'
|
|
244
|
+
'appointmentOption'?: AppointmentOptionModel;
|
|
252
245
|
/**
|
|
253
246
|
*
|
|
254
247
|
* @type {string}
|
|
255
248
|
* @memberof HospitalModel
|
|
256
249
|
*/
|
|
257
|
-
'
|
|
250
|
+
'gradeId'?: string | null;
|
|
258
251
|
/**
|
|
259
252
|
*
|
|
260
|
-
* @type {
|
|
253
|
+
* @type {GradeModel}
|
|
261
254
|
* @memberof HospitalModel
|
|
262
255
|
*/
|
|
263
|
-
'
|
|
256
|
+
'grade'?: GradeModel;
|
|
264
257
|
/**
|
|
265
258
|
*
|
|
266
|
-
* @type {
|
|
259
|
+
* @type {boolean}
|
|
267
260
|
* @memberof HospitalModel
|
|
268
261
|
*/
|
|
269
|
-
'
|
|
262
|
+
'paymentEnabled'?: boolean;
|
|
270
263
|
/**
|
|
271
264
|
*
|
|
272
265
|
* @type {string}
|
|
273
266
|
* @memberof HospitalModel
|
|
274
267
|
*/
|
|
275
|
-
'
|
|
276
|
-
/**
|
|
277
|
-
*
|
|
278
|
-
* @type {Array<HospitalLanguageItemModel>}
|
|
279
|
-
* @memberof HospitalModel
|
|
280
|
-
*/
|
|
281
|
-
'languages'?: Array<HospitalLanguageItemModel> | null;
|
|
282
|
-
/**
|
|
283
|
-
*
|
|
284
|
-
* @type {FeatureModel}
|
|
285
|
-
* @memberof HospitalModel
|
|
286
|
-
*/
|
|
287
|
-
'feature'?: FeatureModel;
|
|
268
|
+
'appointmentCurrency'?: string | null;
|
|
288
269
|
/**
|
|
289
270
|
*
|
|
290
|
-
* @type {Array<
|
|
271
|
+
* @type {Array<PaymentMethod>}
|
|
291
272
|
* @memberof HospitalModel
|
|
292
273
|
*/
|
|
293
|
-
'
|
|
274
|
+
'paymentMethods'?: Array<PaymentMethod> | null;
|
|
294
275
|
/**
|
|
295
276
|
*
|
|
296
277
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hospital-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAG/C,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAG/C,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAG3C,OAAO,EAAE
|
|
1
|
+
{"version":3,"file":"hospital-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-model.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -13,30 +13,12 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
// May contain unused imports in some cases
|
|
17
|
-
// @ts-ignore
|
|
18
|
-
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
16
|
// May contain unused imports in some cases
|
|
20
17
|
// @ts-ignore
|
|
21
18
|
import { AuditableEntityModel } from './auditable-entity-model';
|
|
22
19
|
// May contain unused imports in some cases
|
|
23
20
|
// @ts-ignore
|
|
24
|
-
import { GradeModel } from './grade-model';
|
|
25
|
-
// May contain unused imports in some cases
|
|
26
|
-
// @ts-ignore
|
|
27
|
-
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
28
|
-
// May contain unused imports in some cases
|
|
29
|
-
// @ts-ignore
|
|
30
|
-
import { LocationModel } from './location-model';
|
|
31
|
-
// May contain unused imports in some cases
|
|
32
|
-
// @ts-ignore
|
|
33
21
|
import { MarketingType } from './marketing-type';
|
|
34
|
-
// May contain unused imports in some cases
|
|
35
|
-
// @ts-ignore
|
|
36
|
-
import { MediaModel } from './media-model';
|
|
37
|
-
// May contain unused imports in some cases
|
|
38
|
-
// @ts-ignore
|
|
39
|
-
import { PaymentMethod } from './payment-method';
|
|
40
22
|
|
|
41
23
|
/**
|
|
42
24
|
*
|
|
@@ -56,6 +38,12 @@ export interface HospitalItemModel {
|
|
|
56
38
|
* @memberof HospitalItemModel
|
|
57
39
|
*/
|
|
58
40
|
'languageCode'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof HospitalItemModel
|
|
45
|
+
*/
|
|
46
|
+
'countryId'?: string;
|
|
59
47
|
/**
|
|
60
48
|
*
|
|
61
49
|
* @type {string}
|
|
@@ -110,18 +98,6 @@ export interface HospitalItemModel {
|
|
|
110
98
|
* @memberof HospitalItemModel
|
|
111
99
|
*/
|
|
112
100
|
'marketingType'?: MarketingType;
|
|
113
|
-
/**
|
|
114
|
-
*
|
|
115
|
-
* @type {boolean}
|
|
116
|
-
* @memberof HospitalItemModel
|
|
117
|
-
*/
|
|
118
|
-
'consultationEnabled'?: boolean | null;
|
|
119
|
-
/**
|
|
120
|
-
*
|
|
121
|
-
* @type {number}
|
|
122
|
-
* @memberof HospitalItemModel
|
|
123
|
-
*/
|
|
124
|
-
'consultationFee'?: number | null;
|
|
125
101
|
/**
|
|
126
102
|
*
|
|
127
103
|
* @type {string}
|
|
@@ -134,66 +110,6 @@ export interface HospitalItemModel {
|
|
|
134
110
|
* @memberof HospitalItemModel
|
|
135
111
|
*/
|
|
136
112
|
'websiteUrl'?: string | null;
|
|
137
|
-
/**
|
|
138
|
-
*
|
|
139
|
-
* @type {boolean}
|
|
140
|
-
* @memberof HospitalItemModel
|
|
141
|
-
*/
|
|
142
|
-
'paymentEnabled'?: boolean;
|
|
143
|
-
/**
|
|
144
|
-
*
|
|
145
|
-
* @type {string}
|
|
146
|
-
* @memberof HospitalItemModel
|
|
147
|
-
*/
|
|
148
|
-
'appointmentCurrency'?: string | null;
|
|
149
|
-
/**
|
|
150
|
-
*
|
|
151
|
-
* @type {string}
|
|
152
|
-
* @memberof HospitalItemModel
|
|
153
|
-
*/
|
|
154
|
-
'countryId'?: string;
|
|
155
|
-
/**
|
|
156
|
-
*
|
|
157
|
-
* @type {Array<MediaModel>}
|
|
158
|
-
* @memberof HospitalItemModel
|
|
159
|
-
*/
|
|
160
|
-
'medias'?: Array<MediaModel> | null;
|
|
161
|
-
/**
|
|
162
|
-
*
|
|
163
|
-
* @type {LocationModel}
|
|
164
|
-
* @memberof HospitalItemModel
|
|
165
|
-
*/
|
|
166
|
-
'location'?: LocationModel;
|
|
167
|
-
/**
|
|
168
|
-
*
|
|
169
|
-
* @type {HospitalConsultationOptionModel}
|
|
170
|
-
* @memberof HospitalItemModel
|
|
171
|
-
*/
|
|
172
|
-
'consultationOption'?: HospitalConsultationOptionModel;
|
|
173
|
-
/**
|
|
174
|
-
*
|
|
175
|
-
* @type {AppointmentOptionModel}
|
|
176
|
-
* @memberof HospitalItemModel
|
|
177
|
-
*/
|
|
178
|
-
'appointmentOption'?: AppointmentOptionModel;
|
|
179
|
-
/**
|
|
180
|
-
*
|
|
181
|
-
* @type {string}
|
|
182
|
-
* @memberof HospitalItemModel
|
|
183
|
-
*/
|
|
184
|
-
'gradeId'?: string | null;
|
|
185
|
-
/**
|
|
186
|
-
*
|
|
187
|
-
* @type {GradeModel}
|
|
188
|
-
* @memberof HospitalItemModel
|
|
189
|
-
*/
|
|
190
|
-
'grade'?: GradeModel;
|
|
191
|
-
/**
|
|
192
|
-
*
|
|
193
|
-
* @type {Array<PaymentMethod>}
|
|
194
|
-
* @memberof HospitalItemModel
|
|
195
|
-
*/
|
|
196
|
-
'paymentMethods'?: Array<PaymentMethod> | null;
|
|
197
113
|
/**
|
|
198
114
|
*
|
|
199
115
|
* @type {AuditableEntityModel}
|
|
@@ -30,9 +30,6 @@ import { FeatureModel } from './feature-model';
|
|
|
30
30
|
import { GradeModel } from './grade-model';
|
|
31
31
|
// May contain unused imports in some cases
|
|
32
32
|
// @ts-ignore
|
|
33
|
-
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
34
|
-
// May contain unused imports in some cases
|
|
35
|
-
// @ts-ignore
|
|
36
33
|
import { HospitalLanguageItemModel } from './hospital-language-item-model';
|
|
37
34
|
// May contain unused imports in some cases
|
|
38
35
|
// @ts-ignore
|
|
@@ -68,6 +65,12 @@ export interface HospitalModel {
|
|
|
68
65
|
* @memberof HospitalModel
|
|
69
66
|
*/
|
|
70
67
|
'languageCode'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof HospitalModel
|
|
72
|
+
*/
|
|
73
|
+
'countryId'?: string;
|
|
71
74
|
/**
|
|
72
75
|
*
|
|
73
76
|
* @type {string}
|
|
@@ -122,18 +125,6 @@ export interface HospitalModel {
|
|
|
122
125
|
* @memberof HospitalModel
|
|
123
126
|
*/
|
|
124
127
|
'marketingType'?: MarketingType;
|
|
125
|
-
/**
|
|
126
|
-
*
|
|
127
|
-
* @type {boolean}
|
|
128
|
-
* @memberof HospitalModel
|
|
129
|
-
*/
|
|
130
|
-
'consultationEnabled'?: boolean | null;
|
|
131
|
-
/**
|
|
132
|
-
*
|
|
133
|
-
* @type {number}
|
|
134
|
-
* @memberof HospitalModel
|
|
135
|
-
*/
|
|
136
|
-
'consultationFee'?: number | null;
|
|
137
128
|
/**
|
|
138
129
|
*
|
|
139
130
|
* @type {string}
|
|
@@ -148,178 +139,166 @@ export interface HospitalModel {
|
|
|
148
139
|
'websiteUrl'?: string | null;
|
|
149
140
|
/**
|
|
150
141
|
*
|
|
151
|
-
* @type {
|
|
142
|
+
* @type {AuditableEntityModel}
|
|
152
143
|
* @memberof HospitalModel
|
|
153
144
|
*/
|
|
154
|
-
'
|
|
145
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
155
146
|
/**
|
|
156
147
|
*
|
|
157
148
|
* @type {string}
|
|
158
149
|
* @memberof HospitalModel
|
|
159
150
|
*/
|
|
160
|
-
'
|
|
151
|
+
'description'?: string | null;
|
|
161
152
|
/**
|
|
162
153
|
*
|
|
163
154
|
* @type {string}
|
|
164
155
|
* @memberof HospitalModel
|
|
165
156
|
*/
|
|
166
|
-
'
|
|
157
|
+
'overview'?: string | null;
|
|
167
158
|
/**
|
|
168
159
|
*
|
|
169
|
-
* @type {
|
|
160
|
+
* @type {string}
|
|
170
161
|
* @memberof HospitalModel
|
|
171
162
|
*/
|
|
172
|
-
'
|
|
163
|
+
'content'?: string | null;
|
|
173
164
|
/**
|
|
174
165
|
*
|
|
175
|
-
* @type {
|
|
166
|
+
* @type {number}
|
|
176
167
|
* @memberof HospitalModel
|
|
177
168
|
*/
|
|
178
|
-
'
|
|
169
|
+
'bedsCount'?: number | null;
|
|
179
170
|
/**
|
|
180
171
|
*
|
|
181
|
-
* @type {
|
|
172
|
+
* @type {number}
|
|
182
173
|
* @memberof HospitalModel
|
|
183
174
|
*/
|
|
184
|
-
'
|
|
175
|
+
'operationsPerYear'?: number | null;
|
|
185
176
|
/**
|
|
186
177
|
*
|
|
187
|
-
* @type {
|
|
178
|
+
* @type {number}
|
|
188
179
|
* @memberof HospitalModel
|
|
189
180
|
*/
|
|
190
|
-
'
|
|
181
|
+
'foundationYear'?: number | null;
|
|
191
182
|
/**
|
|
192
183
|
*
|
|
193
|
-
* @type {
|
|
184
|
+
* @type {number}
|
|
194
185
|
* @memberof HospitalModel
|
|
195
186
|
*/
|
|
196
|
-
'
|
|
187
|
+
'medicalStaffCount'?: number | null;
|
|
197
188
|
/**
|
|
198
189
|
*
|
|
199
|
-
* @type {
|
|
190
|
+
* @type {number}
|
|
200
191
|
* @memberof HospitalModel
|
|
201
192
|
*/
|
|
202
|
-
'
|
|
193
|
+
'doctorCount'?: number | null;
|
|
203
194
|
/**
|
|
204
195
|
*
|
|
205
|
-
* @type {
|
|
196
|
+
* @type {string}
|
|
206
197
|
* @memberof HospitalModel
|
|
207
198
|
*/
|
|
208
|
-
'
|
|
199
|
+
'contactTel'?: string | null;
|
|
209
200
|
/**
|
|
210
201
|
*
|
|
211
|
-
* @type {
|
|
202
|
+
* @type {string}
|
|
212
203
|
* @memberof HospitalModel
|
|
213
204
|
*/
|
|
214
|
-
'
|
|
205
|
+
'contactEmail'?: string | null;
|
|
215
206
|
/**
|
|
216
207
|
*
|
|
217
208
|
* @type {string}
|
|
218
209
|
* @memberof HospitalModel
|
|
219
210
|
*/
|
|
220
|
-
'
|
|
211
|
+
'customStyle'?: string | null;
|
|
221
212
|
/**
|
|
222
213
|
*
|
|
223
214
|
* @type {string}
|
|
224
215
|
* @memberof HospitalModel
|
|
225
216
|
*/
|
|
226
|
-
'
|
|
217
|
+
'corporateIdentificationNumber'?: string | null;
|
|
227
218
|
/**
|
|
228
219
|
*
|
|
229
220
|
* @type {string}
|
|
230
221
|
* @memberof HospitalModel
|
|
231
222
|
*/
|
|
232
|
-
'
|
|
223
|
+
'gstRegistrationNumber'?: string | null;
|
|
233
224
|
/**
|
|
234
225
|
*
|
|
235
|
-
* @type {
|
|
226
|
+
* @type {string}
|
|
236
227
|
* @memberof HospitalModel
|
|
237
228
|
*/
|
|
238
|
-
'
|
|
229
|
+
'permanentAccountNumber'?: string | null;
|
|
239
230
|
/**
|
|
240
231
|
*
|
|
241
|
-
* @type {
|
|
232
|
+
* @type {string}
|
|
242
233
|
* @memberof HospitalModel
|
|
243
234
|
*/
|
|
244
|
-
'
|
|
235
|
+
'hospitalRegistrationNumber'?: string | null;
|
|
245
236
|
/**
|
|
246
237
|
*
|
|
247
|
-
* @type {
|
|
238
|
+
* @type {Array<HospitalLanguageItemModel>}
|
|
248
239
|
* @memberof HospitalModel
|
|
249
240
|
*/
|
|
250
|
-
'
|
|
241
|
+
'languages'?: Array<HospitalLanguageItemModel> | null;
|
|
251
242
|
/**
|
|
252
243
|
*
|
|
253
|
-
* @type {
|
|
244
|
+
* @type {FeatureModel}
|
|
254
245
|
* @memberof HospitalModel
|
|
255
246
|
*/
|
|
256
|
-
'
|
|
247
|
+
'feature'?: FeatureModel;
|
|
257
248
|
/**
|
|
258
249
|
*
|
|
259
|
-
* @type {
|
|
250
|
+
* @type {Array<MediaModel>}
|
|
260
251
|
* @memberof HospitalModel
|
|
261
252
|
*/
|
|
262
|
-
'
|
|
253
|
+
'medias'?: Array<MediaModel> | null;
|
|
263
254
|
/**
|
|
264
255
|
*
|
|
265
|
-
* @type {
|
|
256
|
+
* @type {LocationModel}
|
|
266
257
|
* @memberof HospitalModel
|
|
267
258
|
*/
|
|
268
|
-
'
|
|
259
|
+
'location'?: LocationModel;
|
|
269
260
|
/**
|
|
270
261
|
*
|
|
271
|
-
* @type {
|
|
262
|
+
* @type {Array<HospitalTagItemModel>}
|
|
272
263
|
* @memberof HospitalModel
|
|
273
264
|
*/
|
|
274
|
-
'
|
|
265
|
+
'tags'?: Array<HospitalTagItemModel> | null;
|
|
275
266
|
/**
|
|
276
267
|
*
|
|
277
|
-
* @type {
|
|
268
|
+
* @type {AppointmentOptionModel}
|
|
278
269
|
* @memberof HospitalModel
|
|
279
270
|
*/
|
|
280
|
-
'
|
|
271
|
+
'appointmentOption'?: AppointmentOptionModel;
|
|
281
272
|
/**
|
|
282
273
|
*
|
|
283
274
|
* @type {string}
|
|
284
275
|
* @memberof HospitalModel
|
|
285
276
|
*/
|
|
286
|
-
'
|
|
277
|
+
'gradeId'?: string | null;
|
|
287
278
|
/**
|
|
288
279
|
*
|
|
289
|
-
* @type {
|
|
280
|
+
* @type {GradeModel}
|
|
290
281
|
* @memberof HospitalModel
|
|
291
282
|
*/
|
|
292
|
-
'
|
|
283
|
+
'grade'?: GradeModel;
|
|
293
284
|
/**
|
|
294
285
|
*
|
|
295
|
-
* @type {
|
|
286
|
+
* @type {boolean}
|
|
296
287
|
* @memberof HospitalModel
|
|
297
288
|
*/
|
|
298
|
-
'
|
|
289
|
+
'paymentEnabled'?: boolean;
|
|
299
290
|
/**
|
|
300
291
|
*
|
|
301
292
|
* @type {string}
|
|
302
293
|
* @memberof HospitalModel
|
|
303
294
|
*/
|
|
304
|
-
'
|
|
305
|
-
/**
|
|
306
|
-
*
|
|
307
|
-
* @type {Array<HospitalLanguageItemModel>}
|
|
308
|
-
* @memberof HospitalModel
|
|
309
|
-
*/
|
|
310
|
-
'languages'?: Array<HospitalLanguageItemModel> | null;
|
|
311
|
-
/**
|
|
312
|
-
*
|
|
313
|
-
* @type {FeatureModel}
|
|
314
|
-
* @memberof HospitalModel
|
|
315
|
-
*/
|
|
316
|
-
'feature'?: FeatureModel;
|
|
295
|
+
'appointmentCurrency'?: string | null;
|
|
317
296
|
/**
|
|
318
297
|
*
|
|
319
|
-
* @type {Array<
|
|
298
|
+
* @type {Array<PaymentMethod>}
|
|
320
299
|
* @memberof HospitalModel
|
|
321
300
|
*/
|
|
322
|
-
'
|
|
301
|
+
'paymentMethods'?: Array<PaymentMethod> | null;
|
|
323
302
|
/**
|
|
324
303
|
*
|
|
325
304
|
* @type {string}
|