ch-admin-api-client-typescript 2.8.0 → 2.8.1

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/src/api.ts CHANGED
@@ -21,6 +21,74 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
21
21
  // @ts-ignore
22
22
  import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from './base';
23
23
 
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface Account
28
+ */
29
+ export interface Account {
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof Account
34
+ */
35
+ 'id'?: string | null;
36
+ /**
37
+ *
38
+ * @type {VendorType}
39
+ * @memberof Account
40
+ */
41
+ 'vendor'?: VendorType;
42
+ /**
43
+ *
44
+ * @type {AuditableEntity}
45
+ * @memberof Account
46
+ */
47
+ 'auditableEntity'?: AuditableEntity;
48
+ }
49
+ /**
50
+ *
51
+ * @export
52
+ * @interface Accreditation
53
+ */
54
+ export interface Accreditation {
55
+ /**
56
+ *
57
+ * @type {string}
58
+ * @memberof Accreditation
59
+ */
60
+ 'id'?: string;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof Accreditation
65
+ */
66
+ 'name'?: string | null;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof Accreditation
71
+ */
72
+ 'normalizedName'?: string | null;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof Accreditation
77
+ */
78
+ 'logo'?: string | null;
79
+ /**
80
+ *
81
+ * @type {string}
82
+ * @memberof Accreditation
83
+ */
84
+ 'country'?: string | null;
85
+ /**
86
+ *
87
+ * @type {Array<HospitalAccreditation>}
88
+ * @memberof Accreditation
89
+ */
90
+ 'accreditations'?: Array<HospitalAccreditation> | null;
91
+ }
24
92
  /**
25
93
  *
26
94
  * @export
@@ -140,6 +208,164 @@ export interface ApproveConsultationCommand {
140
208
  */
141
209
  'confirmedDateEnd'?: Date | null;
142
210
  }
211
+ /**
212
+ *
213
+ * @export
214
+ * @interface Article
215
+ */
216
+ export interface Article {
217
+ /**
218
+ *
219
+ * @type {string}
220
+ * @memberof Article
221
+ */
222
+ 'id'?: string;
223
+ /**
224
+ *
225
+ * @type {string}
226
+ * @memberof Article
227
+ */
228
+ 'title'?: string | null;
229
+ /**
230
+ *
231
+ * @type {string}
232
+ * @memberof Article
233
+ */
234
+ 'normalizedTitle'?: string | null;
235
+ /**
236
+ *
237
+ * @type {string}
238
+ * @memberof Article
239
+ */
240
+ 'description'?: string | null;
241
+ /**
242
+ *
243
+ * @type {string}
244
+ * @memberof Article
245
+ */
246
+ 'body'?: string | null;
247
+ /**
248
+ *
249
+ * @type {ArticleStatus}
250
+ * @memberof Article
251
+ */
252
+ 'status'?: ArticleStatus;
253
+ /**
254
+ *
255
+ * @type {MarketingType}
256
+ * @memberof Article
257
+ */
258
+ 'marketingType'?: MarketingType;
259
+ /**
260
+ *
261
+ * @type {string}
262
+ * @memberof Article
263
+ */
264
+ 'userId'?: string;
265
+ /**
266
+ *
267
+ * @type {User}
268
+ * @memberof Article
269
+ */
270
+ 'user'?: User;
271
+ /**
272
+ *
273
+ * @type {string}
274
+ * @memberof Article
275
+ */
276
+ 'hospitalId'?: string;
277
+ /**
278
+ *
279
+ * @type {Hospital}
280
+ * @memberof Article
281
+ */
282
+ 'hospital'?: Hospital;
283
+ /**
284
+ *
285
+ * @type {string}
286
+ * @memberof Article
287
+ */
288
+ 'youtubeUrl'?: string | null;
289
+ /**
290
+ *
291
+ * @type {Array<ArticleTag>}
292
+ * @memberof Article
293
+ */
294
+ 'articleTags'?: Array<ArticleTag> | null;
295
+ /**
296
+ *
297
+ * @type {Array<ArticleContributor>}
298
+ * @memberof Article
299
+ */
300
+ 'articleContributors'?: Array<ArticleContributor> | null;
301
+ /**
302
+ *
303
+ * @type {Array<Media>}
304
+ * @memberof Article
305
+ */
306
+ 'medias'?: Array<Media> | null;
307
+ /**
308
+ *
309
+ * @type {Array<Source>}
310
+ * @memberof Article
311
+ */
312
+ 'sources'?: Array<Source> | null;
313
+ /**
314
+ *
315
+ * @type {AuditableEntity}
316
+ * @memberof Article
317
+ */
318
+ 'auditableEntity'?: AuditableEntity;
319
+ }
320
+ /**
321
+ *
322
+ * @export
323
+ * @interface ArticleContributor
324
+ */
325
+ export interface ArticleContributor {
326
+ /**
327
+ *
328
+ * @type {string}
329
+ * @memberof ArticleContributor
330
+ */
331
+ 'articleId'?: string;
332
+ /**
333
+ *
334
+ * @type {Article}
335
+ * @memberof ArticleContributor
336
+ */
337
+ 'article'?: Article;
338
+ /**
339
+ *
340
+ * @type {string}
341
+ * @memberof ArticleContributor
342
+ */
343
+ 'contributorId'?: string;
344
+ /**
345
+ *
346
+ * @type {Contributor}
347
+ * @memberof ArticleContributor
348
+ */
349
+ 'contributor'?: Contributor;
350
+ /**
351
+ *
352
+ * @type {ContributionType}
353
+ * @memberof ArticleContributor
354
+ */
355
+ 'type'?: ContributionType;
356
+ /**
357
+ *
358
+ * @type {string}
359
+ * @memberof ArticleContributor
360
+ */
361
+ 'filter'?: string | null;
362
+ /**
363
+ *
364
+ * @type {number}
365
+ * @memberof ArticleContributor
366
+ */
367
+ 'order'?: number;
368
+ }
143
369
  /**
144
370
  *
145
371
  * @export
@@ -608,6 +834,43 @@ export enum ArticleStatus {
608
834
  Archived = 'Archived'
609
835
  }
610
836
 
837
+ /**
838
+ *
839
+ * @export
840
+ * @interface ArticleTag
841
+ */
842
+ export interface ArticleTag {
843
+ /**
844
+ *
845
+ * @type {string}
846
+ * @memberof ArticleTag
847
+ */
848
+ 'articleId'?: string;
849
+ /**
850
+ *
851
+ * @type {Article}
852
+ * @memberof ArticleTag
853
+ */
854
+ 'article'?: Article;
855
+ /**
856
+ *
857
+ * @type {string}
858
+ * @memberof ArticleTag
859
+ */
860
+ 'tagId'?: string | null;
861
+ /**
862
+ *
863
+ * @type {Tag}
864
+ * @memberof ArticleTag
865
+ */
866
+ 'tag'?: Tag;
867
+ /**
868
+ *
869
+ * @type {number}
870
+ * @memberof ArticleTag
871
+ */
872
+ 'order'?: number;
873
+ }
611
874
  /**
612
875
  *
613
876
  * @export
@@ -751,6 +1014,37 @@ export interface AuditableEntity {
751
1014
  */
752
1015
  'isDeleted'?: boolean;
753
1016
  }
1017
+ /**
1018
+ *
1019
+ * @export
1020
+ * @interface Award
1021
+ */
1022
+ export interface Award {
1023
+ /**
1024
+ *
1025
+ * @type {string}
1026
+ * @memberof Award
1027
+ */
1028
+ 'id'?: string;
1029
+ /**
1030
+ *
1031
+ * @type {string}
1032
+ * @memberof Award
1033
+ */
1034
+ 'name'?: string | null;
1035
+ /**
1036
+ *
1037
+ * @type {string}
1038
+ * @memberof Award
1039
+ */
1040
+ 'image'?: string | null;
1041
+ /**
1042
+ *
1043
+ * @type {Date}
1044
+ * @memberof Award
1045
+ */
1046
+ 'date'?: Date;
1047
+ }
754
1048
  /**
755
1049
  *
756
1050
  * @export
@@ -819,6 +1113,199 @@ export interface AzureSearchModel {
819
1113
  */
820
1114
  'specialtyTypes'?: number;
821
1115
  }
1116
+ /**
1117
+ *
1118
+ * @export
1119
+ * @interface Booking
1120
+ */
1121
+ export interface Booking {
1122
+ /**
1123
+ *
1124
+ * @type {string}
1125
+ * @memberof Booking
1126
+ */
1127
+ 'id'?: string;
1128
+ /**
1129
+ *
1130
+ * @type {string}
1131
+ * @memberof Booking
1132
+ */
1133
+ 'patientId'?: string;
1134
+ /**
1135
+ *
1136
+ * @type {Patient}
1137
+ * @memberof Booking
1138
+ */
1139
+ 'patient'?: Patient;
1140
+ /**
1141
+ *
1142
+ * @type {string}
1143
+ * @memberof Booking
1144
+ */
1145
+ 'hospitalId'?: string;
1146
+ /**
1147
+ *
1148
+ * @type {Hospital}
1149
+ * @memberof Booking
1150
+ */
1151
+ 'hospital'?: Hospital;
1152
+ /**
1153
+ *
1154
+ * @type {string}
1155
+ * @memberof Booking
1156
+ */
1157
+ 'dealPackageId'?: string;
1158
+ /**
1159
+ *
1160
+ * @type {DealPackage}
1161
+ * @memberof Booking
1162
+ */
1163
+ 'dealPackage'?: DealPackage;
1164
+ /**
1165
+ *
1166
+ * @type {number}
1167
+ * @memberof Booking
1168
+ */
1169
+ 'quantity'?: number;
1170
+ /**
1171
+ *
1172
+ * @type {string}
1173
+ * @memberof Booking
1174
+ */
1175
+ 'firstName'?: string | null;
1176
+ /**
1177
+ *
1178
+ * @type {string}
1179
+ * @memberof Booking
1180
+ */
1181
+ 'lastName'?: string | null;
1182
+ /**
1183
+ *
1184
+ * @type {string}
1185
+ * @memberof Booking
1186
+ */
1187
+ 'email'?: string | null;
1188
+ /**
1189
+ *
1190
+ * @type {string}
1191
+ * @memberof Booking
1192
+ */
1193
+ 'phone'?: string | null;
1194
+ /**
1195
+ *
1196
+ * @type {Date}
1197
+ * @memberof Booking
1198
+ */
1199
+ 'dateOfBirth'?: Date | null;
1200
+ /**
1201
+ *
1202
+ * @type {Gender}
1203
+ * @memberof Booking
1204
+ */
1205
+ 'gender'?: Gender;
1206
+ /**
1207
+ *
1208
+ * @type {string}
1209
+ * @memberof Booking
1210
+ */
1211
+ 'comment'?: string | null;
1212
+ /**
1213
+ *
1214
+ * @type {Date}
1215
+ * @memberof Booking
1216
+ */
1217
+ 'approximateDateStart'?: Date;
1218
+ /**
1219
+ *
1220
+ * @type {Date}
1221
+ * @memberof Booking
1222
+ */
1223
+ 'approximateDateEnd'?: Date;
1224
+ /**
1225
+ *
1226
+ * @type {Date}
1227
+ * @memberof Booking
1228
+ */
1229
+ 'confirmedDateStart'?: Date | null;
1230
+ /**
1231
+ *
1232
+ * @type {Date}
1233
+ * @memberof Booking
1234
+ */
1235
+ 'confirmedDateEnd'?: Date | null;
1236
+ /**
1237
+ *
1238
+ * @type {number}
1239
+ * @memberof Booking
1240
+ */
1241
+ 'fee'?: number;
1242
+ /**
1243
+ *
1244
+ * @type {number}
1245
+ * @memberof Booking
1246
+ */
1247
+ 'applicationFee'?: number;
1248
+ /**
1249
+ *
1250
+ * @type {BookingStatus}
1251
+ * @memberof Booking
1252
+ */
1253
+ 'status'?: BookingStatus;
1254
+ /**
1255
+ *
1256
+ * @type {RejectReason}
1257
+ * @memberof Booking
1258
+ */
1259
+ 'rejectReason'?: RejectReason;
1260
+ /**
1261
+ *
1262
+ * @type {string}
1263
+ * @memberof Booking
1264
+ */
1265
+ 'rejectComment'?: string | null;
1266
+ /**
1267
+ *
1268
+ * @type {boolean}
1269
+ * @memberof Booking
1270
+ */
1271
+ 'isOpen'?: boolean;
1272
+ /**
1273
+ *
1274
+ * @type {string}
1275
+ * @memberof Booking
1276
+ */
1277
+ 'paymentId'?: string | null;
1278
+ /**
1279
+ *
1280
+ * @type {Payment}
1281
+ * @memberof Booking
1282
+ */
1283
+ 'payment'?: Payment;
1284
+ /**
1285
+ *
1286
+ * @type {string}
1287
+ * @memberof Booking
1288
+ */
1289
+ 'timeZone'?: string | null;
1290
+ /**
1291
+ *
1292
+ * @type {Array<ChangeLog>}
1293
+ * @memberof Booking
1294
+ */
1295
+ 'statusChangeLogs'?: Array<ChangeLog> | null;
1296
+ /**
1297
+ *
1298
+ * @type {Array<Media>}
1299
+ * @memberof Booking
1300
+ */
1301
+ 'medias'?: Array<Media> | null;
1302
+ /**
1303
+ *
1304
+ * @type {AuditableEntity}
1305
+ * @memberof Booking
1306
+ */
1307
+ 'auditableEntity'?: AuditableEntity;
1308
+ }
822
1309
  /**
823
1310
  *
824
1311
  * @export
@@ -1740,6 +2227,49 @@ export interface ChangeEmailCommand {
1740
2227
  */
1741
2228
  'email'?: string | null;
1742
2229
  }
2230
+ /**
2231
+ *
2232
+ * @export
2233
+ * @interface ChangeLog
2234
+ */
2235
+ export interface ChangeLog {
2236
+ /**
2237
+ *
2238
+ * @type {string}
2239
+ * @memberof ChangeLog
2240
+ */
2241
+ 'id'?: string;
2242
+ /**
2243
+ *
2244
+ * @type {number}
2245
+ * @memberof ChangeLog
2246
+ */
2247
+ 'status'?: number;
2248
+ /**
2249
+ *
2250
+ * @type {string}
2251
+ * @memberof ChangeLog
2252
+ */
2253
+ 'actorId'?: string;
2254
+ /**
2255
+ *
2256
+ * @type {Date}
2257
+ * @memberof ChangeLog
2258
+ */
2259
+ 'createdDate'?: Date;
2260
+ }
2261
+ /**
2262
+ *
2263
+ * @export
2264
+ * @enum {string}
2265
+ */
2266
+
2267
+ export enum ChargeStatus {
2268
+ Pending = 'Pending',
2269
+ Succeeded = 'Succeeded',
2270
+ Failed = 'Failed'
2271
+ }
2272
+
1743
2273
  /**
1744
2274
  *
1745
2275
  * @export
@@ -1883,6 +2413,247 @@ export interface ConfirmEmailCommand {
1883
2413
  */
1884
2414
  'code'?: string | null;
1885
2415
  }
2416
+ /**
2417
+ *
2418
+ * @export
2419
+ * @interface Consultation
2420
+ */
2421
+ export interface Consultation {
2422
+ /**
2423
+ *
2424
+ * @type {string}
2425
+ * @memberof Consultation
2426
+ */
2427
+ 'id'?: string;
2428
+ /**
2429
+ *
2430
+ * @type {ConsultationType}
2431
+ * @memberof Consultation
2432
+ */
2433
+ 'consultationType'?: ConsultationType;
2434
+ /**
2435
+ *
2436
+ * @type {string}
2437
+ * @memberof Consultation
2438
+ */
2439
+ 'patientId'?: string;
2440
+ /**
2441
+ *
2442
+ * @type {Patient}
2443
+ * @memberof Consultation
2444
+ */
2445
+ 'patient'?: Patient;
2446
+ /**
2447
+ *
2448
+ * @type {string}
2449
+ * @memberof Consultation
2450
+ */
2451
+ 'hospitalId'?: string;
2452
+ /**
2453
+ *
2454
+ * @type {Hospital}
2455
+ * @memberof Consultation
2456
+ */
2457
+ 'hospital'?: Hospital;
2458
+ /**
2459
+ *
2460
+ * @type {string}
2461
+ * @memberof Consultation
2462
+ */
2463
+ 'specialtyId'?: string | null;
2464
+ /**
2465
+ *
2466
+ * @type {Specialty}
2467
+ * @memberof Consultation
2468
+ */
2469
+ 'specialty'?: Specialty;
2470
+ /**
2471
+ *
2472
+ * @type {string}
2473
+ * @memberof Consultation
2474
+ */
2475
+ 'doctorId'?: string | null;
2476
+ /**
2477
+ *
2478
+ * @type {Doctor}
2479
+ * @memberof Consultation
2480
+ */
2481
+ 'doctor'?: Doctor;
2482
+ /**
2483
+ *
2484
+ * @type {string}
2485
+ * @memberof Consultation
2486
+ */
2487
+ 'dealId'?: string | null;
2488
+ /**
2489
+ *
2490
+ * @type {Deal}
2491
+ * @memberof Consultation
2492
+ */
2493
+ 'deal'?: Deal;
2494
+ /**
2495
+ *
2496
+ * @type {string}
2497
+ * @memberof Consultation
2498
+ */
2499
+ 'language'?: string | null;
2500
+ /**
2501
+ *
2502
+ * @type {boolean}
2503
+ * @memberof Consultation
2504
+ */
2505
+ 'isAccountHolder'?: boolean;
2506
+ /**
2507
+ *
2508
+ * @type {string}
2509
+ * @memberof Consultation
2510
+ */
2511
+ 'firstName'?: string | null;
2512
+ /**
2513
+ *
2514
+ * @type {string}
2515
+ * @memberof Consultation
2516
+ */
2517
+ 'lastName'?: string | null;
2518
+ /**
2519
+ *
2520
+ * @type {string}
2521
+ * @memberof Consultation
2522
+ */
2523
+ 'email'?: string | null;
2524
+ /**
2525
+ *
2526
+ * @type {string}
2527
+ * @memberof Consultation
2528
+ */
2529
+ 'phone'?: string | null;
2530
+ /**
2531
+ *
2532
+ * @type {Date}
2533
+ * @memberof Consultation
2534
+ */
2535
+ 'dateOfBirth'?: Date | null;
2536
+ /**
2537
+ *
2538
+ * @type {Gender}
2539
+ * @memberof Consultation
2540
+ */
2541
+ 'gender'?: Gender;
2542
+ /**
2543
+ *
2544
+ * @type {string}
2545
+ * @memberof Consultation
2546
+ */
2547
+ 'comment'?: string | null;
2548
+ /**
2549
+ *
2550
+ * @type {Date}
2551
+ * @memberof Consultation
2552
+ */
2553
+ 'approximateDateStart'?: Date;
2554
+ /**
2555
+ *
2556
+ * @type {Date}
2557
+ * @memberof Consultation
2558
+ */
2559
+ 'approximateDateEnd'?: Date;
2560
+ /**
2561
+ *
2562
+ * @type {Date}
2563
+ * @memberof Consultation
2564
+ */
2565
+ 'confirmedDateStart'?: Date | null;
2566
+ /**
2567
+ *
2568
+ * @type {Date}
2569
+ * @memberof Consultation
2570
+ */
2571
+ 'confirmedDateEnd'?: Date | null;
2572
+ /**
2573
+ *
2574
+ * @type {User}
2575
+ * @memberof Consultation
2576
+ */
2577
+ 'caller'?: User;
2578
+ /**
2579
+ *
2580
+ * @type {string}
2581
+ * @memberof Consultation
2582
+ */
2583
+ 'callerId'?: string | null;
2584
+ /**
2585
+ *
2586
+ * @type {number}
2587
+ * @memberof Consultation
2588
+ */
2589
+ 'fee'?: number;
2590
+ /**
2591
+ *
2592
+ * @type {number}
2593
+ * @memberof Consultation
2594
+ */
2595
+ 'applicationFee'?: number;
2596
+ /**
2597
+ *
2598
+ * @type {ConsultationStatus}
2599
+ * @memberof Consultation
2600
+ */
2601
+ 'status'?: ConsultationStatus;
2602
+ /**
2603
+ *
2604
+ * @type {RejectReason}
2605
+ * @memberof Consultation
2606
+ */
2607
+ 'rejectReason'?: RejectReason;
2608
+ /**
2609
+ *
2610
+ * @type {string}
2611
+ * @memberof Consultation
2612
+ */
2613
+ 'rejectComment'?: string | null;
2614
+ /**
2615
+ *
2616
+ * @type {boolean}
2617
+ * @memberof Consultation
2618
+ */
2619
+ 'isOpen'?: boolean;
2620
+ /**
2621
+ *
2622
+ * @type {string}
2623
+ * @memberof Consultation
2624
+ */
2625
+ 'paymentId'?: string | null;
2626
+ /**
2627
+ *
2628
+ * @type {Payment}
2629
+ * @memberof Consultation
2630
+ */
2631
+ 'payment'?: Payment;
2632
+ /**
2633
+ *
2634
+ * @type {string}
2635
+ * @memberof Consultation
2636
+ */
2637
+ 'timeZone'?: string | null;
2638
+ /**
2639
+ *
2640
+ * @type {Array<ChangeLog>}
2641
+ * @memberof Consultation
2642
+ */
2643
+ 'statusChangeLogs'?: Array<ChangeLog> | null;
2644
+ /**
2645
+ *
2646
+ * @type {Array<Media>}
2647
+ * @memberof Consultation
2648
+ */
2649
+ 'medias'?: Array<Media> | null;
2650
+ /**
2651
+ *
2652
+ * @type {AuditableEntity}
2653
+ * @memberof Consultation
2654
+ */
2655
+ 'auditableEntity'?: AuditableEntity;
2656
+ }
1886
2657
  /**
1887
2658
  *
1888
2659
  * @export
@@ -2497,6 +3268,91 @@ export enum ContributionType {
2497
3268
  InterviewWith = 'InterviewWith'
2498
3269
  }
2499
3270
 
3271
+ /**
3272
+ *
3273
+ * @export
3274
+ * @interface Contributor
3275
+ */
3276
+ export interface Contributor {
3277
+ /**
3278
+ *
3279
+ * @type {string}
3280
+ * @memberof Contributor
3281
+ */
3282
+ 'id'?: string;
3283
+ /**
3284
+ *
3285
+ * @type {string}
3286
+ * @memberof Contributor
3287
+ */
3288
+ 'name'?: string | null;
3289
+ /**
3290
+ *
3291
+ * @type {string}
3292
+ * @memberof Contributor
3293
+ */
3294
+ 'email'?: string | null;
3295
+ /**
3296
+ *
3297
+ * @type {string}
3298
+ * @memberof Contributor
3299
+ */
3300
+ 'photo'?: string | null;
3301
+ /**
3302
+ *
3303
+ * @type {string}
3304
+ * @memberof Contributor
3305
+ */
3306
+ 'photoThumbnail'?: string | null;
3307
+ /**
3308
+ *
3309
+ * @type {string}
3310
+ * @memberof Contributor
3311
+ */
3312
+ 'description'?: string | null;
3313
+ /**
3314
+ *
3315
+ * @type {string}
3316
+ * @memberof Contributor
3317
+ */
3318
+ 'website'?: string | null;
3319
+ /**
3320
+ *
3321
+ * @type {string}
3322
+ * @memberof Contributor
3323
+ */
3324
+ 'hospitalId'?: string | null;
3325
+ /**
3326
+ *
3327
+ * @type {Hospital}
3328
+ * @memberof Contributor
3329
+ */
3330
+ 'hospital'?: Hospital;
3331
+ /**
3332
+ *
3333
+ * @type {number}
3334
+ * @memberof Contributor
3335
+ */
3336
+ 'order'?: number;
3337
+ /**
3338
+ *
3339
+ * @type {Array<ArticleContributor>}
3340
+ * @memberof Contributor
3341
+ */
3342
+ 'articleContributors'?: Array<ArticleContributor> | null;
3343
+ /**
3344
+ *
3345
+ * @type {Array<SnsHandle>}
3346
+ * @memberof Contributor
3347
+ */
3348
+ 'snsHandles'?: Array<SnsHandle> | null;
3349
+ /**
3350
+ *
3351
+ * @type {AuditableEntity}
3352
+ * @memberof Contributor
3353
+ */
3354
+ 'auditableEntity'?: AuditableEntity;
3355
+ }
2500
3356
  /**
2501
3357
  *
2502
3358
  * @export
@@ -2730,6 +3586,67 @@ export interface CountriesModel {
2730
3586
  */
2731
3587
  'metaData'?: PagedListMetaData;
2732
3588
  }
3589
+ /**
3590
+ *
3591
+ * @export
3592
+ * @interface Country
3593
+ */
3594
+ export interface Country {
3595
+ /**
3596
+ *
3597
+ * @type {string}
3598
+ * @memberof Country
3599
+ */
3600
+ 'id'?: string;
3601
+ /**
3602
+ *
3603
+ * @type {string}
3604
+ * @memberof Country
3605
+ */
3606
+ 'name'?: string | null;
3607
+ /**
3608
+ *
3609
+ * @type {string}
3610
+ * @memberof Country
3611
+ */
3612
+ 'normalizedName'?: string | null;
3613
+ /**
3614
+ *
3615
+ * @type {string}
3616
+ * @memberof Country
3617
+ */
3618
+ 'logo'?: string | null;
3619
+ /**
3620
+ *
3621
+ * @type {string}
3622
+ * @memberof Country
3623
+ */
3624
+ 'description'?: string | null;
3625
+ /**
3626
+ *
3627
+ * @type {string}
3628
+ * @memberof Country
3629
+ */
3630
+ 'content'?: string | null;
3631
+ /**
3632
+ *
3633
+ * @type {Array<Hospital>}
3634
+ * @memberof Country
3635
+ */
3636
+ 'hospitals'?: Array<Hospital> | null;
3637
+ /**
3638
+ *
3639
+ * @type {Array<Media>}
3640
+ * @memberof Country
3641
+ */
3642
+ 'medias'?: Array<Media> | null;
3643
+ /**
3644
+ *
3645
+ * @type {AuditableEntity}
3646
+ * @memberof Country
3647
+ */
3648
+ 'auditableEntity'?: AuditableEntity;
3649
+ }
2733
3650
  /**
2734
3651
  *
2735
3652
  * @export
@@ -4501,6 +5418,128 @@ export interface CreateTemplateVersionCommand {
4501
5418
  */
4502
5419
  'htmlContent'?: string | null;
4503
5420
  }
5421
+ /**
5422
+ *
5423
+ * @export
5424
+ * @interface Customer
5425
+ */
5426
+ export interface Customer {
5427
+ /**
5428
+ *
5429
+ * @type {string}
5430
+ * @memberof Customer
5431
+ */
5432
+ 'id'?: string | null;
5433
+ /**
5434
+ *
5435
+ * @type {VendorType}
5436
+ * @memberof Customer
5437
+ */
5438
+ 'vendor'?: VendorType;
5439
+ /**
5440
+ *
5441
+ * @type {string}
5442
+ * @memberof Customer
5443
+ */
5444
+ 'patientId'?: string;
5445
+ /**
5446
+ *
5447
+ * @type {Patient}
5448
+ * @memberof Customer
5449
+ */
5450
+ 'patient'?: Patient;
5451
+ /**
5452
+ *
5453
+ * @type {Array<Payment>}
5454
+ * @memberof Customer
5455
+ */
5456
+ 'payments'?: Array<Payment> | null;
5457
+ /**
5458
+ *
5459
+ * @type {AuditableEntity}
5460
+ * @memberof Customer
5461
+ */
5462
+ 'auditableEntity'?: AuditableEntity;
5463
+ }
5464
+ /**
5465
+ *
5466
+ * @export
5467
+ * @interface Deal
5468
+ */
5469
+ export interface Deal {
5470
+ /**
5471
+ *
5472
+ * @type {string}
5473
+ * @memberof Deal
5474
+ */
5475
+ 'id'?: string;
5476
+ /**
5477
+ *
5478
+ * @type {string}
5479
+ * @memberof Deal
5480
+ */
5481
+ 'name'?: string | null;
5482
+ /**
5483
+ *
5484
+ * @type {string}
5485
+ * @memberof Deal
5486
+ */
5487
+ 'normalizedName'?: string | null;
5488
+ /**
5489
+ *
5490
+ * @type {string}
5491
+ * @memberof Deal
5492
+ */
5493
+ 'description'?: string | null;
5494
+ /**
5495
+ *
5496
+ * @type {string}
5497
+ * @memberof Deal
5498
+ */
5499
+ 'hospitalId'?: string;
5500
+ /**
5501
+ *
5502
+ * @type {Hospital}
5503
+ * @memberof Deal
5504
+ */
5505
+ 'hospital'?: Hospital;
5506
+ /**
5507
+ *
5508
+ * @type {MarketingType}
5509
+ * @memberof Deal
5510
+ */
5511
+ 'marketingType'?: MarketingType;
5512
+ /**
5513
+ *
5514
+ * @type {string}
5515
+ * @memberof Deal
5516
+ */
5517
+ 'photo'?: string | null;
5518
+ /**
5519
+ *
5520
+ * @type {string}
5521
+ * @memberof Deal
5522
+ */
5523
+ 'photoThumbnail'?: string | null;
5524
+ /**
5525
+ *
5526
+ * @type {Array<DealPackage>}
5527
+ * @memberof Deal
5528
+ */
5529
+ 'dealPackages'?: Array<DealPackage> | null;
5530
+ /**
5531
+ *
5532
+ * @type {Array<DealService>}
5533
+ * @memberof Deal
5534
+ */
5535
+ 'dealServices'?: Array<DealService> | null;
5536
+ /**
5537
+ *
5538
+ * @type {AuditableEntity}
5539
+ * @memberof Deal
5540
+ */
5541
+ 'auditableEntity'?: AuditableEntity;
5542
+ }
4504
5543
  /**
4505
5544
  *
4506
5545
  * @export
@@ -4761,6 +5800,91 @@ export interface DealModel {
4761
5800
  */
4762
5801
  'languageCode'?: string | null;
4763
5802
  }
5803
+ /**
5804
+ *
5805
+ * @export
5806
+ * @interface DealPackage
5807
+ */
5808
+ export interface DealPackage {
5809
+ /**
5810
+ *
5811
+ * @type {string}
5812
+ * @memberof DealPackage
5813
+ */
5814
+ 'id'?: string;
5815
+ /**
5816
+ *
5817
+ * @type {string}
5818
+ * @memberof DealPackage
5819
+ */
5820
+ 'dealId'?: string;
5821
+ /**
5822
+ *
5823
+ * @type {Deal}
5824
+ * @memberof DealPackage
5825
+ */
5826
+ 'deal'?: Deal;
5827
+ /**
5828
+ *
5829
+ * @type {RefundPolicy}
5830
+ * @memberof DealPackage
5831
+ */
5832
+ 'refundPolicy'?: RefundPolicy;
5833
+ /**
5834
+ *
5835
+ * @type {string}
5836
+ * @memberof DealPackage
5837
+ */
5838
+ 'additionalServices'?: string | null;
5839
+ /**
5840
+ *
5841
+ * @type {string}
5842
+ * @memberof DealPackage
5843
+ */
5844
+ 'accomodation'?: string | null;
5845
+ /**
5846
+ *
5847
+ * @type {string}
5848
+ * @memberof DealPackage
5849
+ */
5850
+ 'transfer'?: string | null;
5851
+ /**
5852
+ *
5853
+ * @type {string}
5854
+ * @memberof DealPackage
5855
+ */
5856
+ 'bonus'?: string | null;
5857
+ /**
5858
+ *
5859
+ * @type {number}
5860
+ * @memberof DealPackage
5861
+ */
5862
+ 'price'?: number;
5863
+ /**
5864
+ *
5865
+ * @type {Array<Manager>}
5866
+ * @memberof DealPackage
5867
+ */
5868
+ 'managers'?: Array<Manager> | null;
5869
+ /**
5870
+ *
5871
+ * @type {Array<Question>}
5872
+ * @memberof DealPackage
5873
+ */
5874
+ 'questions'?: Array<Question> | null;
5875
+ /**
5876
+ *
5877
+ * @type {Array<Booking>}
5878
+ * @memberof DealPackage
5879
+ */
5880
+ 'bookings'?: Array<Booking> | null;
5881
+ /**
5882
+ *
5883
+ * @type {AuditableEntity}
5884
+ * @memberof DealPackage
5885
+ */
5886
+ 'auditableEntity'?: AuditableEntity;
5887
+ }
4764
5888
  /**
4765
5889
  *
4766
5890
  * @export
@@ -4938,6 +6062,43 @@ export interface DealPackagesModel {
4938
6062
  */
4939
6063
  'metaData'?: PagedListMetaData;
4940
6064
  }
6065
+ /**
6066
+ *
6067
+ * @export
6068
+ * @interface DealService
6069
+ */
6070
+ export interface DealService {
6071
+ /**
6072
+ *
6073
+ * @type {string}
6074
+ * @memberof DealService
6075
+ */
6076
+ 'dealId'?: string;
6077
+ /**
6078
+ *
6079
+ * @type {Deal}
6080
+ * @memberof DealService
6081
+ */
6082
+ 'deal'?: Deal;
6083
+ /**
6084
+ *
6085
+ * @type {string}
6086
+ * @memberof DealService
6087
+ */
6088
+ 'serviceId'?: string;
6089
+ /**
6090
+ *
6091
+ * @type {Service}
6092
+ * @memberof DealService
6093
+ */
6094
+ 'service'?: Service;
6095
+ /**
6096
+ *
6097
+ * @type {number}
6098
+ * @memberof DealService
6099
+ */
6100
+ 'order'?: number;
6101
+ }
4941
6102
  /**
4942
6103
  *
4943
6104
  * @export
@@ -5063,6 +6224,395 @@ export interface DeleteArticleTagCommand {
5063
6224
  */
5064
6225
  'tagId'?: string | null;
5065
6226
  }
6227
+ /**
6228
+ *
6229
+ * @export
6230
+ * @interface Department
6231
+ */
6232
+ export interface Department {
6233
+ /**
6234
+ *
6235
+ * @type {string}
6236
+ * @memberof Department
6237
+ */
6238
+ 'id'?: string;
6239
+ /**
6240
+ *
6241
+ * @type {string}
6242
+ * @memberof Department
6243
+ */
6244
+ 'hospitalId'?: string;
6245
+ /**
6246
+ *
6247
+ * @type {Hospital}
6248
+ * @memberof Department
6249
+ */
6250
+ 'hospital'?: Hospital;
6251
+ /**
6252
+ *
6253
+ * @type {string}
6254
+ * @memberof Department
6255
+ */
6256
+ 'name'?: string | null;
6257
+ /**
6258
+ *
6259
+ * @type {string}
6260
+ * @memberof Department
6261
+ */
6262
+ 'normalizedName'?: string | null;
6263
+ /**
6264
+ *
6265
+ * @type {string}
6266
+ * @memberof Department
6267
+ */
6268
+ 'additionalInfo'?: string | null;
6269
+ }
6270
+ /**
6271
+ *
6272
+ * @export
6273
+ * @interface Device
6274
+ */
6275
+ export interface Device {
6276
+ /**
6277
+ *
6278
+ * @type {string}
6279
+ * @memberof Device
6280
+ */
6281
+ 'id'?: string;
6282
+ /**
6283
+ *
6284
+ * @type {string}
6285
+ * @memberof Device
6286
+ */
6287
+ 'token'?: string | null;
6288
+ /**
6289
+ *
6290
+ * @type {Platform}
6291
+ * @memberof Device
6292
+ */
6293
+ 'platform'?: Platform;
6294
+ /**
6295
+ *
6296
+ * @type {boolean}
6297
+ * @memberof Device
6298
+ */
6299
+ 'appAlert'?: boolean;
6300
+ /**
6301
+ *
6302
+ * @type {boolean}
6303
+ * @memberof Device
6304
+ */
6305
+ 'eventAlert'?: boolean;
6306
+ /**
6307
+ *
6308
+ * @type {boolean}
6309
+ * @memberof Device
6310
+ */
6311
+ 'noticeAlert'?: boolean;
6312
+ /**
6313
+ *
6314
+ * @type {string}
6315
+ * @memberof Device
6316
+ */
6317
+ 'userId'?: string;
6318
+ /**
6319
+ *
6320
+ * @type {User}
6321
+ * @memberof Device
6322
+ */
6323
+ 'user'?: User;
6324
+ /**
6325
+ *
6326
+ * @type {Array<DeviceLogin>}
6327
+ * @memberof Device
6328
+ */
6329
+ 'deviceLogins'?: Array<DeviceLogin> | null;
6330
+ /**
6331
+ *
6332
+ * @type {AuditableEntity}
6333
+ * @memberof Device
6334
+ */
6335
+ 'auditableEntity'?: AuditableEntity;
6336
+ }
6337
+ /**
6338
+ *
6339
+ * @export
6340
+ * @interface DeviceLogin
6341
+ */
6342
+ export interface DeviceLogin {
6343
+ /**
6344
+ *
6345
+ * @type {string}
6346
+ * @memberof DeviceLogin
6347
+ */
6348
+ 'id'?: string;
6349
+ /**
6350
+ *
6351
+ * @type {string}
6352
+ * @memberof DeviceLogin
6353
+ */
6354
+ 'deviceId'?: string;
6355
+ /**
6356
+ *
6357
+ * @type {Device}
6358
+ * @memberof DeviceLogin
6359
+ */
6360
+ 'device'?: Device;
6361
+ /**
6362
+ *
6363
+ * @type {string}
6364
+ * @memberof DeviceLogin
6365
+ */
6366
+ 'version'?: string | null;
6367
+ /**
6368
+ *
6369
+ * @type {Location}
6370
+ * @memberof DeviceLogin
6371
+ */
6372
+ 'location'?: Location;
6373
+ /**
6374
+ *
6375
+ * @type {AuditableEntity}
6376
+ * @memberof DeviceLogin
6377
+ */
6378
+ 'auditableEntity'?: AuditableEntity;
6379
+ }
6380
+ /**
6381
+ *
6382
+ * @export
6383
+ * @interface Doctor
6384
+ */
6385
+ export interface Doctor {
6386
+ /**
6387
+ *
6388
+ * @type {string}
6389
+ * @memberof Doctor
6390
+ */
6391
+ 'id'?: string;
6392
+ /**
6393
+ *
6394
+ * @type {string}
6395
+ * @memberof Doctor
6396
+ */
6397
+ 'userName'?: string | null;
6398
+ /**
6399
+ *
6400
+ * @type {string}
6401
+ * @memberof Doctor
6402
+ */
6403
+ 'email'?: string | null;
6404
+ /**
6405
+ *
6406
+ * @type {string}
6407
+ * @memberof Doctor
6408
+ */
6409
+ 'firstName'?: string | null;
6410
+ /**
6411
+ *
6412
+ * @type {string}
6413
+ * @memberof Doctor
6414
+ */
6415
+ 'lastName'?: string | null;
6416
+ /**
6417
+ *
6418
+ * @type {string}
6419
+ * @memberof Doctor
6420
+ */
6421
+ 'normalizedName'?: string | null;
6422
+ /**
6423
+ *
6424
+ * @type {string}
6425
+ * @memberof Doctor
6426
+ */
6427
+ 'phone'?: string | null;
6428
+ /**
6429
+ *
6430
+ * @type {string}
6431
+ * @memberof Doctor
6432
+ */
6433
+ 'photo'?: string | null;
6434
+ /**
6435
+ *
6436
+ * @type {string}
6437
+ * @memberof Doctor
6438
+ */
6439
+ 'photoThumbnail'?: string | null;
6440
+ /**
6441
+ *
6442
+ * @type {Gender}
6443
+ * @memberof Doctor
6444
+ */
6445
+ 'gender'?: Gender;
6446
+ /**
6447
+ *
6448
+ * @type {Date}
6449
+ * @memberof Doctor
6450
+ */
6451
+ 'dateOfBirth'?: Date | null;
6452
+ /**
6453
+ *
6454
+ * @type {string}
6455
+ * @memberof Doctor
6456
+ */
6457
+ 'timeZone'?: string | null;
6458
+ /**
6459
+ *
6460
+ * @type {string}
6461
+ * @memberof Doctor
6462
+ */
6463
+ 'communicationUserId'?: string | null;
6464
+ /**
6465
+ *
6466
+ * @type {string}
6467
+ * @memberof Doctor
6468
+ */
6469
+ 'fullName'?: string | null;
6470
+ /**
6471
+ *
6472
+ * @type {Array<Device>}
6473
+ * @memberof Doctor
6474
+ */
6475
+ 'devices'?: Array<Device> | null;
6476
+ /**
6477
+ *
6478
+ * @type {Array<Article>}
6479
+ * @memberof Doctor
6480
+ */
6481
+ 'articles'?: Array<Article> | null;
6482
+ /**
6483
+ *
6484
+ * @type {Array<QuestionComment>}
6485
+ * @memberof Doctor
6486
+ */
6487
+ 'questionComments'?: Array<QuestionComment> | null;
6488
+ /**
6489
+ *
6490
+ * @type {Array<UserLocation>}
6491
+ * @memberof Doctor
6492
+ */
6493
+ 'locations'?: Array<UserLocation> | null;
6494
+ /**
6495
+ *
6496
+ * @type {Array<UserLanguage>}
6497
+ * @memberof Doctor
6498
+ */
6499
+ 'languages'?: Array<UserLanguage> | null;
6500
+ /**
6501
+ *
6502
+ * @type {AuditableEntity}
6503
+ * @memberof Doctor
6504
+ */
6505
+ 'auditableEntity'?: AuditableEntity;
6506
+ /**
6507
+ *
6508
+ * @type {Date}
6509
+ * @memberof Doctor
6510
+ */
6511
+ 'startPracticeDate'?: Date | null;
6512
+ /**
6513
+ *
6514
+ * @type {string}
6515
+ * @memberof Doctor
6516
+ */
6517
+ 'overview'?: string | null;
6518
+ /**
6519
+ *
6520
+ * @type {boolean}
6521
+ * @memberof Doctor
6522
+ */
6523
+ 'consultationEnabled'?: boolean | null;
6524
+ /**
6525
+ *
6526
+ * @type {number}
6527
+ * @memberof Doctor
6528
+ */
6529
+ 'consultationFee'?: number | null;
6530
+ /**
6531
+ *
6532
+ * @type {Array<DoctorReview>}
6533
+ * @memberof Doctor
6534
+ */
6535
+ 'doctorReviews'?: Array<DoctorReview> | null;
6536
+ /**
6537
+ *
6538
+ * @type {Array<DoctorEducation>}
6539
+ * @memberof Doctor
6540
+ */
6541
+ 'doctorEducations'?: Array<DoctorEducation> | null;
6542
+ /**
6543
+ *
6544
+ * @type {Array<DoctorPortfolio>}
6545
+ * @memberof Doctor
6546
+ */
6547
+ 'doctorPortfolios'?: Array<DoctorPortfolio> | null;
6548
+ /**
6549
+ *
6550
+ * @type {Array<DoctorSpecialty>}
6551
+ * @memberof Doctor
6552
+ */
6553
+ 'doctorSpecialties'?: Array<DoctorSpecialty> | null;
6554
+ /**
6555
+ *
6556
+ * @type {Array<DoctorCertificate>}
6557
+ * @memberof Doctor
6558
+ */
6559
+ 'doctorCertificates'?: Array<DoctorCertificate> | null;
6560
+ /**
6561
+ *
6562
+ * @type {Array<DoctorAffiliation>}
6563
+ * @memberof Doctor
6564
+ */
6565
+ 'doctorAffiliations'?: Array<DoctorAffiliation> | null;
6566
+ /**
6567
+ *
6568
+ * @type {Array<Award>}
6569
+ * @memberof Doctor
6570
+ */
6571
+ 'awards'?: Array<Award> | null;
6572
+ /**
6573
+ *
6574
+ * @type {Array<Media>}
6575
+ * @memberof Doctor
6576
+ */
6577
+ 'medias'?: Array<Media> | null;
6578
+ }
6579
+ /**
6580
+ *
6581
+ * @export
6582
+ * @interface DoctorAffiliation
6583
+ */
6584
+ export interface DoctorAffiliation {
6585
+ /**
6586
+ *
6587
+ * @type {string}
6588
+ * @memberof DoctorAffiliation
6589
+ */
6590
+ 'doctorId'?: string;
6591
+ /**
6592
+ *
6593
+ * @type {Doctor}
6594
+ * @memberof DoctorAffiliation
6595
+ */
6596
+ 'doctor'?: Doctor;
6597
+ /**
6598
+ *
6599
+ * @type {string}
6600
+ * @memberof DoctorAffiliation
6601
+ */
6602
+ 'hospitalId'?: string;
6603
+ /**
6604
+ *
6605
+ * @type {Hospital}
6606
+ * @memberof DoctorAffiliation
6607
+ */
6608
+ 'hospital'?: Hospital;
6609
+ /**
6610
+ *
6611
+ * @type {number}
6612
+ * @memberof DoctorAffiliation
6613
+ */
6614
+ 'order'?: number;
6615
+ }
5066
6616
  /**
5067
6617
  *
5068
6618
  * @export
@@ -5132,6 +6682,55 @@ export interface DoctorAffiliationsModel {
5132
6682
  */
5133
6683
  'metaData'?: PagedListMetaData;
5134
6684
  }
6685
+ /**
6686
+ *
6687
+ * @export
6688
+ * @interface DoctorCertificate
6689
+ */
6690
+ export interface DoctorCertificate {
6691
+ /**
6692
+ *
6693
+ * @type {string}
6694
+ * @memberof DoctorCertificate
6695
+ */
6696
+ 'id'?: string;
6697
+ /**
6698
+ *
6699
+ * @type {string}
6700
+ * @memberof DoctorCertificate
6701
+ */
6702
+ 'doctorId'?: string;
6703
+ /**
6704
+ *
6705
+ * @type {Doctor}
6706
+ * @memberof DoctorCertificate
6707
+ */
6708
+ 'doctor'?: Doctor;
6709
+ /**
6710
+ *
6711
+ * @type {string}
6712
+ * @memberof DoctorCertificate
6713
+ */
6714
+ 'certificate'?: string | null;
6715
+ /**
6716
+ *
6717
+ * @type {string}
6718
+ * @memberof DoctorCertificate
6719
+ */
6720
+ 'normalizedCertificate'?: string | null;
6721
+ /**
6722
+ *
6723
+ * @type {Date}
6724
+ * @memberof DoctorCertificate
6725
+ */
6726
+ 'activeFrom'?: Date | null;
6727
+ /**
6728
+ *
6729
+ * @type {Date}
6730
+ * @memberof DoctorCertificate
6731
+ */
6732
+ 'activeTo'?: Date | null;
6733
+ }
5135
6734
  /**
5136
6735
  *
5137
6736
  * @export
@@ -5237,6 +6836,61 @@ export interface DoctorCertificatesModel {
5237
6836
  */
5238
6837
  'metaData'?: PagedListMetaData;
5239
6838
  }
6839
+ /**
6840
+ *
6841
+ * @export
6842
+ * @interface DoctorEducation
6843
+ */
6844
+ export interface DoctorEducation {
6845
+ /**
6846
+ *
6847
+ * @type {string}
6848
+ * @memberof DoctorEducation
6849
+ */
6850
+ 'id'?: string;
6851
+ /**
6852
+ *
6853
+ * @type {string}
6854
+ * @memberof DoctorEducation
6855
+ */
6856
+ 'doctorId'?: string;
6857
+ /**
6858
+ *
6859
+ * @type {Doctor}
6860
+ * @memberof DoctorEducation
6861
+ */
6862
+ 'doctor'?: Doctor;
6863
+ /**
6864
+ *
6865
+ * @type {string}
6866
+ * @memberof DoctorEducation
6867
+ */
6868
+ 'institution'?: string | null;
6869
+ /**
6870
+ *
6871
+ * @type {string}
6872
+ * @memberof DoctorEducation
6873
+ */
6874
+ 'normalizedInstitution'?: string | null;
6875
+ /**
6876
+ *
6877
+ * @type {string}
6878
+ * @memberof DoctorEducation
6879
+ */
6880
+ 'qualification'?: string | null;
6881
+ /**
6882
+ *
6883
+ * @type {string}
6884
+ * @memberof DoctorEducation
6885
+ */
6886
+ 'normalizedQualification'?: string | null;
6887
+ /**
6888
+ *
6889
+ * @type {Date}
6890
+ * @memberof DoctorEducation
6891
+ */
6892
+ 'graduationDate'?: Date | null;
6893
+ }
5240
6894
  /**
5241
6895
  *
5242
6896
  * @export
@@ -5759,6 +7413,73 @@ export interface DoctorModel {
5759
7413
  */
5760
7414
  'languageCode'?: string | null;
5761
7415
  }
7416
+ /**
7417
+ *
7418
+ * @export
7419
+ * @interface DoctorPortfolio
7420
+ */
7421
+ export interface DoctorPortfolio {
7422
+ /**
7423
+ *
7424
+ * @type {string}
7425
+ * @memberof DoctorPortfolio
7426
+ */
7427
+ 'id'?: string;
7428
+ /**
7429
+ *
7430
+ * @type {string}
7431
+ * @memberof DoctorPortfolio
7432
+ */
7433
+ 'doctorId'?: string;
7434
+ /**
7435
+ *
7436
+ * @type {Doctor}
7437
+ * @memberof DoctorPortfolio
7438
+ */
7439
+ 'doctor'?: Doctor;
7440
+ /**
7441
+ *
7442
+ * @type {string}
7443
+ * @memberof DoctorPortfolio
7444
+ */
7445
+ 'name'?: string | null;
7446
+ /**
7447
+ *
7448
+ * @type {string}
7449
+ * @memberof DoctorPortfolio
7450
+ */
7451
+ 'normalizedName'?: string | null;
7452
+ /**
7453
+ *
7454
+ * @type {string}
7455
+ * @memberof DoctorPortfolio
7456
+ */
7457
+ 'description'?: string | null;
7458
+ /**
7459
+ *
7460
+ * @type {string}
7461
+ * @memberof DoctorPortfolio
7462
+ */
7463
+ 'photoBefore'?: string | null;
7464
+ /**
7465
+ *
7466
+ * @type {string}
7467
+ * @memberof DoctorPortfolio
7468
+ */
7469
+ 'photoBeforeThumbnail'?: string | null;
7470
+ /**
7471
+ *
7472
+ * @type {string}
7473
+ * @memberof DoctorPortfolio
7474
+ */
7475
+ 'photoAfter'?: string | null;
7476
+ /**
7477
+ *
7478
+ * @type {string}
7479
+ * @memberof DoctorPortfolio
7480
+ */
7481
+ 'photoAfterThumbnail'?: string | null;
7482
+ }
5762
7483
  /**
5763
7484
  *
5764
7485
  * @export
@@ -5876,6 +7597,61 @@ export interface DoctorPortfoliosModel {
5876
7597
  */
5877
7598
  'metaData'?: PagedListMetaData;
5878
7599
  }
7600
+ /**
7601
+ *
7602
+ * @export
7603
+ * @interface DoctorReview
7604
+ */
7605
+ export interface DoctorReview {
7606
+ /**
7607
+ *
7608
+ * @type {string}
7609
+ * @memberof DoctorReview
7610
+ */
7611
+ 'patientId'?: string;
7612
+ /**
7613
+ *
7614
+ * @type {Patient}
7615
+ * @memberof DoctorReview
7616
+ */
7617
+ 'patient'?: Patient;
7618
+ /**
7619
+ *
7620
+ * @type {string}
7621
+ * @memberof DoctorReview
7622
+ */
7623
+ 'doctorId'?: string;
7624
+ /**
7625
+ *
7626
+ * @type {Doctor}
7627
+ * @memberof DoctorReview
7628
+ */
7629
+ 'doctor'?: Doctor;
7630
+ /**
7631
+ *
7632
+ * @type {string}
7633
+ * @memberof DoctorReview
7634
+ */
7635
+ 'body'?: string | null;
7636
+ /**
7637
+ *
7638
+ * @type {boolean}
7639
+ * @memberof DoctorReview
7640
+ */
7641
+ 'recommended'?: boolean;
7642
+ /**
7643
+ *
7644
+ * @type {ReviewCategory}
7645
+ * @memberof DoctorReview
7646
+ */
7647
+ 'reviewCategory'?: ReviewCategory;
7648
+ /**
7649
+ *
7650
+ * @type {number}
7651
+ * @memberof DoctorReview
7652
+ */
7653
+ 'rate'?: number;
7654
+ }
5879
7655
  /**
5880
7656
  *
5881
7657
  * @export
@@ -5895,6 +7671,43 @@ export interface DoctorSpecialtiesModel {
5895
7671
  */
5896
7672
  'metaData'?: PagedListMetaData;
5897
7673
  }
7674
+ /**
7675
+ *
7676
+ * @export
7677
+ * @interface DoctorSpecialty
7678
+ */
7679
+ export interface DoctorSpecialty {
7680
+ /**
7681
+ *
7682
+ * @type {string}
7683
+ * @memberof DoctorSpecialty
7684
+ */
7685
+ 'doctorId'?: string;
7686
+ /**
7687
+ *
7688
+ * @type {Doctor}
7689
+ * @memberof DoctorSpecialty
7690
+ */
7691
+ 'doctor'?: Doctor;
7692
+ /**
7693
+ *
7694
+ * @type {string}
7695
+ * @memberof DoctorSpecialty
7696
+ */
7697
+ 'specialtyId'?: string;
7698
+ /**
7699
+ *
7700
+ * @type {Specialty}
7701
+ * @memberof DoctorSpecialty
7702
+ */
7703
+ 'specialty'?: Specialty;
7704
+ /**
7705
+ *
7706
+ * @type {number}
7707
+ * @memberof DoctorSpecialty
7708
+ */
7709
+ 'order'?: number;
7710
+ }
5898
7711
  /**
5899
7712
  *
5900
7713
  * @export
@@ -5988,6 +7801,61 @@ export interface DoctorsSimpleModel {
5988
7801
  */
5989
7802
  'metaData'?: PagedListMetaData;
5990
7803
  }
7804
+ /**
7805
+ *
7806
+ * @export
7807
+ * @interface Equipment
7808
+ */
7809
+ export interface Equipment {
7810
+ /**
7811
+ *
7812
+ * @type {string}
7813
+ * @memberof Equipment
7814
+ */
7815
+ 'id'?: string;
7816
+ /**
7817
+ *
7818
+ * @type {string}
7819
+ * @memberof Equipment
7820
+ */
7821
+ 'name'?: string | null;
7822
+ /**
7823
+ *
7824
+ * @type {string}
7825
+ * @memberof Equipment
7826
+ */
7827
+ 'normalizedName'?: string | null;
7828
+ /**
7829
+ *
7830
+ * @type {string}
7831
+ * @memberof Equipment
7832
+ */
7833
+ 'description'?: string | null;
7834
+ /**
7835
+ *
7836
+ * @type {string}
7837
+ * @memberof Equipment
7838
+ */
7839
+ 'hospitalId'?: string;
7840
+ /**
7841
+ *
7842
+ * @type {Hospital}
7843
+ * @memberof Equipment
7844
+ */
7845
+ 'hospital'?: Hospital;
7846
+ /**
7847
+ *
7848
+ * @type {Array<Media>}
7849
+ * @memberof Equipment
7850
+ */
7851
+ 'medias'?: Array<Media> | null;
7852
+ /**
7853
+ *
7854
+ * @type {AuditableEntity}
7855
+ * @memberof Equipment
7856
+ */
7857
+ 'auditableEntity'?: AuditableEntity;
7858
+ }
5991
7859
  /**
5992
7860
  *
5993
7861
  * @export
@@ -6339,6 +8207,363 @@ export enum Gender {
6339
8207
  PreferNotToSay = 'PreferNotToSay'
6340
8208
  }
6341
8209
 
8210
+ /**
8211
+ *
8212
+ * @export
8213
+ * @interface HealthProfile
8214
+ */
8215
+ export interface HealthProfile {
8216
+ /**
8217
+ *
8218
+ * @type {string}
8219
+ * @memberof HealthProfile
8220
+ */
8221
+ 'firstName'?: string | null;
8222
+ /**
8223
+ *
8224
+ * @type {string}
8225
+ * @memberof HealthProfile
8226
+ */
8227
+ 'lastName'?: string | null;
8228
+ /**
8229
+ *
8230
+ * @type {string}
8231
+ * @memberof HealthProfile
8232
+ */
8233
+ 'phone'?: string | null;
8234
+ /**
8235
+ *
8236
+ * @type {Gender}
8237
+ * @memberof HealthProfile
8238
+ */
8239
+ 'gender'?: Gender;
8240
+ /**
8241
+ *
8242
+ * @type {Date}
8243
+ * @memberof HealthProfile
8244
+ */
8245
+ 'dateOfBirth'?: Date | null;
8246
+ /**
8247
+ *
8248
+ * @type {string}
8249
+ * @memberof HealthProfile
8250
+ */
8251
+ 'residenceAddress'?: string | null;
8252
+ /**
8253
+ *
8254
+ * @type {string}
8255
+ * @memberof HealthProfile
8256
+ */
8257
+ 'insuranceCompany'?: string | null;
8258
+ /**
8259
+ *
8260
+ * @type {number}
8261
+ * @memberof HealthProfile
8262
+ */
8263
+ 'height'?: number | null;
8264
+ /**
8265
+ *
8266
+ * @type {number}
8267
+ * @memberof HealthProfile
8268
+ */
8269
+ 'weight'?: number | null;
8270
+ /**
8271
+ *
8272
+ * @type {string}
8273
+ * @memberof HealthProfile
8274
+ */
8275
+ 'languages'?: string | null;
8276
+ /**
8277
+ *
8278
+ * @type {string}
8279
+ * @memberof HealthProfile
8280
+ */
8281
+ 'allergies'?: string | null;
8282
+ /**
8283
+ *
8284
+ * @type {string}
8285
+ * @memberof HealthProfile
8286
+ */
8287
+ 'medications'?: string | null;
8288
+ /**
8289
+ *
8290
+ * @type {string}
8291
+ * @memberof HealthProfile
8292
+ */
8293
+ 'healthConditions'?: string | null;
8294
+ /**
8295
+ *
8296
+ * @type {string}
8297
+ * @memberof HealthProfile
8298
+ */
8299
+ 'surgeryProcedures'?: string | null;
8300
+ /**
8301
+ *
8302
+ * @type {number}
8303
+ * @memberof HealthProfile
8304
+ */
8305
+ 'weeksOfPregnancy'?: number | null;
8306
+ /**
8307
+ *
8308
+ * @type {string}
8309
+ * @memberof HealthProfile
8310
+ */
8311
+ 'familyHistory'?: string | null;
8312
+ /**
8313
+ *
8314
+ * @type {string}
8315
+ * @memberof HealthProfile
8316
+ */
8317
+ 'familyHistoryDiseases'?: string | null;
8318
+ /**
8319
+ *
8320
+ * @type {string}
8321
+ * @memberof HealthProfile
8322
+ */
8323
+ 'familyHistoryDiseaseOthers'?: string | null;
8324
+ }
8325
+ /**
8326
+ *
8327
+ * @export
8328
+ * @interface Hospital
8329
+ */
8330
+ export interface Hospital {
8331
+ /**
8332
+ *
8333
+ * @type {string}
8334
+ * @memberof Hospital
8335
+ */
8336
+ 'id'?: string;
8337
+ /**
8338
+ *
8339
+ * @type {string}
8340
+ * @memberof Hospital
8341
+ */
8342
+ 'name'?: string | null;
8343
+ /**
8344
+ *
8345
+ * @type {string}
8346
+ * @memberof Hospital
8347
+ */
8348
+ 'normalizedName'?: string | null;
8349
+ /**
8350
+ *
8351
+ * @type {string}
8352
+ * @memberof Hospital
8353
+ */
8354
+ 'description'?: string | null;
8355
+ /**
8356
+ *
8357
+ * @type {string}
8358
+ * @memberof Hospital
8359
+ */
8360
+ 'logo'?: string | null;
8361
+ /**
8362
+ *
8363
+ * @type {string}
8364
+ * @memberof Hospital
8365
+ */
8366
+ 'overview'?: string | null;
8367
+ /**
8368
+ *
8369
+ * @type {number}
8370
+ * @memberof Hospital
8371
+ */
8372
+ 'bedsCount'?: number | null;
8373
+ /**
8374
+ *
8375
+ * @type {number}
8376
+ * @memberof Hospital
8377
+ */
8378
+ 'operationsPerYear'?: number | null;
8379
+ /**
8380
+ *
8381
+ * @type {number}
8382
+ * @memberof Hospital
8383
+ */
8384
+ 'foundationYear'?: number | null;
8385
+ /**
8386
+ *
8387
+ * @type {number}
8388
+ * @memberof Hospital
8389
+ */
8390
+ 'medicalStaffCount'?: number | null;
8391
+ /**
8392
+ *
8393
+ * @type {number}
8394
+ * @memberof Hospital
8395
+ */
8396
+ 'doctorCount'?: number | null;
8397
+ /**
8398
+ *
8399
+ * @type {string}
8400
+ * @memberof Hospital
8401
+ */
8402
+ 'countryId'?: string;
8403
+ /**
8404
+ *
8405
+ * @type {Country}
8406
+ * @memberof Hospital
8407
+ */
8408
+ 'country'?: Country;
8409
+ /**
8410
+ *
8411
+ * @type {MarketingType}
8412
+ * @memberof Hospital
8413
+ */
8414
+ 'marketingType'?: MarketingType;
8415
+ /**
8416
+ *
8417
+ * @type {boolean}
8418
+ * @memberof Hospital
8419
+ */
8420
+ 'consultationEnabled'?: boolean | null;
8421
+ /**
8422
+ *
8423
+ * @type {number}
8424
+ * @memberof Hospital
8425
+ */
8426
+ 'consultationFee'?: number | null;
8427
+ /**
8428
+ *
8429
+ * @type {string}
8430
+ * @memberof Hospital
8431
+ */
8432
+ 'timeZone'?: string | null;
8433
+ /**
8434
+ *
8435
+ * @type {Array<Article>}
8436
+ * @memberof Hospital
8437
+ */
8438
+ 'articles'?: Array<Article> | null;
8439
+ /**
8440
+ *
8441
+ * @type {Array<Question>}
8442
+ * @memberof Hospital
8443
+ */
8444
+ 'questions'?: Array<Question> | null;
8445
+ /**
8446
+ *
8447
+ * @type {Array<Deal>}
8448
+ * @memberof Hospital
8449
+ */
8450
+ 'deals'?: Array<Deal> | null;
8451
+ /**
8452
+ *
8453
+ * @type {Array<Equipment>}
8454
+ * @memberof Hospital
8455
+ */
8456
+ 'equipments'?: Array<Equipment> | null;
8457
+ /**
8458
+ *
8459
+ * @type {Array<HospitalReview>}
8460
+ * @memberof Hospital
8461
+ */
8462
+ 'reviews'?: Array<HospitalReview> | null;
8463
+ /**
8464
+ *
8465
+ * @type {Array<Department>}
8466
+ * @memberof Hospital
8467
+ */
8468
+ 'departments'?: Array<Department> | null;
8469
+ /**
8470
+ *
8471
+ * @type {Array<HospitalSpecialty>}
8472
+ * @memberof Hospital
8473
+ */
8474
+ 'specialties'?: Array<HospitalSpecialty> | null;
8475
+ /**
8476
+ *
8477
+ * @type {Array<HospitalAccreditation>}
8478
+ * @memberof Hospital
8479
+ */
8480
+ 'accreditations'?: Array<HospitalAccreditation> | null;
8481
+ /**
8482
+ *
8483
+ * @type {Array<DoctorAffiliation>}
8484
+ * @memberof Hospital
8485
+ */
8486
+ 'doctorAffiliations'?: Array<DoctorAffiliation> | null;
8487
+ /**
8488
+ *
8489
+ * @type {Array<ManagerAffiliation>}
8490
+ * @memberof Hospital
8491
+ */
8492
+ 'managerAffiliations'?: Array<ManagerAffiliation> | null;
8493
+ /**
8494
+ *
8495
+ * @type {Array<Booking>}
8496
+ * @memberof Hospital
8497
+ */
8498
+ 'bookings'?: Array<Booking> | null;
8499
+ /**
8500
+ *
8501
+ * @type {Array<Consultation>}
8502
+ * @memberof Hospital
8503
+ */
8504
+ 'consultations'?: Array<Consultation> | null;
8505
+ /**
8506
+ *
8507
+ * @type {Array<HospitalEvaluation>}
8508
+ * @memberof Hospital
8509
+ */
8510
+ 'evaluations'?: Array<HospitalEvaluation> | null;
8511
+ /**
8512
+ *
8513
+ * @type {Array<Award>}
8514
+ * @memberof Hospital
8515
+ */
8516
+ 'awards'?: Array<Award> | null;
8517
+ /**
8518
+ *
8519
+ * @type {Array<Media>}
8520
+ * @memberof Hospital
8521
+ */
8522
+ 'medias'?: Array<Media> | null;
8523
+ /**
8524
+ *
8525
+ * @type {Location}
8526
+ * @memberof Hospital
8527
+ */
8528
+ 'location'?: Location;
8529
+ /**
8530
+ *
8531
+ * @type {AuditableEntity}
8532
+ * @memberof Hospital
8533
+ */
8534
+ 'auditableEntity'?: AuditableEntity;
8535
+ }
8536
+ /**
8537
+ *
8538
+ * @export
8539
+ * @interface HospitalAccreditation
8540
+ */
8541
+ export interface HospitalAccreditation {
8542
+ /**
8543
+ *
8544
+ * @type {string}
8545
+ * @memberof HospitalAccreditation
8546
+ */
8547
+ 'hospitalId'?: string;
8548
+ /**
8549
+ *
8550
+ * @type {Hospital}
8551
+ * @memberof HospitalAccreditation
8552
+ */
8553
+ 'hospital'?: Hospital;
8554
+ /**
8555
+ *
8556
+ * @type {string}
8557
+ * @memberof HospitalAccreditation
8558
+ */
8559
+ 'accreditationId'?: string;
8560
+ /**
8561
+ *
8562
+ * @type {Accreditation}
8563
+ * @memberof HospitalAccreditation
8564
+ */
8565
+ 'accreditation'?: Accreditation;
8566
+ }
6342
8567
  /**
6343
8568
  *
6344
8569
  * @export
@@ -6537,6 +8762,55 @@ export interface HospitalEquipmentsModel {
6537
8762
  */
6538
8763
  'metaData'?: PagedListMetaData;
6539
8764
  }
8765
+ /**
8766
+ *
8767
+ * @export
8768
+ * @interface HospitalEvaluation
8769
+ */
8770
+ export interface HospitalEvaluation {
8771
+ /**
8772
+ *
8773
+ * @type {string}
8774
+ * @memberof HospitalEvaluation
8775
+ */
8776
+ 'id'?: string;
8777
+ /**
8778
+ *
8779
+ * @type {string}
8780
+ * @memberof HospitalEvaluation
8781
+ */
8782
+ 'hospitalId'?: string;
8783
+ /**
8784
+ *
8785
+ * @type {Hospital}
8786
+ * @memberof HospitalEvaluation
8787
+ */
8788
+ 'hospital'?: Hospital;
8789
+ /**
8790
+ *
8791
+ * @type {string}
8792
+ * @memberof HospitalEvaluation
8793
+ */
8794
+ 'name'?: string | null;
8795
+ /**
8796
+ *
8797
+ * @type {number}
8798
+ * @memberof HospitalEvaluation
8799
+ */
8800
+ 'stars'?: number;
8801
+ /**
8802
+ *
8803
+ * @type {string}
8804
+ * @memberof HospitalEvaluation
8805
+ */
8806
+ 'description'?: string | null;
8807
+ /**
8808
+ *
8809
+ * @type {string}
8810
+ * @memberof HospitalEvaluation
8811
+ */
8812
+ 'referenceUrl'?: string | null;
8813
+ }
6540
8814
  /**
6541
8815
  *
6542
8816
  * @export
@@ -7094,6 +9368,61 @@ export interface HospitalModel {
7094
9368
  */
7095
9369
  'languageCode'?: string | null;
7096
9370
  }
9371
+ /**
9372
+ *
9373
+ * @export
9374
+ * @interface HospitalReview
9375
+ */
9376
+ export interface HospitalReview {
9377
+ /**
9378
+ *
9379
+ * @type {string}
9380
+ * @memberof HospitalReview
9381
+ */
9382
+ 'patientId'?: string;
9383
+ /**
9384
+ *
9385
+ * @type {Patient}
9386
+ * @memberof HospitalReview
9387
+ */
9388
+ 'patient'?: Patient;
9389
+ /**
9390
+ *
9391
+ * @type {string}
9392
+ * @memberof HospitalReview
9393
+ */
9394
+ 'hospitalId'?: string;
9395
+ /**
9396
+ *
9397
+ * @type {Hospital}
9398
+ * @memberof HospitalReview
9399
+ */
9400
+ 'hospital'?: Hospital;
9401
+ /**
9402
+ *
9403
+ * @type {string}
9404
+ * @memberof HospitalReview
9405
+ */
9406
+ 'body'?: string | null;
9407
+ /**
9408
+ *
9409
+ * @type {boolean}
9410
+ * @memberof HospitalReview
9411
+ */
9412
+ 'recommended'?: boolean;
9413
+ /**
9414
+ *
9415
+ * @type {ReviewCategory}
9416
+ * @memberof HospitalReview
9417
+ */
9418
+ 'reviewCategory'?: ReviewCategory;
9419
+ /**
9420
+ *
9421
+ * @type {number}
9422
+ * @memberof HospitalReview
9423
+ */
9424
+ 'rate'?: number;
9425
+ }
7097
9426
  /**
7098
9427
  *
7099
9428
  * @export
@@ -7429,6 +9758,91 @@ export interface HospitalSpecialtiesModel {
7429
9758
  */
7430
9759
  'metaData'?: PagedListMetaData;
7431
9760
  }
9761
+ /**
9762
+ *
9763
+ * @export
9764
+ * @interface HospitalSpecialty
9765
+ */
9766
+ export interface HospitalSpecialty {
9767
+ /**
9768
+ *
9769
+ * @type {string}
9770
+ * @memberof HospitalSpecialty
9771
+ */
9772
+ 'id'?: string;
9773
+ /**
9774
+ *
9775
+ * @type {string}
9776
+ * @memberof HospitalSpecialty
9777
+ */
9778
+ 'hospitalId'?: string;
9779
+ /**
9780
+ *
9781
+ * @type {Hospital}
9782
+ * @memberof HospitalSpecialty
9783
+ */
9784
+ 'hospital'?: Hospital;
9785
+ /**
9786
+ *
9787
+ * @type {string}
9788
+ * @memberof HospitalSpecialty
9789
+ */
9790
+ 'specialtyId'?: string;
9791
+ /**
9792
+ *
9793
+ * @type {Specialty}
9794
+ * @memberof HospitalSpecialty
9795
+ */
9796
+ 'specialty'?: Specialty;
9797
+ /**
9798
+ *
9799
+ * @type {Array<Service>}
9800
+ * @memberof HospitalSpecialty
9801
+ */
9802
+ 'services'?: Array<Service> | null;
9803
+ /**
9804
+ *
9805
+ * @type {string}
9806
+ * @memberof HospitalSpecialty
9807
+ */
9808
+ 'title'?: string | null;
9809
+ /**
9810
+ *
9811
+ * @type {string}
9812
+ * @memberof HospitalSpecialty
9813
+ */
9814
+ 'normalizedTitle'?: string | null;
9815
+ /**
9816
+ *
9817
+ * @type {string}
9818
+ * @memberof HospitalSpecialty
9819
+ */
9820
+ 'description'?: string | null;
9821
+ /**
9822
+ *
9823
+ * @type {string}
9824
+ * @memberof HospitalSpecialty
9825
+ */
9826
+ 'content'?: string | null;
9827
+ /**
9828
+ *
9829
+ * @type {number}
9830
+ * @memberof HospitalSpecialty
9831
+ */
9832
+ 'order'?: number;
9833
+ /**
9834
+ *
9835
+ * @type {Array<Media>}
9836
+ * @memberof HospitalSpecialty
9837
+ */
9838
+ 'medias'?: Array<Media> | null;
9839
+ /**
9840
+ *
9841
+ * @type {AuditableEntity}
9842
+ * @memberof HospitalSpecialty
9843
+ */
9844
+ 'auditableEntity'?: AuditableEntity;
9845
+ }
7432
9846
  /**
7433
9847
  *
7434
9848
  * @export
@@ -7525,6 +9939,12 @@ export interface HospitalSpecialtyItemModel {
7525
9939
  * @memberof HospitalSpecialtyItemModel
7526
9940
  */
7527
9941
  'serviceCount'?: number;
9942
+ /**
9943
+ *
9944
+ * @type {Array<Service>}
9945
+ * @memberof HospitalSpecialtyItemModel
9946
+ */
9947
+ 'serviceList'?: Array<Service> | null;
7528
9948
  /**
7529
9949
  *
7530
9950
  * @type {number}
@@ -7646,6 +10066,12 @@ export interface HospitalSpecialtyModel {
7646
10066
  * @memberof HospitalSpecialtyModel
7647
10067
  */
7648
10068
  'serviceCount'?: number;
10069
+ /**
10070
+ *
10071
+ * @type {Array<Service>}
10072
+ * @memberof HospitalSpecialtyModel
10073
+ */
10074
+ 'serviceList'?: Array<Service> | null;
7649
10075
  /**
7650
10076
  *
7651
10077
  * @type {number}
@@ -7839,6 +10265,61 @@ export interface LocalizedUrlModel {
7839
10265
  */
7840
10266
  'languageCode'?: string | null;
7841
10267
  }
10268
+ /**
10269
+ *
10270
+ * @export
10271
+ * @interface Location
10272
+ */
10273
+ export interface Location {
10274
+ /**
10275
+ *
10276
+ * @type {number}
10277
+ * @memberof Location
10278
+ */
10279
+ 'latitude'?: number;
10280
+ /**
10281
+ *
10282
+ * @type {number}
10283
+ * @memberof Location
10284
+ */
10285
+ 'longitude'?: number;
10286
+ /**
10287
+ *
10288
+ * @type {string}
10289
+ * @memberof Location
10290
+ */
10291
+ 'country'?: string | null;
10292
+ /**
10293
+ *
10294
+ * @type {string}
10295
+ * @memberof Location
10296
+ */
10297
+ 'state'?: string | null;
10298
+ /**
10299
+ *
10300
+ * @type {string}
10301
+ * @memberof Location
10302
+ */
10303
+ 'county'?: string | null;
10304
+ /**
10305
+ *
10306
+ * @type {string}
10307
+ * @memberof Location
10308
+ */
10309
+ 'city'?: string | null;
10310
+ /**
10311
+ *
10312
+ * @type {string}
10313
+ * @memberof Location
10314
+ */
10315
+ 'zipCode'?: string | null;
10316
+ /**
10317
+ *
10318
+ * @type {string}
10319
+ * @memberof Location
10320
+ */
10321
+ 'address'?: string | null;
10322
+ }
7842
10323
  /**
7843
10324
  *
7844
10325
  * @export
@@ -7894,6 +10375,176 @@ export interface LocationModel {
7894
10375
  */
7895
10376
  'address'?: string | null;
7896
10377
  }
10378
+ /**
10379
+ *
10380
+ * @export
10381
+ * @interface Manager
10382
+ */
10383
+ export interface Manager {
10384
+ /**
10385
+ *
10386
+ * @type {string}
10387
+ * @memberof Manager
10388
+ */
10389
+ 'id'?: string;
10390
+ /**
10391
+ *
10392
+ * @type {string}
10393
+ * @memberof Manager
10394
+ */
10395
+ 'userName'?: string | null;
10396
+ /**
10397
+ *
10398
+ * @type {string}
10399
+ * @memberof Manager
10400
+ */
10401
+ 'email'?: string | null;
10402
+ /**
10403
+ *
10404
+ * @type {string}
10405
+ * @memberof Manager
10406
+ */
10407
+ 'firstName'?: string | null;
10408
+ /**
10409
+ *
10410
+ * @type {string}
10411
+ * @memberof Manager
10412
+ */
10413
+ 'lastName'?: string | null;
10414
+ /**
10415
+ *
10416
+ * @type {string}
10417
+ * @memberof Manager
10418
+ */
10419
+ 'normalizedName'?: string | null;
10420
+ /**
10421
+ *
10422
+ * @type {string}
10423
+ * @memberof Manager
10424
+ */
10425
+ 'phone'?: string | null;
10426
+ /**
10427
+ *
10428
+ * @type {string}
10429
+ * @memberof Manager
10430
+ */
10431
+ 'photo'?: string | null;
10432
+ /**
10433
+ *
10434
+ * @type {string}
10435
+ * @memberof Manager
10436
+ */
10437
+ 'photoThumbnail'?: string | null;
10438
+ /**
10439
+ *
10440
+ * @type {Gender}
10441
+ * @memberof Manager
10442
+ */
10443
+ 'gender'?: Gender;
10444
+ /**
10445
+ *
10446
+ * @type {Date}
10447
+ * @memberof Manager
10448
+ */
10449
+ 'dateOfBirth'?: Date | null;
10450
+ /**
10451
+ *
10452
+ * @type {string}
10453
+ * @memberof Manager
10454
+ */
10455
+ 'timeZone'?: string | null;
10456
+ /**
10457
+ *
10458
+ * @type {string}
10459
+ * @memberof Manager
10460
+ */
10461
+ 'communicationUserId'?: string | null;
10462
+ /**
10463
+ *
10464
+ * @type {string}
10465
+ * @memberof Manager
10466
+ */
10467
+ 'fullName'?: string | null;
10468
+ /**
10469
+ *
10470
+ * @type {Array<Device>}
10471
+ * @memberof Manager
10472
+ */
10473
+ 'devices'?: Array<Device> | null;
10474
+ /**
10475
+ *
10476
+ * @type {Array<Article>}
10477
+ * @memberof Manager
10478
+ */
10479
+ 'articles'?: Array<Article> | null;
10480
+ /**
10481
+ *
10482
+ * @type {Array<QuestionComment>}
10483
+ * @memberof Manager
10484
+ */
10485
+ 'questionComments'?: Array<QuestionComment> | null;
10486
+ /**
10487
+ *
10488
+ * @type {Array<UserLocation>}
10489
+ * @memberof Manager
10490
+ */
10491
+ 'locations'?: Array<UserLocation> | null;
10492
+ /**
10493
+ *
10494
+ * @type {Array<UserLanguage>}
10495
+ * @memberof Manager
10496
+ */
10497
+ 'languages'?: Array<UserLanguage> | null;
10498
+ /**
10499
+ *
10500
+ * @type {AuditableEntity}
10501
+ * @memberof Manager
10502
+ */
10503
+ 'auditableEntity'?: AuditableEntity;
10504
+ /**
10505
+ *
10506
+ * @type {Array<Account>}
10507
+ * @memberof Manager
10508
+ */
10509
+ 'accounts'?: Array<Account> | null;
10510
+ /**
10511
+ *
10512
+ * @type {Array<ManagerAffiliation>}
10513
+ * @memberof Manager
10514
+ */
10515
+ 'affiliations'?: Array<ManagerAffiliation> | null;
10516
+ }
10517
+ /**
10518
+ *
10519
+ * @export
10520
+ * @interface ManagerAffiliation
10521
+ */
10522
+ export interface ManagerAffiliation {
10523
+ /**
10524
+ *
10525
+ * @type {string}
10526
+ * @memberof ManagerAffiliation
10527
+ */
10528
+ 'managerId'?: string;
10529
+ /**
10530
+ *
10531
+ * @type {Manager}
10532
+ * @memberof ManagerAffiliation
10533
+ */
10534
+ 'manager'?: Manager;
10535
+ /**
10536
+ *
10537
+ * @type {string}
10538
+ * @memberof ManagerAffiliation
10539
+ */
10540
+ 'hospitalId'?: string;
10541
+ /**
10542
+ *
10543
+ * @type {Hospital}
10544
+ * @memberof ManagerAffiliation
10545
+ */
10546
+ 'hospital'?: Hospital;
10547
+ }
7897
10548
  /**
7898
10549
  *
7899
10550
  * @export
@@ -8248,6 +10899,61 @@ export enum MarketingType {
8248
10899
  Beauty = 'Beauty'
8249
10900
  }
8250
10901
 
10902
+ /**
10903
+ *
10904
+ * @export
10905
+ * @interface Media
10906
+ */
10907
+ export interface Media {
10908
+ /**
10909
+ *
10910
+ * @type {string}
10911
+ * @memberof Media
10912
+ */
10913
+ 'id'?: string;
10914
+ /**
10915
+ *
10916
+ * @type {MediaType}
10917
+ * @memberof Media
10918
+ */
10919
+ 'mediaType'?: MediaType;
10920
+ /**
10921
+ *
10922
+ * @type {string}
10923
+ * @memberof Media
10924
+ */
10925
+ 'url'?: string | null;
10926
+ /**
10927
+ *
10928
+ * @type {string}
10929
+ * @memberof Media
10930
+ */
10931
+ 'thumbnailUrl'?: string | null;
10932
+ /**
10933
+ *
10934
+ * @type {string}
10935
+ * @memberof Media
10936
+ */
10937
+ 'description'?: string | null;
10938
+ /**
10939
+ *
10940
+ * @type {number}
10941
+ * @memberof Media
10942
+ */
10943
+ 'height'?: number;
10944
+ /**
10945
+ *
10946
+ * @type {number}
10947
+ * @memberof Media
10948
+ */
10949
+ 'width'?: number;
10950
+ /**
10951
+ *
10952
+ * @type {number}
10953
+ * @memberof Media
10954
+ */
10955
+ 'order'?: number;
10956
+ }
8251
10957
  /**
8252
10958
  *
8253
10959
  * @export
@@ -8394,6 +11100,110 @@ export interface MembersModel {
8394
11100
  */
8395
11101
  'metaData'?: PagedListMetaData;
8396
11102
  }
11103
+ /**
11104
+ *
11105
+ * @export
11106
+ * @interface Membership
11107
+ */
11108
+ export interface Membership {
11109
+ /**
11110
+ *
11111
+ * @type {string}
11112
+ * @memberof Membership
11113
+ */
11114
+ 'id'?: string;
11115
+ /**
11116
+ *
11117
+ * @type {string}
11118
+ * @memberof Membership
11119
+ */
11120
+ 'planId'?: string;
11121
+ /**
11122
+ *
11123
+ * @type {Plan}
11124
+ * @memberof Membership
11125
+ */
11126
+ 'plan'?: Plan;
11127
+ /**
11128
+ *
11129
+ * @type {string}
11130
+ * @memberof Membership
11131
+ */
11132
+ 'ownerId'?: string;
11133
+ /**
11134
+ *
11135
+ * @type {Patient}
11136
+ * @memberof Membership
11137
+ */
11138
+ 'owner'?: Patient;
11139
+ /**
11140
+ *
11141
+ * @type {string}
11142
+ * @memberof Membership
11143
+ */
11144
+ 'stripeSubscriptionId'?: string | null;
11145
+ /**
11146
+ *
11147
+ * @type {boolean}
11148
+ * @memberof Membership
11149
+ */
11150
+ 'isActive'?: boolean;
11151
+ /**
11152
+ *
11153
+ * @type {Array<Patient>}
11154
+ * @memberof Membership
11155
+ */
11156
+ 'members'?: Array<Patient> | null;
11157
+ /**
11158
+ *
11159
+ * @type {Array<MembershipInvitation>}
11160
+ * @memberof Membership
11161
+ */
11162
+ 'invitations'?: Array<MembershipInvitation> | null;
11163
+ }
11164
+ /**
11165
+ *
11166
+ * @export
11167
+ * @interface MembershipInvitation
11168
+ */
11169
+ export interface MembershipInvitation {
11170
+ /**
11171
+ *
11172
+ * @type {string}
11173
+ * @memberof MembershipInvitation
11174
+ */
11175
+ 'id'?: string;
11176
+ /**
11177
+ *
11178
+ * @type {string}
11179
+ * @memberof MembershipInvitation
11180
+ */
11181
+ 'membershipId'?: string;
11182
+ /**
11183
+ *
11184
+ * @type {Membership}
11185
+ * @memberof MembershipInvitation
11186
+ */
11187
+ 'membership'?: Membership;
11188
+ /**
11189
+ *
11190
+ * @type {string}
11191
+ * @memberof MembershipInvitation
11192
+ */
11193
+ 'patientId'?: string | null;
11194
+ /**
11195
+ *
11196
+ * @type {Patient}
11197
+ * @memberof MembershipInvitation
11198
+ */
11199
+ 'patient'?: Patient;
11200
+ /**
11201
+ *
11202
+ * @type {string}
11203
+ * @memberof MembershipInvitation
11204
+ */
11205
+ 'email'?: string | null;
11206
+ }
8397
11207
  /**
8398
11208
  *
8399
11209
  * @export
@@ -8716,6 +11526,217 @@ export interface PagedListMetaData {
8716
11526
  */
8717
11527
  'lastItemOnPage'?: number;
8718
11528
  }
11529
+ /**
11530
+ *
11531
+ * @export
11532
+ * @interface Patient
11533
+ */
11534
+ export interface Patient {
11535
+ /**
11536
+ *
11537
+ * @type {string}
11538
+ * @memberof Patient
11539
+ */
11540
+ 'id'?: string;
11541
+ /**
11542
+ *
11543
+ * @type {string}
11544
+ * @memberof Patient
11545
+ */
11546
+ 'userName'?: string | null;
11547
+ /**
11548
+ *
11549
+ * @type {string}
11550
+ * @memberof Patient
11551
+ */
11552
+ 'email'?: string | null;
11553
+ /**
11554
+ *
11555
+ * @type {string}
11556
+ * @memberof Patient
11557
+ */
11558
+ 'firstName'?: string | null;
11559
+ /**
11560
+ *
11561
+ * @type {string}
11562
+ * @memberof Patient
11563
+ */
11564
+ 'lastName'?: string | null;
11565
+ /**
11566
+ *
11567
+ * @type {string}
11568
+ * @memberof Patient
11569
+ */
11570
+ 'normalizedName'?: string | null;
11571
+ /**
11572
+ *
11573
+ * @type {string}
11574
+ * @memberof Patient
11575
+ */
11576
+ 'phone'?: string | null;
11577
+ /**
11578
+ *
11579
+ * @type {string}
11580
+ * @memberof Patient
11581
+ */
11582
+ 'photo'?: string | null;
11583
+ /**
11584
+ *
11585
+ * @type {string}
11586
+ * @memberof Patient
11587
+ */
11588
+ 'photoThumbnail'?: string | null;
11589
+ /**
11590
+ *
11591
+ * @type {Gender}
11592
+ * @memberof Patient
11593
+ */
11594
+ 'gender'?: Gender;
11595
+ /**
11596
+ *
11597
+ * @type {Date}
11598
+ * @memberof Patient
11599
+ */
11600
+ 'dateOfBirth'?: Date | null;
11601
+ /**
11602
+ *
11603
+ * @type {string}
11604
+ * @memberof Patient
11605
+ */
11606
+ 'timeZone'?: string | null;
11607
+ /**
11608
+ *
11609
+ * @type {string}
11610
+ * @memberof Patient
11611
+ */
11612
+ 'communicationUserId'?: string | null;
11613
+ /**
11614
+ *
11615
+ * @type {string}
11616
+ * @memberof Patient
11617
+ */
11618
+ 'fullName'?: string | null;
11619
+ /**
11620
+ *
11621
+ * @type {Array<Device>}
11622
+ * @memberof Patient
11623
+ */
11624
+ 'devices'?: Array<Device> | null;
11625
+ /**
11626
+ *
11627
+ * @type {Array<Article>}
11628
+ * @memberof Patient
11629
+ */
11630
+ 'articles'?: Array<Article> | null;
11631
+ /**
11632
+ *
11633
+ * @type {Array<QuestionComment>}
11634
+ * @memberof Patient
11635
+ */
11636
+ 'questionComments'?: Array<QuestionComment> | null;
11637
+ /**
11638
+ *
11639
+ * @type {Array<UserLocation>}
11640
+ * @memberof Patient
11641
+ */
11642
+ 'locations'?: Array<UserLocation> | null;
11643
+ /**
11644
+ *
11645
+ * @type {Array<UserLanguage>}
11646
+ * @memberof Patient
11647
+ */
11648
+ 'languages'?: Array<UserLanguage> | null;
11649
+ /**
11650
+ *
11651
+ * @type {AuditableEntity}
11652
+ * @memberof Patient
11653
+ */
11654
+ 'auditableEntity'?: AuditableEntity;
11655
+ /**
11656
+ *
11657
+ * @type {string}
11658
+ * @memberof Patient
11659
+ */
11660
+ 'contact'?: string | null;
11661
+ /**
11662
+ *
11663
+ * @type {string}
11664
+ * @memberof Patient
11665
+ */
11666
+ 'contactNumber'?: string | null;
11667
+ /**
11668
+ *
11669
+ * @type {string}
11670
+ * @memberof Patient
11671
+ */
11672
+ 'nationality'?: string | null;
11673
+ /**
11674
+ *
11675
+ * @type {HealthProfile}
11676
+ * @memberof Patient
11677
+ */
11678
+ 'healthProfile'?: HealthProfile;
11679
+ /**
11680
+ *
11681
+ * @type {string}
11682
+ * @memberof Patient
11683
+ */
11684
+ 'membershipId'?: string | null;
11685
+ /**
11686
+ *
11687
+ * @type {Membership}
11688
+ * @memberof Patient
11689
+ */
11690
+ 'membership'?: Membership;
11691
+ /**
11692
+ *
11693
+ * @type {Array<Question>}
11694
+ * @memberof Patient
11695
+ */
11696
+ 'questions'?: Array<Question> | null;
11697
+ /**
11698
+ *
11699
+ * @type {Array<Booking>}
11700
+ * @memberof Patient
11701
+ */
11702
+ 'bookings'?: Array<Booking> | null;
11703
+ /**
11704
+ *
11705
+ * @type {Array<Consultation>}
11706
+ * @memberof Patient
11707
+ */
11708
+ 'consultations'?: Array<Consultation> | null;
11709
+ /**
11710
+ *
11711
+ * @type {Array<Payment>}
11712
+ * @memberof Patient
11713
+ */
11714
+ 'payments'?: Array<Payment> | null;
11715
+ /**
11716
+ *
11717
+ * @type {Array<Customer>}
11718
+ * @memberof Patient
11719
+ */
11720
+ 'customers'?: Array<Customer> | null;
11721
+ /**
11722
+ *
11723
+ * @type {Array<DoctorReview>}
11724
+ * @memberof Patient
11725
+ */
11726
+ 'doctorReviews'?: Array<DoctorReview> | null;
11727
+ /**
11728
+ *
11729
+ * @type {Array<HospitalReview>}
11730
+ * @memberof Patient
11731
+ */
11732
+ 'hospitalReviews'?: Array<HospitalReview> | null;
11733
+ /**
11734
+ *
11735
+ * @type {Array<ServiceReview>}
11736
+ * @memberof Patient
11737
+ */
11738
+ 'serviceReviews'?: Array<ServiceReview> | null;
11739
+ }
8719
11740
  /**
8720
11741
  *
8721
11742
  * @export
@@ -8947,6 +11968,213 @@ export interface PatientsModel {
8947
11968
  */
8948
11969
  'metaData'?: PagedListMetaData;
8949
11970
  }
11971
+ /**
11972
+ *
11973
+ * @export
11974
+ * @interface Payment
11975
+ */
11976
+ export interface Payment {
11977
+ /**
11978
+ *
11979
+ * @type {string}
11980
+ * @memberof Payment
11981
+ */
11982
+ 'id'?: string;
11983
+ /**
11984
+ *
11985
+ * @type {PaymentMethod}
11986
+ * @memberof Payment
11987
+ */
11988
+ 'paymentMethod'?: PaymentMethod;
11989
+ /**
11990
+ *
11991
+ * @type {string}
11992
+ * @memberof Payment
11993
+ */
11994
+ 'patientId'?: string;
11995
+ /**
11996
+ *
11997
+ * @type {Patient}
11998
+ * @memberof Payment
11999
+ */
12000
+ 'patient'?: Patient;
12001
+ /**
12002
+ *
12003
+ * @type {string}
12004
+ * @memberof Payment
12005
+ */
12006
+ 'customerId'?: string | null;
12007
+ /**
12008
+ *
12009
+ * @type {Customer}
12010
+ * @memberof Payment
12011
+ */
12012
+ 'customer'?: Customer;
12013
+ /**
12014
+ *
12015
+ * @type {string}
12016
+ * @memberof Payment
12017
+ */
12018
+ 'chargeId'?: string | null;
12019
+ /**
12020
+ *
12021
+ * @type {string}
12022
+ * @memberof Payment
12023
+ */
12024
+ 'refundId'?: string | null;
12025
+ /**
12026
+ *
12027
+ * @type {ChargeStatus}
12028
+ * @memberof Payment
12029
+ */
12030
+ 'chargeStatus'?: ChargeStatus;
12031
+ /**
12032
+ *
12033
+ * @type {RefundStatus}
12034
+ * @memberof Payment
12035
+ */
12036
+ 'refundStatus'?: RefundStatus;
12037
+ /**
12038
+ *
12039
+ * @type {PaymentStatus}
12040
+ * @memberof Payment
12041
+ */
12042
+ 'paymentStatus'?: PaymentStatus;
12043
+ /**
12044
+ *
12045
+ * @type {boolean}
12046
+ * @memberof Payment
12047
+ */
12048
+ 'isFullPayment'?: boolean;
12049
+ /**
12050
+ *
12051
+ * @type {string}
12052
+ * @memberof Payment
12053
+ */
12054
+ 'currency'?: string | null;
12055
+ /**
12056
+ *
12057
+ * @type {number}
12058
+ * @memberof Payment
12059
+ */
12060
+ 'fee'?: number;
12061
+ /**
12062
+ *
12063
+ * @type {number}
12064
+ * @memberof Payment
12065
+ */
12066
+ 'applicationFee'?: number;
12067
+ /**
12068
+ *
12069
+ * @type {string}
12070
+ * @memberof Payment
12071
+ */
12072
+ 'cardBrand'?: string | null;
12073
+ /**
12074
+ *
12075
+ * @type {string}
12076
+ * @memberof Payment
12077
+ */
12078
+ 'cardLast4Digits'?: string | null;
12079
+ /**
12080
+ *
12081
+ * @type {Array<ChangeLog>}
12082
+ * @memberof Payment
12083
+ */
12084
+ 'chargeStatusChangeLogs'?: Array<ChangeLog> | null;
12085
+ /**
12086
+ *
12087
+ * @type {Array<ChangeLog>}
12088
+ * @memberof Payment
12089
+ */
12090
+ 'refundStatusChangeLogs'?: Array<ChangeLog> | null;
12091
+ /**
12092
+ *
12093
+ * @type {Array<ChangeLog>}
12094
+ * @memberof Payment
12095
+ */
12096
+ 'paymentStatusChangeLogs'?: Array<ChangeLog> | null;
12097
+ }
12098
+ /**
12099
+ *
12100
+ * @export
12101
+ * @enum {string}
12102
+ */
12103
+
12104
+ export enum PaymentMethod {
12105
+ Stripe = 'Stripe',
12106
+ Paypal = 'Paypal',
12107
+ BankTransfer = 'BankTransfer'
12108
+ }
12109
+
12110
+ /**
12111
+ *
12112
+ * @export
12113
+ * @enum {string}
12114
+ */
12115
+
12116
+ export enum PaymentStatus {
12117
+ Unpaid = 'Unpaid',
12118
+ Paid = 'Paid',
12119
+ RefundRequested = 'RefundRequested',
12120
+ Refunded = 'Refunded'
12121
+ }
12122
+
12123
+ /**
12124
+ *
12125
+ * @export
12126
+ * @interface Plan
12127
+ */
12128
+ export interface Plan {
12129
+ /**
12130
+ *
12131
+ * @type {string}
12132
+ * @memberof Plan
12133
+ */
12134
+ 'id'?: string;
12135
+ /**
12136
+ *
12137
+ * @type {string}
12138
+ * @memberof Plan
12139
+ */
12140
+ 'name'?: string | null;
12141
+ /**
12142
+ *
12143
+ * @type {number}
12144
+ * @memberof Plan
12145
+ */
12146
+ 'memberLimit'?: number;
12147
+ /**
12148
+ *
12149
+ * @type {number}
12150
+ * @memberof Plan
12151
+ */
12152
+ 'unitPrice'?: number;
12153
+ /**
12154
+ *
12155
+ * @type {string}
12156
+ * @memberof Plan
12157
+ */
12158
+ 'stripePriceId'?: string | null;
12159
+ /**
12160
+ *
12161
+ * @type {RecurringInterval}
12162
+ * @memberof Plan
12163
+ */
12164
+ 'interval'?: RecurringInterval;
12165
+ /**
12166
+ *
12167
+ * @type {boolean}
12168
+ * @memberof Plan
12169
+ */
12170
+ 'isActive'?: boolean;
12171
+ /**
12172
+ *
12173
+ * @type {number}
12174
+ * @memberof Plan
12175
+ */
12176
+ 'order'?: number;
12177
+ }
8950
12178
  /**
8951
12179
  *
8952
12180
  * @export
@@ -9169,6 +12397,18 @@ export interface PlansModel {
9169
12397
  */
9170
12398
  'metaData'?: PagedListMetaData;
9171
12399
  }
12400
+ /**
12401
+ *
12402
+ * @export
12403
+ * @enum {string}
12404
+ */
12405
+
12406
+ export enum Platform {
12407
+ Web = 'Web',
12408
+ IOs = 'iOS',
12409
+ Android = 'Android'
12410
+ }
12411
+
9172
12412
  /**
9173
12413
  *
9174
12414
  * @export
@@ -9219,6 +12459,191 @@ export enum Procedure {
9219
12459
  Diagnostic = 'Diagnostic'
9220
12460
  }
9221
12461
 
12462
+ /**
12463
+ *
12464
+ * @export
12465
+ * @interface Question
12466
+ */
12467
+ export interface Question {
12468
+ /**
12469
+ *
12470
+ * @type {string}
12471
+ * @memberof Question
12472
+ */
12473
+ 'id'?: string;
12474
+ /**
12475
+ *
12476
+ * @type {string}
12477
+ * @memberof Question
12478
+ */
12479
+ 'title'?: string | null;
12480
+ /**
12481
+ *
12482
+ * @type {string}
12483
+ * @memberof Question
12484
+ */
12485
+ 'normalizedTitle'?: string | null;
12486
+ /**
12487
+ *
12488
+ * @type {string}
12489
+ * @memberof Question
12490
+ */
12491
+ 'body'?: string | null;
12492
+ /**
12493
+ *
12494
+ * @type {QuestionType}
12495
+ * @memberof Question
12496
+ */
12497
+ 'questionType'?: QuestionType;
12498
+ /**
12499
+ *
12500
+ * @type {QuestionStatus}
12501
+ * @memberof Question
12502
+ */
12503
+ 'questionStatus'?: QuestionStatus;
12504
+ /**
12505
+ *
12506
+ * @type {string}
12507
+ * @memberof Question
12508
+ */
12509
+ 'patientId'?: string;
12510
+ /**
12511
+ *
12512
+ * @type {Patient}
12513
+ * @memberof Question
12514
+ */
12515
+ 'patient'?: Patient;
12516
+ /**
12517
+ *
12518
+ * @type {string}
12519
+ * @memberof Question
12520
+ */
12521
+ 'hospitalId'?: string;
12522
+ /**
12523
+ *
12524
+ * @type {Hospital}
12525
+ * @memberof Question
12526
+ */
12527
+ 'hospital'?: Hospital;
12528
+ /**
12529
+ *
12530
+ * @type {string}
12531
+ * @memberof Question
12532
+ */
12533
+ 'dealPackageId'?: string | null;
12534
+ /**
12535
+ *
12536
+ * @type {DealPackage}
12537
+ * @memberof Question
12538
+ */
12539
+ 'dealPackage'?: DealPackage;
12540
+ /**
12541
+ *
12542
+ * @type {number}
12543
+ * @memberof Question
12544
+ */
12545
+ 'quantity'?: number | null;
12546
+ /**
12547
+ *
12548
+ * @type {Array<QuestionComment>}
12549
+ * @memberof Question
12550
+ */
12551
+ 'questionComments'?: Array<QuestionComment> | null;
12552
+ /**
12553
+ *
12554
+ * @type {Array<Media>}
12555
+ * @memberof Question
12556
+ */
12557
+ 'medias'?: Array<Media> | null;
12558
+ /**
12559
+ *
12560
+ * @type {AuditableEntity}
12561
+ * @memberof Question
12562
+ */
12563
+ 'auditableEntity'?: AuditableEntity;
12564
+ }
12565
+ /**
12566
+ *
12567
+ * @export
12568
+ * @interface QuestionComment
12569
+ */
12570
+ export interface QuestionComment {
12571
+ /**
12572
+ *
12573
+ * @type {string}
12574
+ * @memberof QuestionComment
12575
+ */
12576
+ 'id'?: string;
12577
+ /**
12578
+ *
12579
+ * @type {string}
12580
+ * @memberof QuestionComment
12581
+ */
12582
+ 'userId'?: string;
12583
+ /**
12584
+ *
12585
+ * @type {User}
12586
+ * @memberof QuestionComment
12587
+ */
12588
+ 'user'?: User;
12589
+ /**
12590
+ *
12591
+ * @type {string}
12592
+ * @memberof QuestionComment
12593
+ */
12594
+ 'questionId'?: string;
12595
+ /**
12596
+ *
12597
+ * @type {Question}
12598
+ * @memberof QuestionComment
12599
+ */
12600
+ 'question'?: Question;
12601
+ /**
12602
+ *
12603
+ * @type {string}
12604
+ * @memberof QuestionComment
12605
+ */
12606
+ 'body'?: string | null;
12607
+ /**
12608
+ *
12609
+ * @type {Array<Media>}
12610
+ * @memberof QuestionComment
12611
+ */
12612
+ 'medias'?: Array<Media> | null;
12613
+ /**
12614
+ *
12615
+ * @type {AuditableEntity}
12616
+ * @memberof QuestionComment
12617
+ */
12618
+ 'auditableEntity'?: AuditableEntity;
12619
+ }
12620
+ /**
12621
+ *
12622
+ * @export
12623
+ * @enum {string}
12624
+ */
12625
+
12626
+ export enum QuestionStatus {
12627
+ New = 'New',
12628
+ Answered = 'Answered',
12629
+ Replied = 'Replied',
12630
+ Archived = 'Archived'
12631
+ }
12632
+
12633
+ /**
12634
+ *
12635
+ * @export
12636
+ * @enum {string}
12637
+ */
12638
+
12639
+ export enum QuestionType {
12640
+ General = 'General',
12641
+ Health = 'Health',
12642
+ Treatment = 'Treatment',
12643
+ Travel = 'Travel',
12644
+ Consult = 'Consult'
12645
+ }
12646
+
9222
12647
  /**
9223
12648
  *
9224
12649
  * @export
@@ -9244,6 +12669,18 @@ export enum RefundPolicy {
9244
12669
  PartialRefundable = 'PartialRefundable'
9245
12670
  }
9246
12671
 
12672
+ /**
12673
+ *
12674
+ * @export
12675
+ * @enum {string}
12676
+ */
12677
+
12678
+ export enum RefundStatus {
12679
+ Pending = 'Pending',
12680
+ Succeeded = 'Succeeded',
12681
+ Failed = 'Failed'
12682
+ }
12683
+
9247
12684
  /**
9248
12685
  *
9249
12686
  * @export
@@ -9295,6 +12732,19 @@ export enum RejectReason {
9295
12732
  OtherReason = 'OtherReason'
9296
12733
  }
9297
12734
 
12735
+ /**
12736
+ *
12737
+ * @export
12738
+ * @enum {string}
12739
+ */
12740
+
12741
+ export enum ReviewCategory {
12742
+ Services = 'Services',
12743
+ Hospitality = 'Hospitality',
12744
+ Transfer = 'Transfer',
12745
+ Etc = 'Etc'
12746
+ }
12747
+
9298
12748
  /**
9299
12749
  *
9300
12750
  * @export
@@ -9320,6 +12770,133 @@ export interface SendTemplateVersionCommand {
9320
12770
  */
9321
12771
  'testEmail'?: string | null;
9322
12772
  }
12773
+ /**
12774
+ *
12775
+ * @export
12776
+ * @interface Service
12777
+ */
12778
+ export interface Service {
12779
+ /**
12780
+ *
12781
+ * @type {string}
12782
+ * @memberof Service
12783
+ */
12784
+ 'id'?: string;
12785
+ /**
12786
+ *
12787
+ * @type {string}
12788
+ * @memberof Service
12789
+ */
12790
+ 'name'?: string | null;
12791
+ /**
12792
+ *
12793
+ * @type {string}
12794
+ * @memberof Service
12795
+ */
12796
+ 'normalizedName'?: string | null;
12797
+ /**
12798
+ *
12799
+ * @type {string}
12800
+ * @memberof Service
12801
+ */
12802
+ 'description'?: string | null;
12803
+ /**
12804
+ *
12805
+ * @type {string}
12806
+ * @memberof Service
12807
+ */
12808
+ 'content'?: string | null;
12809
+ /**
12810
+ *
12811
+ * @type {string}
12812
+ * @memberof Service
12813
+ */
12814
+ 'hospitalId'?: string;
12815
+ /**
12816
+ *
12817
+ * @type {string}
12818
+ * @memberof Service
12819
+ */
12820
+ 'specialtyId'?: string;
12821
+ /**
12822
+ *
12823
+ * @type {string}
12824
+ * @memberof Service
12825
+ */
12826
+ 'packageServiceId'?: string;
12827
+ /**
12828
+ *
12829
+ * @type {string}
12830
+ * @memberof Service
12831
+ */
12832
+ 'hospitalSpecialtyId'?: string;
12833
+ /**
12834
+ *
12835
+ * @type {HospitalSpecialty}
12836
+ * @memberof Service
12837
+ */
12838
+ 'hospitalSpecialty'?: HospitalSpecialty;
12839
+ /**
12840
+ *
12841
+ * @type {Procedure}
12842
+ * @memberof Service
12843
+ */
12844
+ 'procedure'?: Procedure;
12845
+ /**
12846
+ *
12847
+ * @type {string}
12848
+ * @memberof Service
12849
+ */
12850
+ 'serviceCategoryId'?: string | null;
12851
+ /**
12852
+ *
12853
+ * @type {ServiceCategory}
12854
+ * @memberof Service
12855
+ */
12856
+ 'serviceCategory'?: ServiceCategory;
12857
+ /**
12858
+ *
12859
+ * @type {number}
12860
+ * @memberof Service
12861
+ */
12862
+ 'minPrice'?: number;
12863
+ /**
12864
+ *
12865
+ * @type {number}
12866
+ * @memberof Service
12867
+ */
12868
+ 'maxPrice'?: number;
12869
+ /**
12870
+ *
12871
+ * @type {boolean}
12872
+ * @memberof Service
12873
+ */
12874
+ 'priceReuqest'?: boolean;
12875
+ /**
12876
+ *
12877
+ * @type {number}
12878
+ * @memberof Service
12879
+ */
12880
+ 'order'?: number;
12881
+ /**
12882
+ *
12883
+ * @type {Array<ServiceReview>}
12884
+ * @memberof Service
12885
+ */
12886
+ 'serviceReviews'?: Array<ServiceReview> | null;
12887
+ /**
12888
+ *
12889
+ * @type {Array<Media>}
12890
+ * @memberof Service
12891
+ */
12892
+ 'medias'?: Array<Media> | null;
12893
+ /**
12894
+ *
12895
+ * @type {AuditableEntity}
12896
+ * @memberof Service
12897
+ */
12898
+ 'auditableEntity'?: AuditableEntity;
12899
+ }
9323
12900
  /**
9324
12901
  *
9325
12902
  * @export
@@ -9339,6 +12916,49 @@ export interface ServiceCategoriesModel {
9339
12916
  */
9340
12917
  'metaData'?: PagedListMetaData;
9341
12918
  }
12919
+ /**
12920
+ *
12921
+ * @export
12922
+ * @interface ServiceCategory
12923
+ */
12924
+ export interface ServiceCategory {
12925
+ /**
12926
+ *
12927
+ * @type {string}
12928
+ * @memberof ServiceCategory
12929
+ */
12930
+ 'id'?: string;
12931
+ /**
12932
+ *
12933
+ * @type {string}
12934
+ * @memberof ServiceCategory
12935
+ */
12936
+ 'name'?: string | null;
12937
+ /**
12938
+ *
12939
+ * @type {string}
12940
+ * @memberof ServiceCategory
12941
+ */
12942
+ 'normalizedName'?: string | null;
12943
+ /**
12944
+ *
12945
+ * @type {string}
12946
+ * @memberof ServiceCategory
12947
+ */
12948
+ 'description'?: string | null;
12949
+ /**
12950
+ *
12951
+ * @type {number}
12952
+ * @memberof ServiceCategory
12953
+ */
12954
+ 'order'?: number;
12955
+ /**
12956
+ *
12957
+ * @type {Array<Service>}
12958
+ * @memberof ServiceCategory
12959
+ */
12960
+ 'services'?: Array<Service> | null;
12961
+ }
9342
12962
  /**
9343
12963
  *
9344
12964
  * @export
@@ -9425,6 +13045,73 @@ export interface ServiceCategoryModel {
9425
13045
  */
9426
13046
  'serviceCount'?: number;
9427
13047
  }
13048
+ /**
13049
+ *
13050
+ * @export
13051
+ * @interface ServiceReview
13052
+ */
13053
+ export interface ServiceReview {
13054
+ /**
13055
+ *
13056
+ * @type {string}
13057
+ * @memberof ServiceReview
13058
+ */
13059
+ 'id'?: string;
13060
+ /**
13061
+ *
13062
+ * @type {string}
13063
+ * @memberof ServiceReview
13064
+ */
13065
+ 'serviceId'?: string;
13066
+ /**
13067
+ *
13068
+ * @type {Service}
13069
+ * @memberof ServiceReview
13070
+ */
13071
+ 'service'?: Service;
13072
+ /**
13073
+ *
13074
+ * @type {string}
13075
+ * @memberof ServiceReview
13076
+ */
13077
+ 'patientId'?: string | null;
13078
+ /**
13079
+ *
13080
+ * @type {Patient}
13081
+ * @memberof ServiceReview
13082
+ */
13083
+ 'patient'?: Patient;
13084
+ /**
13085
+ *
13086
+ * @type {string}
13087
+ * @memberof ServiceReview
13088
+ */
13089
+ 'body'?: string | null;
13090
+ /**
13091
+ *
13092
+ * @type {boolean}
13093
+ * @memberof ServiceReview
13094
+ */
13095
+ 'recommended'?: boolean;
13096
+ /**
13097
+ *
13098
+ * @type {number}
13099
+ * @memberof ServiceReview
13100
+ */
13101
+ 'rate'?: number;
13102
+ /**
13103
+ *
13104
+ * @type {ReviewType}
13105
+ * @memberof ServiceReview
13106
+ */
13107
+ 'reviewType'?: ReviewType;
13108
+ /**
13109
+ *
13110
+ * @type {Array<Media>}
13111
+ * @memberof ServiceReview
13112
+ */
13113
+ 'medias'?: Array<Media> | null;
13114
+ }
9428
13115
  /**
9429
13116
  *
9430
13117
  * @export
@@ -9578,6 +13265,31 @@ export interface ServiceReviewsModel {
9578
13265
  */
9579
13266
  'metaData'?: PagedListMetaData;
9580
13267
  }
13268
+ /**
13269
+ *
13270
+ * @export
13271
+ * @interface SnsHandle
13272
+ */
13273
+ export interface SnsHandle {
13274
+ /**
13275
+ *
13276
+ * @type {string}
13277
+ * @memberof SnsHandle
13278
+ */
13279
+ 'id'?: string;
13280
+ /**
13281
+ *
13282
+ * @type {SnsType}
13283
+ * @memberof SnsHandle
13284
+ */
13285
+ 'snsType'?: SnsType;
13286
+ /**
13287
+ *
13288
+ * @type {string}
13289
+ * @memberof SnsHandle
13290
+ */
13291
+ 'handle'?: string | null;
13292
+ }
9581
13293
  /**
9582
13294
  *
9583
13295
  * @export
@@ -9615,6 +13327,37 @@ export enum SnsType {
9615
13327
  Instagram = 'Instagram'
9616
13328
  }
9617
13329
 
13330
+ /**
13331
+ *
13332
+ * @export
13333
+ * @interface Source
13334
+ */
13335
+ export interface Source {
13336
+ /**
13337
+ *
13338
+ * @type {string}
13339
+ * @memberof Source
13340
+ */
13341
+ 'id'?: string;
13342
+ /**
13343
+ *
13344
+ * @type {string}
13345
+ * @memberof Source
13346
+ */
13347
+ 'name'?: string | null;
13348
+ /**
13349
+ *
13350
+ * @type {string}
13351
+ * @memberof Source
13352
+ */
13353
+ 'referenceUrl'?: string | null;
13354
+ /**
13355
+ *
13356
+ * @type {number}
13357
+ * @memberof Source
13358
+ */
13359
+ 'order'?: number;
13360
+ }
9618
13361
  /**
9619
13362
  *
9620
13363
  * @export
@@ -9665,6 +13408,79 @@ export interface SpecialtiesModel {
9665
13408
  */
9666
13409
  'metaData'?: PagedListMetaData;
9667
13410
  }
13411
+ /**
13412
+ *
13413
+ * @export
13414
+ * @interface Specialty
13415
+ */
13416
+ export interface Specialty {
13417
+ /**
13418
+ *
13419
+ * @type {string}
13420
+ * @memberof Specialty
13421
+ */
13422
+ 'id'?: string;
13423
+ /**
13424
+ *
13425
+ * @type {string}
13426
+ * @memberof Specialty
13427
+ */
13428
+ 'name'?: string | null;
13429
+ /**
13430
+ *
13431
+ * @type {string}
13432
+ * @memberof Specialty
13433
+ */
13434
+ 'normalizedName'?: string | null;
13435
+ /**
13436
+ *
13437
+ * @type {string}
13438
+ * @memberof Specialty
13439
+ */
13440
+ 'description'?: string | null;
13441
+ /**
13442
+ *
13443
+ * @type {string}
13444
+ * @memberof Specialty
13445
+ */
13446
+ 'content'?: string | null;
13447
+ /**
13448
+ *
13449
+ * @type {string}
13450
+ * @memberof Specialty
13451
+ */
13452
+ 'specialtyTypeId'?: string;
13453
+ /**
13454
+ *
13455
+ * @type {SpecialtyType}
13456
+ * @memberof Specialty
13457
+ */
13458
+ 'specialtyType'?: SpecialtyType;
13459
+ /**
13460
+ *
13461
+ * @type {Array<HospitalSpecialty>}
13462
+ * @memberof Specialty
13463
+ */
13464
+ 'hospitalSpecialties'?: Array<HospitalSpecialty> | null;
13465
+ /**
13466
+ *
13467
+ * @type {Array<DoctorSpecialty>}
13468
+ * @memberof Specialty
13469
+ */
13470
+ 'doctorSpecialties'?: Array<DoctorSpecialty> | null;
13471
+ /**
13472
+ *
13473
+ * @type {Array<Media>}
13474
+ * @memberof Specialty
13475
+ */
13476
+ 'medias'?: Array<Media> | null;
13477
+ /**
13478
+ *
13479
+ * @type {AuditableEntity}
13480
+ * @memberof Specialty
13481
+ */
13482
+ 'auditableEntity'?: AuditableEntity;
13483
+ }
9668
13484
  /**
9669
13485
  *
9670
13486
  * @export
@@ -9817,6 +13633,73 @@ export interface SpecialtyModel {
9817
13633
  */
9818
13634
  'languageCode'?: string | null;
9819
13635
  }
13636
+ /**
13637
+ *
13638
+ * @export
13639
+ * @interface SpecialtyType
13640
+ */
13641
+ export interface SpecialtyType {
13642
+ /**
13643
+ *
13644
+ * @type {string}
13645
+ * @memberof SpecialtyType
13646
+ */
13647
+ 'id'?: string;
13648
+ /**
13649
+ *
13650
+ * @type {string}
13651
+ * @memberof SpecialtyType
13652
+ */
13653
+ 'name'?: string | null;
13654
+ /**
13655
+ *
13656
+ * @type {string}
13657
+ * @memberof SpecialtyType
13658
+ */
13659
+ 'normalizedName'?: string | null;
13660
+ /**
13661
+ *
13662
+ * @type {string}
13663
+ * @memberof SpecialtyType
13664
+ */
13665
+ 'description'?: string | null;
13666
+ /**
13667
+ *
13668
+ * @type {string}
13669
+ * @memberof SpecialtyType
13670
+ */
13671
+ 'content'?: string | null;
13672
+ /**
13673
+ *
13674
+ * @type {MarketingType}
13675
+ * @memberof SpecialtyType
13676
+ */
13677
+ 'marketingType'?: MarketingType;
13678
+ /**
13679
+ *
13680
+ * @type {string}
13681
+ * @memberof SpecialtyType
13682
+ */
13683
+ 'specialtyTypeCategoryId'?: string | null;
13684
+ /**
13685
+ *
13686
+ * @type {Array<Specialty>}
13687
+ * @memberof SpecialtyType
13688
+ */
13689
+ 'specialties'?: Array<Specialty> | null;
13690
+ /**
13691
+ *
13692
+ * @type {Array<Media>}
13693
+ * @memberof SpecialtyType
13694
+ */
13695
+ 'medias'?: Array<Media> | null;
13696
+ /**
13697
+ *
13698
+ * @type {AuditableEntity}
13699
+ * @memberof SpecialtyType
13700
+ */
13701
+ 'auditableEntity'?: AuditableEntity;
13702
+ }
9820
13703
  /**
9821
13704
  *
9822
13705
  * @export
@@ -10057,6 +13940,37 @@ export interface SubscriptionModel {
10057
13940
  */
10058
13941
  'status'?: string | null;
10059
13942
  }
13943
+ /**
13944
+ *
13945
+ * @export
13946
+ * @interface Tag
13947
+ */
13948
+ export interface Tag {
13949
+ /**
13950
+ *
13951
+ * @type {string}
13952
+ * @memberof Tag
13953
+ */
13954
+ 'tagId'?: string | null;
13955
+ /**
13956
+ *
13957
+ * @type {string}
13958
+ * @memberof Tag
13959
+ */
13960
+ 'normalizedTagId'?: string | null;
13961
+ /**
13962
+ *
13963
+ * @type {Array<ArticleTag>}
13964
+ * @memberof Tag
13965
+ */
13966
+ 'articleTags'?: Array<ArticleTag> | null;
13967
+ /**
13968
+ *
13969
+ * @type {Array<YoutubeTag>}
13970
+ * @memberof Tag
13971
+ */
13972
+ 'youtubeTags'?: Array<YoutubeTag> | null;
13973
+ }
10060
13974
  /**
10061
13975
  *
10062
13976
  * @export
@@ -12085,6 +15999,152 @@ export interface UpdateTemplateVersionCommand {
12085
15999
  */
12086
16000
  'htmlContent'?: string | null;
12087
16001
  }
16002
+ /**
16003
+ *
16004
+ * @export
16005
+ * @interface User
16006
+ */
16007
+ export interface User {
16008
+ /**
16009
+ *
16010
+ * @type {string}
16011
+ * @memberof User
16012
+ */
16013
+ 'id'?: string;
16014
+ /**
16015
+ *
16016
+ * @type {string}
16017
+ * @memberof User
16018
+ */
16019
+ 'userName'?: string | null;
16020
+ /**
16021
+ *
16022
+ * @type {string}
16023
+ * @memberof User
16024
+ */
16025
+ 'email'?: string | null;
16026
+ /**
16027
+ *
16028
+ * @type {string}
16029
+ * @memberof User
16030
+ */
16031
+ 'firstName'?: string | null;
16032
+ /**
16033
+ *
16034
+ * @type {string}
16035
+ * @memberof User
16036
+ */
16037
+ 'lastName'?: string | null;
16038
+ /**
16039
+ *
16040
+ * @type {string}
16041
+ * @memberof User
16042
+ */
16043
+ 'normalizedName'?: string | null;
16044
+ /**
16045
+ *
16046
+ * @type {string}
16047
+ * @memberof User
16048
+ */
16049
+ 'phone'?: string | null;
16050
+ /**
16051
+ *
16052
+ * @type {string}
16053
+ * @memberof User
16054
+ */
16055
+ 'photo'?: string | null;
16056
+ /**
16057
+ *
16058
+ * @type {string}
16059
+ * @memberof User
16060
+ */
16061
+ 'photoThumbnail'?: string | null;
16062
+ /**
16063
+ *
16064
+ * @type {Gender}
16065
+ * @memberof User
16066
+ */
16067
+ 'gender'?: Gender;
16068
+ /**
16069
+ *
16070
+ * @type {Date}
16071
+ * @memberof User
16072
+ */
16073
+ 'dateOfBirth'?: Date | null;
16074
+ /**
16075
+ *
16076
+ * @type {string}
16077
+ * @memberof User
16078
+ */
16079
+ 'timeZone'?: string | null;
16080
+ /**
16081
+ *
16082
+ * @type {string}
16083
+ * @memberof User
16084
+ */
16085
+ 'communicationUserId'?: string | null;
16086
+ /**
16087
+ *
16088
+ * @type {string}
16089
+ * @memberof User
16090
+ */
16091
+ 'fullName'?: string | null;
16092
+ /**
16093
+ *
16094
+ * @type {Array<Device>}
16095
+ * @memberof User
16096
+ */
16097
+ 'devices'?: Array<Device> | null;
16098
+ /**
16099
+ *
16100
+ * @type {Array<Article>}
16101
+ * @memberof User
16102
+ */
16103
+ 'articles'?: Array<Article> | null;
16104
+ /**
16105
+ *
16106
+ * @type {Array<QuestionComment>}
16107
+ * @memberof User
16108
+ */
16109
+ 'questionComments'?: Array<QuestionComment> | null;
16110
+ /**
16111
+ *
16112
+ * @type {Array<UserLocation>}
16113
+ * @memberof User
16114
+ */
16115
+ 'locations'?: Array<UserLocation> | null;
16116
+ /**
16117
+ *
16118
+ * @type {Array<UserLanguage>}
16119
+ * @memberof User
16120
+ */
16121
+ 'languages'?: Array<UserLanguage> | null;
16122
+ /**
16123
+ *
16124
+ * @type {AuditableEntity}
16125
+ * @memberof User
16126
+ */
16127
+ 'auditableEntity'?: AuditableEntity;
16128
+ }
16129
+ /**
16130
+ *
16131
+ * @export
16132
+ * @interface UserLanguage
16133
+ */
16134
+ export interface UserLanguage {
16135
+ /**
16136
+ *
16137
+ * @type {string}
16138
+ * @memberof UserLanguage
16139
+ */
16140
+ 'id'?: string;
16141
+ /**
16142
+ *
16143
+ * @type {string}
16144
+ * @memberof UserLanguage
16145
+ */
16146
+ 'language'?: string | null;
16147
+ }
12088
16148
  /**
12089
16149
  *
12090
16150
  * @export
@@ -12104,6 +16164,67 @@ export interface UserLanguageModel {
12104
16164
  */
12105
16165
  'language'?: string | null;
12106
16166
  }
16167
+ /**
16168
+ *
16169
+ * @export
16170
+ * @interface UserLocation
16171
+ */
16172
+ export interface UserLocation {
16173
+ /**
16174
+ *
16175
+ * @type {number}
16176
+ * @memberof UserLocation
16177
+ */
16178
+ 'latitude'?: number;
16179
+ /**
16180
+ *
16181
+ * @type {number}
16182
+ * @memberof UserLocation
16183
+ */
16184
+ 'longitude'?: number;
16185
+ /**
16186
+ *
16187
+ * @type {string}
16188
+ * @memberof UserLocation
16189
+ */
16190
+ 'country'?: string | null;
16191
+ /**
16192
+ *
16193
+ * @type {string}
16194
+ * @memberof UserLocation
16195
+ */
16196
+ 'state'?: string | null;
16197
+ /**
16198
+ *
16199
+ * @type {string}
16200
+ * @memberof UserLocation
16201
+ */
16202
+ 'county'?: string | null;
16203
+ /**
16204
+ *
16205
+ * @type {string}
16206
+ * @memberof UserLocation
16207
+ */
16208
+ 'city'?: string | null;
16209
+ /**
16210
+ *
16211
+ * @type {string}
16212
+ * @memberof UserLocation
16213
+ */
16214
+ 'zipCode'?: string | null;
16215
+ /**
16216
+ *
16217
+ * @type {string}
16218
+ * @memberof UserLocation
16219
+ */
16220
+ 'address'?: string | null;
16221
+ /**
16222
+ *
16223
+ * @type {UserLocationType}
16224
+ * @memberof UserLocation
16225
+ */
16226
+ 'locationType'?: UserLocationType;
16227
+ }
12107
16228
  /**
12108
16229
  *
12109
16230
  * @export
@@ -12285,6 +16406,17 @@ export interface UserModel {
12285
16406
  */
12286
16407
  'locations'?: Array<UserLocationModel> | null;
12287
16408
  }
16409
+ /**
16410
+ *
16411
+ * @export
16412
+ * @enum {string}
16413
+ */
16414
+
16415
+ export enum VendorType {
16416
+ Stripe = 'Stripe',
16417
+ WeChat = 'WeChat'
16418
+ }
16419
+
12288
16420
  /**
12289
16421
  *
12290
16422
  * @export
@@ -12316,6 +16448,98 @@ export interface WeatherForecast {
12316
16448
  */
12317
16449
  'summary'?: string | null;
12318
16450
  }
16451
+ /**
16452
+ *
16453
+ * @export
16454
+ * @interface Youtube
16455
+ */
16456
+ export interface Youtube {
16457
+ /**
16458
+ *
16459
+ * @type {string}
16460
+ * @memberof Youtube
16461
+ */
16462
+ 'id'?: string;
16463
+ /**
16464
+ *
16465
+ * @type {string}
16466
+ * @memberof Youtube
16467
+ */
16468
+ 'title'?: string | null;
16469
+ /**
16470
+ *
16471
+ * @type {string}
16472
+ * @memberof Youtube
16473
+ */
16474
+ 'normalizedTitle'?: string | null;
16475
+ /**
16476
+ *
16477
+ * @type {string}
16478
+ * @memberof Youtube
16479
+ */
16480
+ 'description'?: string | null;
16481
+ /**
16482
+ *
16483
+ * @type {string}
16484
+ * @memberof Youtube
16485
+ */
16486
+ 'url'?: string | null;
16487
+ /**
16488
+ *
16489
+ * @type {Array<YoutubeTag>}
16490
+ * @memberof Youtube
16491
+ */
16492
+ 'youtubeTags'?: Array<YoutubeTag> | null;
16493
+ /**
16494
+ *
16495
+ * @type {MarketingType}
16496
+ * @memberof Youtube
16497
+ */
16498
+ 'marketingType'?: MarketingType;
16499
+ /**
16500
+ *
16501
+ * @type {AuditableEntity}
16502
+ * @memberof Youtube
16503
+ */
16504
+ 'auditableEntity'?: AuditableEntity;
16505
+ }
16506
+ /**
16507
+ *
16508
+ * @export
16509
+ * @interface YoutubeTag
16510
+ */
16511
+ export interface YoutubeTag {
16512
+ /**
16513
+ *
16514
+ * @type {string}
16515
+ * @memberof YoutubeTag
16516
+ */
16517
+ 'youtubeId'?: string;
16518
+ /**
16519
+ *
16520
+ * @type {Youtube}
16521
+ * @memberof YoutubeTag
16522
+ */
16523
+ 'youtube'?: Youtube;
16524
+ /**
16525
+ *
16526
+ * @type {string}
16527
+ * @memberof YoutubeTag
16528
+ */
16529
+ 'tagId'?: string | null;
16530
+ /**
16531
+ *
16532
+ * @type {Tag}
16533
+ * @memberof YoutubeTag
16534
+ */
16535
+ 'tag'?: Tag;
16536
+ /**
16537
+ *
16538
+ * @type {number}
16539
+ * @memberof YoutubeTag
16540
+ */
16541
+ 'order'?: number;
16542
+ }
12319
16543
 
12320
16544
  /**
12321
16545
  * AccreditationsApi - axios parameter creator
@@ -28401,13 +32625,14 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
28401
32625
  * @param {string} [languageCode]
28402
32626
  * @param {boolean} [showHidden]
28403
32627
  * @param {boolean} [returnDefaultValue]
32628
+ * @param {boolean} [includeServices]
28404
32629
  * @param {number} [page]
28405
32630
  * @param {number} [limit]
28406
32631
  * @param {Date} [lastRetrieved]
28407
32632
  * @param {*} [options] Override http request option.
28408
32633
  * @throws {RequiredError}
28409
32634
  */
28410
- apiV1HospitalsHospitalIdSpecialtiesGet: async (hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
32635
+ apiV1HospitalsHospitalIdSpecialtiesGet: async (hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
28411
32636
  // verify required parameter 'hospitalId' is not null or undefined
28412
32637
  assertParamExists('apiV1HospitalsHospitalIdSpecialtiesGet', 'hospitalId', hospitalId)
28413
32638
  const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties`
@@ -28467,6 +32692,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
28467
32692
  localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
28468
32693
  }
28469
32694
 
32695
+ if (includeServices !== undefined) {
32696
+ localVarQueryParameter['IncludeServices'] = includeServices;
32697
+ }
32698
+
28470
32699
  if (page !== undefined) {
28471
32700
  localVarQueryParameter['page'] = page;
28472
32701
  }
@@ -28583,10 +32812,11 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
28583
32812
  * @param {string} specialtyId
28584
32813
  * @param {string} [languageCode]
28585
32814
  * @param {boolean} [returnDefaultValue]
32815
+ * @param {boolean} [includeServices]
28586
32816
  * @param {*} [options] Override http request option.
28587
32817
  * @throws {RequiredError}
28588
32818
  */
28589
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: async (hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
32819
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: async (hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
28590
32820
  // verify required parameter 'hospitalId' is not null or undefined
28591
32821
  assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet', 'hospitalId', hospitalId)
28592
32822
  // verify required parameter 'specialtyId' is not null or undefined
@@ -28617,6 +32847,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
28617
32847
  localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
28618
32848
  }
28619
32849
 
32850
+ if (includeServices !== undefined) {
32851
+ localVarQueryParameter['includeServices'] = includeServices;
32852
+ }
32853
+
28620
32854
 
28621
32855
 
28622
32856
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -29890,14 +34124,15 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
29890
34124
  * @param {string} [languageCode]
29891
34125
  * @param {boolean} [showHidden]
29892
34126
  * @param {boolean} [returnDefaultValue]
34127
+ * @param {boolean} [includeServices]
29893
34128
  * @param {number} [page]
29894
34129
  * @param {number} [limit]
29895
34130
  * @param {Date} [lastRetrieved]
29896
34131
  * @param {*} [options] Override http request option.
29897
34132
  * @throws {RequiredError}
29898
34133
  */
29899
- async apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesModel>> {
29900
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options);
34134
+ async apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesModel>> {
34135
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options);
29901
34136
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
29902
34137
  },
29903
34138
  /**
@@ -29931,11 +34166,12 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
29931
34166
  * @param {string} specialtyId
29932
34167
  * @param {string} [languageCode]
29933
34168
  * @param {boolean} [returnDefaultValue]
34169
+ * @param {boolean} [includeServices]
29934
34170
  * @param {*} [options] Override http request option.
29935
34171
  * @throws {RequiredError}
29936
34172
  */
29937
- async apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>> {
29938
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, options);
34173
+ async apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>> {
34174
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options);
29939
34175
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
29940
34176
  },
29941
34177
  /**
@@ -30538,14 +34774,15 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
30538
34774
  * @param {string} [languageCode]
30539
34775
  * @param {boolean} [showHidden]
30540
34776
  * @param {boolean} [returnDefaultValue]
34777
+ * @param {boolean} [includeServices]
30541
34778
  * @param {number} [page]
30542
34779
  * @param {number} [limit]
30543
34780
  * @param {Date} [lastRetrieved]
30544
34781
  * @param {*} [options] Override http request option.
30545
34782
  * @throws {RequiredError}
30546
34783
  */
30547
- apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalSpecialtiesModel> {
30548
- return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
34784
+ apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalSpecialtiesModel> {
34785
+ return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
30549
34786
  },
30550
34787
  /**
30551
34788
  *
@@ -30576,11 +34813,12 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
30576
34813
  * @param {string} specialtyId
30577
34814
  * @param {string} [languageCode]
30578
34815
  * @param {boolean} [returnDefaultValue]
34816
+ * @param {boolean} [includeServices]
30579
34817
  * @param {*} [options] Override http request option.
30580
34818
  * @throws {RequiredError}
30581
34819
  */
30582
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<HospitalSpecialtyModel> {
30583
- return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, options).then((request) => request(axios, basePath));
34820
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: any): AxiosPromise<HospitalSpecialtyModel> {
34821
+ return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options).then((request) => request(axios, basePath));
30584
34822
  },
30585
34823
  /**
30586
34824
  *
@@ -31224,6 +35462,7 @@ export class HospitalsApi extends BaseAPI {
31224
35462
  * @param {string} [languageCode]
31225
35463
  * @param {boolean} [showHidden]
31226
35464
  * @param {boolean} [returnDefaultValue]
35465
+ * @param {boolean} [includeServices]
31227
35466
  * @param {number} [page]
31228
35467
  * @param {number} [limit]
31229
35468
  * @param {Date} [lastRetrieved]
@@ -31231,8 +35470,8 @@ export class HospitalsApi extends BaseAPI {
31231
35470
  * @throws {RequiredError}
31232
35471
  * @memberof HospitalsApi
31233
35472
  */
31234
- public apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
31235
- return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
35473
+ public apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
35474
+ return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
31236
35475
  }
31237
35476
 
31238
35477
  /**
@@ -31268,12 +35507,13 @@ export class HospitalsApi extends BaseAPI {
31268
35507
  * @param {string} specialtyId
31269
35508
  * @param {string} [languageCode]
31270
35509
  * @param {boolean} [returnDefaultValue]
35510
+ * @param {boolean} [includeServices]
31271
35511
  * @param {*} [options] Override http request option.
31272
35512
  * @throws {RequiredError}
31273
35513
  * @memberof HospitalsApi
31274
35514
  */
31275
- public apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) {
31276
- return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, options).then((request) => request(this.axios, this.basePath));
35515
+ public apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig) {
35516
+ return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options).then((request) => request(this.axios, this.basePath));
31277
35517
  }
31278
35518
 
31279
35519
  /**