ch-api-client-typescript2 3.3.6 → 3.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. package/lib/api.d.ts +1013 -1124
  2. package/lib/api.d.ts.map +1 -1
  3. package/lib/api.js +383 -280
  4. package/package.json +1 -1
  5. package/src/api.ts +1193 -1260
package/lib/api.d.ts CHANGED
@@ -29,19 +29,7 @@ export interface AboutUsPageItemModel {
29
29
  * @type {string}
30
30
  * @memberof AboutUsPageItemModel
31
31
  */
32
- 'hospitalId'?: string;
33
- /**
34
- *
35
- * @type {string}
36
- * @memberof AboutUsPageItemModel
37
- */
38
- 'hospitalName'?: string | null;
39
- /**
40
- *
41
- * @type {string}
42
- * @memberof AboutUsPageItemModel
43
- */
44
- 'hospitalSlug'?: string | null;
32
+ 'languageCode'?: string | null;
45
33
  /**
46
34
  *
47
35
  * @type {string}
@@ -54,24 +42,12 @@ export interface AboutUsPageItemModel {
54
42
  * @memberof AboutUsPageItemModel
55
43
  */
56
44
  'slug'?: string | null;
57
- /**
58
- *
59
- * @type {string}
60
- * @memberof AboutUsPageItemModel
61
- */
62
- 'description'?: string | null;
63
45
  /**
64
46
  *
65
47
  * @type {boolean}
66
48
  * @memberof AboutUsPageItemModel
67
49
  */
68
50
  'confirmed'?: boolean;
69
- /**
70
- *
71
- * @type {Array<MediaModel>}
72
- * @memberof AboutUsPageItemModel
73
- */
74
- 'medias'?: Array<MediaModel> | null;
75
51
  /**
76
52
  *
77
53
  * @type {AuditableEntity}
@@ -96,19 +72,7 @@ export interface AboutUsPageModel {
96
72
  * @type {string}
97
73
  * @memberof AboutUsPageModel
98
74
  */
99
- 'hospitalId'?: string;
100
- /**
101
- *
102
- * @type {string}
103
- * @memberof AboutUsPageModel
104
- */
105
- 'hospitalName'?: string | null;
106
- /**
107
- *
108
- * @type {string}
109
- * @memberof AboutUsPageModel
110
- */
111
- 'hospitalSlug'?: string | null;
75
+ 'languageCode'?: string | null;
112
76
  /**
113
77
  *
114
78
  * @type {string}
@@ -121,12 +85,6 @@ export interface AboutUsPageModel {
121
85
  * @memberof AboutUsPageModel
122
86
  */
123
87
  'slug'?: string | null;
124
- /**
125
- *
126
- * @type {string}
127
- * @memberof AboutUsPageModel
128
- */
129
- 'description'?: string | null;
130
88
  /**
131
89
  *
132
90
  * @type {boolean}
@@ -135,22 +93,22 @@ export interface AboutUsPageModel {
135
93
  'confirmed'?: boolean;
136
94
  /**
137
95
  *
138
- * @type {Array<MediaModel>}
96
+ * @type {AuditableEntity}
139
97
  * @memberof AboutUsPageModel
140
98
  */
141
- 'medias'?: Array<MediaModel> | null;
99
+ 'auditableEntity'?: AuditableEntity;
142
100
  /**
143
101
  *
144
- * @type {AuditableEntity}
102
+ * @type {string}
145
103
  * @memberof AboutUsPageModel
146
104
  */
147
- 'auditableEntity'?: AuditableEntity;
105
+ 'description'?: string | null;
148
106
  /**
149
107
  *
150
108
  * @type {string}
151
109
  * @memberof AboutUsPageModel
152
110
  */
153
- 'languageCode'?: string | null;
111
+ 'overview'?: string | null;
154
112
  /**
155
113
  *
156
114
  * @type {string}
@@ -181,6 +139,12 @@ export interface AboutUsPageModel {
181
139
  * @memberof AboutUsPageModel
182
140
  */
183
141
  'localizedUrls'?: Array<LocalizedUrlModel> | null;
142
+ /**
143
+ *
144
+ * @type {Array<MediaModel>}
145
+ * @memberof AboutUsPageModel
146
+ */
147
+ 'medias'?: Array<MediaModel> | null;
184
148
  }
185
149
  /**
186
150
  *
@@ -367,6 +331,12 @@ export interface ArticleContributorItemModel {
367
331
  * @memberof ArticleContributorItemModel
368
332
  */
369
333
  'contributorId'?: string;
334
+ /**
335
+ *
336
+ * @type {string}
337
+ * @memberof ArticleContributorItemModel
338
+ */
339
+ 'languageCode'?: string | null;
370
340
  /**
371
341
  *
372
342
  * @type {string}
@@ -381,28 +351,28 @@ export interface ArticleContributorItemModel {
381
351
  'contributorSlug'?: string | null;
382
352
  /**
383
353
  *
384
- * @type {string}
354
+ * @type {boolean}
385
355
  * @memberof ArticleContributorItemModel
386
356
  */
387
- 'contributorEmail'?: string | null;
357
+ 'contributorConfirmed'?: boolean;
388
358
  /**
389
359
  *
390
360
  * @type {string}
391
361
  * @memberof ArticleContributorItemModel
392
362
  */
393
- 'contributorPhoto'?: string | null;
363
+ 'contributorEmail'?: string | null;
394
364
  /**
395
365
  *
396
366
  * @type {string}
397
367
  * @memberof ArticleContributorItemModel
398
368
  */
399
- 'contributorPhotoThumbnail'?: string | null;
369
+ 'contributorPhoto'?: string | null;
400
370
  /**
401
371
  *
402
372
  * @type {string}
403
373
  * @memberof ArticleContributorItemModel
404
374
  */
405
- 'contributorDescription'?: string | null;
375
+ 'contributorPhotoThumbnail'?: string | null;
406
376
  /**
407
377
  *
408
378
  * @type {ContributionType}
@@ -421,24 +391,12 @@ export interface ArticleContributorItemModel {
421
391
  * @memberof ArticleContributorItemModel
422
392
  */
423
393
  'order'?: number;
424
- /**
425
- *
426
- * @type {boolean}
427
- * @memberof ArticleContributorItemModel
428
- */
429
- 'confirmed'?: boolean;
430
394
  /**
431
395
  *
432
396
  * @type {AuditableEntity}
433
397
  * @memberof ArticleContributorItemModel
434
398
  */
435
399
  'auditableEntity'?: AuditableEntity;
436
- /**
437
- *
438
- * @type {Array<SnsHandleModel>}
439
- * @memberof ArticleContributorItemModel
440
- */
441
- 'contributorSnsHandles'?: Array<SnsHandleModel> | null;
442
400
  }
443
401
  /**
444
402
  *
@@ -458,6 +416,12 @@ export interface ArticleContributorModel {
458
416
  * @memberof ArticleContributorModel
459
417
  */
460
418
  'contributorId'?: string;
419
+ /**
420
+ *
421
+ * @type {string}
422
+ * @memberof ArticleContributorModel
423
+ */
424
+ 'languageCode'?: string | null;
461
425
  /**
462
426
  *
463
427
  * @type {string}
@@ -472,28 +436,28 @@ export interface ArticleContributorModel {
472
436
  'contributorSlug'?: string | null;
473
437
  /**
474
438
  *
475
- * @type {string}
439
+ * @type {boolean}
476
440
  * @memberof ArticleContributorModel
477
441
  */
478
- 'contributorEmail'?: string | null;
442
+ 'contributorConfirmed'?: boolean;
479
443
  /**
480
444
  *
481
445
  * @type {string}
482
446
  * @memberof ArticleContributorModel
483
447
  */
484
- 'contributorPhoto'?: string | null;
448
+ 'contributorEmail'?: string | null;
485
449
  /**
486
450
  *
487
451
  * @type {string}
488
452
  * @memberof ArticleContributorModel
489
453
  */
490
- 'contributorPhotoThumbnail'?: string | null;
454
+ 'contributorPhoto'?: string | null;
491
455
  /**
492
456
  *
493
457
  * @type {string}
494
458
  * @memberof ArticleContributorModel
495
459
  */
496
- 'contributorDescription'?: string | null;
460
+ 'contributorPhotoThumbnail'?: string | null;
497
461
  /**
498
462
  *
499
463
  * @type {ContributionType}
@@ -512,12 +476,6 @@ export interface ArticleContributorModel {
512
476
  * @memberof ArticleContributorModel
513
477
  */
514
478
  'order'?: number;
515
- /**
516
- *
517
- * @type {boolean}
518
- * @memberof ArticleContributorModel
519
- */
520
- 'confirmed'?: boolean;
521
479
  /**
522
480
  *
523
481
  * @type {AuditableEntity}
@@ -526,28 +484,28 @@ export interface ArticleContributorModel {
526
484
  'auditableEntity'?: AuditableEntity;
527
485
  /**
528
486
  *
529
- * @type {Array<SnsHandleModel>}
487
+ * @type {string}
530
488
  * @memberof ArticleContributorModel
531
489
  */
532
- 'contributorSnsHandles'?: Array<SnsHandleModel> | null;
490
+ 'contributorDescription'?: string | null;
533
491
  /**
534
492
  *
535
493
  * @type {string}
536
494
  * @memberof ArticleContributorModel
537
495
  */
538
- 'languageCode'?: string | null;
496
+ 'contributorOverview'?: string | null;
539
497
  /**
540
498
  *
541
499
  * @type {string}
542
500
  * @memberof ArticleContributorModel
543
501
  */
544
- 'content'?: string | null;
502
+ 'contributorContent'?: string | null;
545
503
  /**
546
504
  *
547
505
  * @type {Array<SnsHandle>}
548
506
  * @memberof ArticleContributorModel
549
507
  */
550
- 'snsHandles'?: Array<SnsHandle> | null;
508
+ 'contributorSnsHandles'?: Array<SnsHandle> | null;
551
509
  /**
552
510
  *
553
511
  * @type {Array<LocalizedUrlModel>}
@@ -591,31 +549,25 @@ export interface ArticleItemModel {
591
549
  * @type {string}
592
550
  * @memberof ArticleItemModel
593
551
  */
594
- 'name'?: string | null;
595
- /**
596
- *
597
- * @type {string}
598
- * @memberof ArticleItemModel
599
- */
600
- 'slug'?: string | null;
552
+ 'languageCode'?: string | null;
601
553
  /**
602
554
  *
603
555
  * @type {string}
604
556
  * @memberof ArticleItemModel
605
557
  */
606
- 'description'?: string | null;
558
+ 'name'?: string | null;
607
559
  /**
608
560
  *
609
561
  * @type {string}
610
562
  * @memberof ArticleItemModel
611
563
  */
612
- 'body'?: string | null;
564
+ 'slug'?: string | null;
613
565
  /**
614
566
  *
615
- * @type {ArticleStatus}
567
+ * @type {boolean}
616
568
  * @memberof ArticleItemModel
617
569
  */
618
- 'status'?: ArticleStatus;
570
+ 'confirmed'?: boolean;
619
571
  /**
620
572
  *
621
573
  * @type {MarketingType}
@@ -652,42 +604,6 @@ export interface ArticleItemModel {
652
604
  * @memberof ArticleItemModel
653
605
  */
654
606
  'hospitalSlug'?: string | null;
655
- /**
656
- *
657
- * @type {string}
658
- * @memberof ArticleItemModel
659
- */
660
- 'youtubeUrl'?: string | null;
661
- /**
662
- *
663
- * @type {boolean}
664
- * @memberof ArticleItemModel
665
- */
666
- 'confirmed'?: boolean;
667
- /**
668
- *
669
- * @type {Array<ArticleTagItemModel>}
670
- * @memberof ArticleItemModel
671
- */
672
- 'articleTags'?: Array<ArticleTagItemModel> | null;
673
- /**
674
- *
675
- * @type {Array<ArticleContributorItemModel>}
676
- * @memberof ArticleItemModel
677
- */
678
- 'articleContributors'?: Array<ArticleContributorItemModel> | null;
679
- /**
680
- *
681
- * @type {Array<MediaModel>}
682
- * @memberof ArticleItemModel
683
- */
684
- 'medias'?: Array<MediaModel> | null;
685
- /**
686
- *
687
- * @type {Array<SourceModel>}
688
- * @memberof ArticleItemModel
689
- */
690
- 'sources'?: Array<SourceModel> | null;
691
607
  /**
692
608
  *
693
609
  * @type {AuditableEntity}
@@ -712,31 +628,25 @@ export interface ArticleModel {
712
628
  * @type {string}
713
629
  * @memberof ArticleModel
714
630
  */
715
- 'name'?: string | null;
716
- /**
717
- *
718
- * @type {string}
719
- * @memberof ArticleModel
720
- */
721
- 'slug'?: string | null;
631
+ 'languageCode'?: string | null;
722
632
  /**
723
633
  *
724
634
  * @type {string}
725
635
  * @memberof ArticleModel
726
636
  */
727
- 'description'?: string | null;
637
+ 'name'?: string | null;
728
638
  /**
729
639
  *
730
640
  * @type {string}
731
641
  * @memberof ArticleModel
732
642
  */
733
- 'body'?: string | null;
643
+ 'slug'?: string | null;
734
644
  /**
735
645
  *
736
- * @type {ArticleStatus}
646
+ * @type {boolean}
737
647
  * @memberof ArticleModel
738
648
  */
739
- 'status'?: ArticleStatus;
649
+ 'confirmed'?: boolean;
740
650
  /**
741
651
  *
742
652
  * @type {MarketingType}
@@ -775,58 +685,46 @@ export interface ArticleModel {
775
685
  'hospitalSlug'?: string | null;
776
686
  /**
777
687
  *
778
- * @type {string}
779
- * @memberof ArticleModel
780
- */
781
- 'youtubeUrl'?: string | null;
782
- /**
783
- *
784
- * @type {boolean}
785
- * @memberof ArticleModel
786
- */
787
- 'confirmed'?: boolean;
788
- /**
789
- *
790
- * @type {Array<ArticleTagItemModel>}
688
+ * @type {AuditableEntity}
791
689
  * @memberof ArticleModel
792
690
  */
793
- 'articleTags'?: Array<ArticleTagItemModel> | null;
691
+ 'auditableEntity'?: AuditableEntity;
794
692
  /**
795
693
  *
796
- * @type {Array<ArticleContributorItemModel>}
694
+ * @type {string}
797
695
  * @memberof ArticleModel
798
696
  */
799
- 'articleContributors'?: Array<ArticleContributorItemModel> | null;
697
+ 'description'?: string | null;
800
698
  /**
801
699
  *
802
- * @type {Array<MediaModel>}
700
+ * @type {string}
803
701
  * @memberof ArticleModel
804
702
  */
805
- 'medias'?: Array<MediaModel> | null;
703
+ 'overview'?: string | null;
806
704
  /**
807
705
  *
808
- * @type {Array<SourceModel>}
706
+ * @type {string}
809
707
  * @memberof ArticleModel
810
708
  */
811
- 'sources'?: Array<SourceModel> | null;
709
+ 'content'?: string | null;
812
710
  /**
813
711
  *
814
- * @type {AuditableEntity}
712
+ * @type {string}
815
713
  * @memberof ArticleModel
816
714
  */
817
- 'auditableEntity'?: AuditableEntity;
715
+ 'youtubeUrl'?: string | null;
818
716
  /**
819
717
  *
820
- * @type {string}
718
+ * @type {Array<ArticleTagItemModel>}
821
719
  * @memberof ArticleModel
822
720
  */
823
- 'content'?: string | null;
721
+ 'articleTags'?: Array<ArticleTagItemModel> | null;
824
722
  /**
825
723
  *
826
- * @type {string}
724
+ * @type {Array<MediaModel>}
827
725
  * @memberof ArticleModel
828
726
  */
829
- 'languageCode'?: string | null;
727
+ 'medias'?: Array<MediaModel> | null;
830
728
  /**
831
729
  *
832
730
  * @type {Array<LocalizedUrlModel>}
@@ -1080,6 +978,12 @@ export interface BookingItemModel {
1080
978
  * @memberof BookingItemModel
1081
979
  */
1082
980
  'id'?: string;
981
+ /**
982
+ *
983
+ * @type {string}
984
+ * @memberof BookingItemModel
985
+ */
986
+ 'languageCode'?: string | null;
1083
987
  /**
1084
988
  *
1085
989
  * @type {string}
@@ -1103,103 +1007,103 @@ export interface BookingItemModel {
1103
1007
  * @type {string}
1104
1008
  * @memberof BookingItemModel
1105
1009
  */
1106
- 'hospitalId'?: string;
1010
+ 'firstName'?: string | null;
1107
1011
  /**
1108
1012
  *
1109
1013
  * @type {string}
1110
1014
  * @memberof BookingItemModel
1111
1015
  */
1112
- 'hospitalName'?: string | null;
1016
+ 'lastName'?: string | null;
1113
1017
  /**
1114
1018
  *
1115
1019
  * @type {string}
1116
1020
  * @memberof BookingItemModel
1117
1021
  */
1118
- 'hospitalSlug'?: string | null;
1022
+ 'email'?: string | null;
1119
1023
  /**
1120
1024
  *
1121
1025
  * @type {string}
1122
1026
  * @memberof BookingItemModel
1123
1027
  */
1124
- 'hospitalTimeZone'?: string | null;
1028
+ 'phone'?: string | null;
1125
1029
  /**
1126
1030
  *
1127
- * @type {string}
1031
+ * @type {Date}
1128
1032
  * @memberof BookingItemModel
1129
1033
  */
1130
- 'dealId'?: string;
1034
+ 'dateOfBirth'?: Date | null;
1131
1035
  /**
1132
1036
  *
1133
- * @type {string}
1037
+ * @type {Gender}
1134
1038
  * @memberof BookingItemModel
1135
1039
  */
1136
- 'dealName'?: string | null;
1040
+ 'gender'?: Gender;
1137
1041
  /**
1138
1042
  *
1139
1043
  * @type {string}
1140
1044
  * @memberof BookingItemModel
1141
1045
  */
1142
- 'dealSlug'?: string | null;
1046
+ 'comment'?: string | null;
1143
1047
  /**
1144
1048
  *
1145
1049
  * @type {string}
1146
1050
  * @memberof BookingItemModel
1147
1051
  */
1148
- 'dealPackageId'?: string;
1052
+ 'hospitalId'?: string;
1149
1053
  /**
1150
1054
  *
1151
- * @type {RefundPolicy}
1055
+ * @type {string}
1152
1056
  * @memberof BookingItemModel
1153
1057
  */
1154
- 'refundPolicy'?: RefundPolicy;
1058
+ 'hospitalName'?: string | null;
1155
1059
  /**
1156
1060
  *
1157
- * @type {number}
1061
+ * @type {string}
1158
1062
  * @memberof BookingItemModel
1159
1063
  */
1160
- 'quantity'?: number;
1064
+ 'hospitalSlug'?: string | null;
1161
1065
  /**
1162
1066
  *
1163
1067
  * @type {string}
1164
1068
  * @memberof BookingItemModel
1165
1069
  */
1166
- 'firstName'?: string | null;
1070
+ 'hospitalTimeZone'?: string | null;
1167
1071
  /**
1168
1072
  *
1169
1073
  * @type {string}
1170
1074
  * @memberof BookingItemModel
1171
1075
  */
1172
- 'lastName'?: string | null;
1076
+ 'dealId'?: string;
1173
1077
  /**
1174
1078
  *
1175
1079
  * @type {string}
1176
1080
  * @memberof BookingItemModel
1177
1081
  */
1178
- 'email'?: string | null;
1082
+ 'dealName'?: string | null;
1179
1083
  /**
1180
1084
  *
1181
1085
  * @type {string}
1182
1086
  * @memberof BookingItemModel
1183
1087
  */
1184
- 'phone'?: string | null;
1088
+ 'dealSlug'?: string | null;
1185
1089
  /**
1186
1090
  *
1187
- * @type {Date}
1091
+ * @type {string}
1188
1092
  * @memberof BookingItemModel
1189
1093
  */
1190
- 'dateOfBirth'?: Date | null;
1094
+ 'dealPackageId'?: string;
1191
1095
  /**
1192
1096
  *
1193
- * @type {Gender}
1097
+ * @type {RefundPolicy}
1194
1098
  * @memberof BookingItemModel
1195
1099
  */
1196
- 'gender'?: Gender;
1100
+ 'refundPolicy'?: RefundPolicy;
1197
1101
  /**
1198
1102
  *
1199
- * @type {string}
1103
+ * @type {number}
1200
1104
  * @memberof BookingItemModel
1201
1105
  */
1202
- 'comment'?: string | null;
1106
+ 'quantity'?: number;
1203
1107
  /**
1204
1108
  *
1205
1109
  * @type {Date}
@@ -1272,12 +1176,6 @@ export interface BookingItemModel {
1272
1176
  * @memberof BookingItemModel
1273
1177
  */
1274
1178
  'isOpen'?: boolean;
1275
- /**
1276
- *
1277
- * @type {number}
1278
- * @memberof BookingItemModel
1279
- */
1280
- 'completionRate'?: number;
1281
1179
  /**
1282
1180
  *
1283
1181
  * @type {boolean}
@@ -1297,6 +1195,12 @@ export interface BookingModel {
1297
1195
  * @memberof BookingModel
1298
1196
  */
1299
1197
  'id'?: string;
1198
+ /**
1199
+ *
1200
+ * @type {string}
1201
+ * @memberof BookingModel
1202
+ */
1203
+ 'languageCode'?: string | null;
1300
1204
  /**
1301
1205
  *
1302
1206
  * @type {string}
@@ -1320,103 +1224,103 @@ export interface BookingModel {
1320
1224
  * @type {string}
1321
1225
  * @memberof BookingModel
1322
1226
  */
1323
- 'hospitalId'?: string;
1227
+ 'firstName'?: string | null;
1324
1228
  /**
1325
1229
  *
1326
1230
  * @type {string}
1327
1231
  * @memberof BookingModel
1328
1232
  */
1329
- 'hospitalName'?: string | null;
1233
+ 'lastName'?: string | null;
1330
1234
  /**
1331
1235
  *
1332
1236
  * @type {string}
1333
1237
  * @memberof BookingModel
1334
1238
  */
1335
- 'hospitalSlug'?: string | null;
1239
+ 'email'?: string | null;
1336
1240
  /**
1337
1241
  *
1338
1242
  * @type {string}
1339
1243
  * @memberof BookingModel
1340
1244
  */
1341
- 'hospitalTimeZone'?: string | null;
1245
+ 'phone'?: string | null;
1342
1246
  /**
1343
1247
  *
1344
- * @type {string}
1248
+ * @type {Date}
1345
1249
  * @memberof BookingModel
1346
1250
  */
1347
- 'dealId'?: string;
1251
+ 'dateOfBirth'?: Date | null;
1348
1252
  /**
1349
1253
  *
1350
- * @type {string}
1254
+ * @type {Gender}
1351
1255
  * @memberof BookingModel
1352
1256
  */
1353
- 'dealName'?: string | null;
1257
+ 'gender'?: Gender;
1354
1258
  /**
1355
1259
  *
1356
1260
  * @type {string}
1357
1261
  * @memberof BookingModel
1358
1262
  */
1359
- 'dealSlug'?: string | null;
1263
+ 'comment'?: string | null;
1360
1264
  /**
1361
1265
  *
1362
1266
  * @type {string}
1363
1267
  * @memberof BookingModel
1364
1268
  */
1365
- 'dealPackageId'?: string;
1269
+ 'hospitalId'?: string;
1366
1270
  /**
1367
1271
  *
1368
- * @type {RefundPolicy}
1272
+ * @type {string}
1369
1273
  * @memberof BookingModel
1370
1274
  */
1371
- 'refundPolicy'?: RefundPolicy;
1275
+ 'hospitalName'?: string | null;
1372
1276
  /**
1373
1277
  *
1374
- * @type {number}
1278
+ * @type {string}
1375
1279
  * @memberof BookingModel
1376
1280
  */
1377
- 'quantity'?: number;
1281
+ 'hospitalSlug'?: string | null;
1378
1282
  /**
1379
1283
  *
1380
1284
  * @type {string}
1381
1285
  * @memberof BookingModel
1382
1286
  */
1383
- 'firstName'?: string | null;
1287
+ 'hospitalTimeZone'?: string | null;
1384
1288
  /**
1385
1289
  *
1386
1290
  * @type {string}
1387
1291
  * @memberof BookingModel
1388
1292
  */
1389
- 'lastName'?: string | null;
1293
+ 'dealId'?: string;
1390
1294
  /**
1391
1295
  *
1392
1296
  * @type {string}
1393
1297
  * @memberof BookingModel
1394
1298
  */
1395
- 'email'?: string | null;
1299
+ 'dealName'?: string | null;
1396
1300
  /**
1397
1301
  *
1398
1302
  * @type {string}
1399
1303
  * @memberof BookingModel
1400
1304
  */
1401
- 'phone'?: string | null;
1305
+ 'dealSlug'?: string | null;
1402
1306
  /**
1403
1307
  *
1404
- * @type {Date}
1308
+ * @type {string}
1405
1309
  * @memberof BookingModel
1406
1310
  */
1407
- 'dateOfBirth'?: Date | null;
1311
+ 'dealPackageId'?: string;
1408
1312
  /**
1409
1313
  *
1410
- * @type {Gender}
1314
+ * @type {RefundPolicy}
1411
1315
  * @memberof BookingModel
1412
1316
  */
1413
- 'gender'?: Gender;
1317
+ 'refundPolicy'?: RefundPolicy;
1414
1318
  /**
1415
1319
  *
1416
- * @type {string}
1320
+ * @type {number}
1417
1321
  * @memberof BookingModel
1418
1322
  */
1419
- 'comment'?: string | null;
1323
+ 'quantity'?: number;
1420
1324
  /**
1421
1325
  *
1422
1326
  * @type {Date}
@@ -1489,12 +1393,6 @@ export interface BookingModel {
1489
1393
  * @memberof BookingModel
1490
1394
  */
1491
1395
  'isOpen'?: boolean;
1492
- /**
1493
- *
1494
- * @type {number}
1495
- * @memberof BookingModel
1496
- */
1497
- 'completionRate'?: number;
1498
1396
  /**
1499
1397
  *
1500
1398
  * @type {boolean}
@@ -1740,6 +1638,12 @@ export interface ConsultationItemModel {
1740
1638
  * @memberof ConsultationItemModel
1741
1639
  */
1742
1640
  'id'?: string;
1641
+ /**
1642
+ *
1643
+ * @type {string}
1644
+ * @memberof ConsultationItemModel
1645
+ */
1646
+ 'languageCode'?: string | null;
1743
1647
  /**
1744
1648
  *
1745
1649
  * @type {ConsultationType}
@@ -1769,139 +1673,115 @@ export interface ConsultationItemModel {
1769
1673
  * @type {string}
1770
1674
  * @memberof ConsultationItemModel
1771
1675
  */
1772
- 'communicationUserId'?: string | null;
1773
- /**
1774
- *
1775
- * @type {string}
1776
- * @memberof ConsultationItemModel
1777
- */
1778
- 'hospitalId'?: string;
1676
+ 'firstName'?: string | null;
1779
1677
  /**
1780
1678
  *
1781
1679
  * @type {string}
1782
1680
  * @memberof ConsultationItemModel
1783
1681
  */
1784
- 'hospitalName'?: string | null;
1682
+ 'lastName'?: string | null;
1785
1683
  /**
1786
1684
  *
1787
1685
  * @type {string}
1788
1686
  * @memberof ConsultationItemModel
1789
1687
  */
1790
- 'hospitalSlug'?: string | null;
1688
+ 'email'?: string | null;
1791
1689
  /**
1792
1690
  *
1793
1691
  * @type {string}
1794
1692
  * @memberof ConsultationItemModel
1795
1693
  */
1796
- 'hospitalTimeZone'?: string | null;
1694
+ 'phone'?: string | null;
1797
1695
  /**
1798
1696
  *
1799
- * @type {string}
1697
+ * @type {Date}
1800
1698
  * @memberof ConsultationItemModel
1801
1699
  */
1802
- 'specialtyId'?: string | null;
1700
+ 'dateOfBirth'?: Date | null;
1803
1701
  /**
1804
1702
  *
1805
- * @type {string}
1703
+ * @type {Gender}
1806
1704
  * @memberof ConsultationItemModel
1807
1705
  */
1808
- 'specialtyName'?: string | null;
1706
+ 'gender'?: Gender;
1809
1707
  /**
1810
1708
  *
1811
1709
  * @type {string}
1812
1710
  * @memberof ConsultationItemModel
1813
1711
  */
1814
- 'specialtySlug'?: string | null;
1712
+ 'comment'?: string | null;
1815
1713
  /**
1816
1714
  *
1817
1715
  * @type {string}
1818
1716
  * @memberof ConsultationItemModel
1819
1717
  */
1820
- 'doctorId'?: string | null;
1718
+ 'hospitalId'?: string;
1821
1719
  /**
1822
1720
  *
1823
1721
  * @type {string}
1824
1722
  * @memberof ConsultationItemModel
1825
1723
  */
1826
- 'doctorName'?: string | null;
1724
+ 'hospitalName'?: string | null;
1827
1725
  /**
1828
1726
  *
1829
1727
  * @type {string}
1830
1728
  * @memberof ConsultationItemModel
1831
1729
  */
1832
- 'doctorSlug'?: string | null;
1730
+ 'hospitalSlug'?: string | null;
1833
1731
  /**
1834
1732
  *
1835
1733
  * @type {string}
1836
1734
  * @memberof ConsultationItemModel
1837
1735
  */
1838
- 'dealId'?: string | null;
1736
+ 'hospitalTimeZone'?: string | null;
1839
1737
  /**
1840
1738
  *
1841
1739
  * @type {string}
1842
1740
  * @memberof ConsultationItemModel
1843
1741
  */
1844
- 'dealName'?: string | null;
1742
+ 'doctorId'?: string | null;
1845
1743
  /**
1846
1744
  *
1847
1745
  * @type {string}
1848
1746
  * @memberof ConsultationItemModel
1849
1747
  */
1850
- 'dealSlug'?: string | null;
1748
+ 'doctorName'?: string | null;
1851
1749
  /**
1852
1750
  *
1853
1751
  * @type {string}
1854
1752
  * @memberof ConsultationItemModel
1855
1753
  */
1856
- 'language'?: string | null;
1857
- /**
1858
- *
1859
- * @type {boolean}
1860
- * @memberof ConsultationItemModel
1861
- */
1862
- 'isAccountHolder'?: boolean;
1754
+ 'doctorSlug'?: string | null;
1863
1755
  /**
1864
1756
  *
1865
1757
  * @type {string}
1866
1758
  * @memberof ConsultationItemModel
1867
1759
  */
1868
- 'firstName'?: string | null;
1760
+ 'dealId'?: string | null;
1869
1761
  /**
1870
1762
  *
1871
1763
  * @type {string}
1872
1764
  * @memberof ConsultationItemModel
1873
1765
  */
1874
- 'lastName'?: string | null;
1766
+ 'dealName'?: string | null;
1875
1767
  /**
1876
1768
  *
1877
1769
  * @type {string}
1878
1770
  * @memberof ConsultationItemModel
1879
1771
  */
1880
- 'email'?: string | null;
1772
+ 'dealSlug'?: string | null;
1881
1773
  /**
1882
1774
  *
1883
1775
  * @type {string}
1884
1776
  * @memberof ConsultationItemModel
1885
1777
  */
1886
- 'phone'?: string | null;
1887
- /**
1888
- *
1889
- * @type {Date}
1890
- * @memberof ConsultationItemModel
1891
- */
1892
- 'dateOfBirth'?: Date | null;
1893
- /**
1894
- *
1895
- * @type {Gender}
1896
- * @memberof ConsultationItemModel
1897
- */
1898
- 'gender'?: Gender;
1778
+ 'language'?: string | null;
1899
1779
  /**
1900
1780
  *
1901
- * @type {string}
1781
+ * @type {boolean}
1902
1782
  * @memberof ConsultationItemModel
1903
1783
  */
1904
- 'comment'?: string | null;
1784
+ 'isAccountHolder'?: boolean;
1905
1785
  /**
1906
1786
  *
1907
1787
  * @type {string}
@@ -1932,18 +1812,6 @@ export interface ConsultationItemModel {
1932
1812
  * @memberof ConsultationItemModel
1933
1813
  */
1934
1814
  'confirmedDateEnd'?: Date | null;
1935
- /**
1936
- *
1937
- * @type {string}
1938
- * @memberof ConsultationItemModel
1939
- */
1940
- 'callerName'?: string | null;
1941
- /**
1942
- *
1943
- * @type {string}
1944
- * @memberof ConsultationItemModel
1945
- */
1946
- 'callerId'?: string | null;
1947
1815
  /**
1948
1816
  *
1949
1817
  * @type {number}
@@ -1968,6 +1836,12 @@ export interface ConsultationItemModel {
1968
1836
  * @memberof ConsultationItemModel
1969
1837
  */
1970
1838
  'requestDate'?: Date;
1839
+ /**
1840
+ *
1841
+ * @type {string}
1842
+ * @memberof ConsultationItemModel
1843
+ */
1844
+ 'domain'?: string | null;
1971
1845
  /**
1972
1846
  *
1973
1847
  * @type {ConsultationStatus}
@@ -1992,6 +1866,12 @@ export interface ConsultationItemModel {
1992
1866
  * @memberof ConsultationItemModel
1993
1867
  */
1994
1868
  'paymentId'?: string | null;
1869
+ /**
1870
+ *
1871
+ * @type {boolean}
1872
+ * @memberof ConsultationItemModel
1873
+ */
1874
+ 'paymentEnabled'?: boolean;
1995
1875
  /**
1996
1876
  *
1997
1877
  * @type {number}
@@ -2017,6 +1897,12 @@ export interface ConsultationModel {
2017
1897
  * @memberof ConsultationModel
2018
1898
  */
2019
1899
  'id'?: string;
1900
+ /**
1901
+ *
1902
+ * @type {string}
1903
+ * @memberof ConsultationModel
1904
+ */
1905
+ 'languageCode'?: string | null;
2020
1906
  /**
2021
1907
  *
2022
1908
  * @type {ConsultationType}
@@ -2046,49 +1932,67 @@ export interface ConsultationModel {
2046
1932
  * @type {string}
2047
1933
  * @memberof ConsultationModel
2048
1934
  */
2049
- 'communicationUserId'?: string | null;
1935
+ 'firstName'?: string | null;
2050
1936
  /**
2051
1937
  *
2052
1938
  * @type {string}
2053
1939
  * @memberof ConsultationModel
2054
1940
  */
2055
- 'hospitalId'?: string;
1941
+ 'lastName'?: string | null;
2056
1942
  /**
2057
1943
  *
2058
1944
  * @type {string}
2059
1945
  * @memberof ConsultationModel
2060
1946
  */
2061
- 'hospitalName'?: string | null;
1947
+ 'email'?: string | null;
2062
1948
  /**
2063
1949
  *
2064
1950
  * @type {string}
2065
1951
  * @memberof ConsultationModel
2066
1952
  */
2067
- 'hospitalSlug'?: string | null;
1953
+ 'phone'?: string | null;
1954
+ /**
1955
+ *
1956
+ * @type {Date}
1957
+ * @memberof ConsultationModel
1958
+ */
1959
+ 'dateOfBirth'?: Date | null;
1960
+ /**
1961
+ *
1962
+ * @type {Gender}
1963
+ * @memberof ConsultationModel
1964
+ */
1965
+ 'gender'?: Gender;
2068
1966
  /**
2069
1967
  *
2070
1968
  * @type {string}
2071
1969
  * @memberof ConsultationModel
2072
1970
  */
2073
- 'hospitalTimeZone'?: string | null;
1971
+ 'comment'?: string | null;
2074
1972
  /**
2075
1973
  *
2076
1974
  * @type {string}
2077
1975
  * @memberof ConsultationModel
2078
1976
  */
2079
- 'specialtyId'?: string | null;
1977
+ 'hospitalId'?: string;
2080
1978
  /**
2081
1979
  *
2082
1980
  * @type {string}
2083
1981
  * @memberof ConsultationModel
2084
1982
  */
2085
- 'specialtyName'?: string | null;
1983
+ 'hospitalName'?: string | null;
2086
1984
  /**
2087
1985
  *
2088
1986
  * @type {string}
2089
1987
  * @memberof ConsultationModel
2090
1988
  */
2091
- 'specialtySlug'?: string | null;
1989
+ 'hospitalSlug'?: string | null;
1990
+ /**
1991
+ *
1992
+ * @type {string}
1993
+ * @memberof ConsultationModel
1994
+ */
1995
+ 'hospitalTimeZone'?: string | null;
2092
1996
  /**
2093
1997
  *
2094
1998
  * @type {string}
@@ -2142,133 +2046,91 @@ export interface ConsultationModel {
2142
2046
  * @type {string}
2143
2047
  * @memberof ConsultationModel
2144
2048
  */
2145
- 'firstName'?: string | null;
2049
+ 'timeRange'?: string | null;
2146
2050
  /**
2147
2051
  *
2148
- * @type {string}
2052
+ * @type {Date}
2149
2053
  * @memberof ConsultationModel
2150
2054
  */
2151
- 'lastName'?: string | null;
2055
+ 'approximateDateStart'?: Date;
2152
2056
  /**
2153
2057
  *
2154
- * @type {string}
2058
+ * @type {Date}
2155
2059
  * @memberof ConsultationModel
2156
2060
  */
2157
- 'email'?: string | null;
2061
+ 'approximateDateEnd'?: Date;
2158
2062
  /**
2159
2063
  *
2160
- * @type {string}
2064
+ * @type {Date}
2161
2065
  * @memberof ConsultationModel
2162
2066
  */
2163
- 'phone'?: string | null;
2067
+ 'confirmedDateStart'?: Date | null;
2164
2068
  /**
2165
2069
  *
2166
2070
  * @type {Date}
2167
2071
  * @memberof ConsultationModel
2168
2072
  */
2169
- 'dateOfBirth'?: Date | null;
2073
+ 'confirmedDateEnd'?: Date | null;
2170
2074
  /**
2171
2075
  *
2172
- * @type {Gender}
2076
+ * @type {number}
2173
2077
  * @memberof ConsultationModel
2174
2078
  */
2175
- 'gender'?: Gender;
2079
+ 'fee'?: number;
2176
2080
  /**
2177
2081
  *
2178
- * @type {string}
2082
+ * @type {number}
2179
2083
  * @memberof ConsultationModel
2180
2084
  */
2181
- 'comment'?: string | null;
2085
+ 'applicationFee'?: number;
2182
2086
  /**
2183
2087
  *
2184
2088
  * @type {string}
2185
2089
  * @memberof ConsultationModel
2186
2090
  */
2187
- 'timeRange'?: string | null;
2091
+ 'timeZone'?: string | null;
2188
2092
  /**
2189
2093
  *
2190
2094
  * @type {Date}
2191
2095
  * @memberof ConsultationModel
2192
2096
  */
2193
- 'approximateDateStart'?: Date;
2097
+ 'requestDate'?: Date;
2194
2098
  /**
2195
2099
  *
2196
- * @type {Date}
2100
+ * @type {string}
2197
2101
  * @memberof ConsultationModel
2198
2102
  */
2199
- 'approximateDateEnd'?: Date;
2103
+ 'domain'?: string | null;
2200
2104
  /**
2201
2105
  *
2202
- * @type {Date}
2106
+ * @type {ConsultationStatus}
2203
2107
  * @memberof ConsultationModel
2204
2108
  */
2205
- 'confirmedDateStart'?: Date | null;
2109
+ 'status'?: ConsultationStatus;
2206
2110
  /**
2207
2111
  *
2208
- * @type {Date}
2112
+ * @type {RejectReason}
2209
2113
  * @memberof ConsultationModel
2210
2114
  */
2211
- 'confirmedDateEnd'?: Date | null;
2115
+ 'rejectReason'?: RejectReason;
2212
2116
  /**
2213
2117
  *
2214
- * @type {string}
2118
+ * @type {boolean}
2215
2119
  * @memberof ConsultationModel
2216
2120
  */
2217
- 'callerName'?: string | null;
2121
+ 'isOpen'?: boolean;
2218
2122
  /**
2219
2123
  *
2220
2124
  * @type {string}
2221
2125
  * @memberof ConsultationModel
2222
2126
  */
2223
- 'callerId'?: string | null;
2224
- /**
2225
- *
2226
- * @type {number}
2227
- * @memberof ConsultationModel
2228
- */
2229
- 'fee'?: number;
2230
- /**
2231
- *
2232
- * @type {number}
2233
- * @memberof ConsultationModel
2234
- */
2235
- 'applicationFee'?: number;
2236
- /**
2237
- *
2238
- * @type {string}
2239
- * @memberof ConsultationModel
2240
- */
2241
- 'timeZone'?: string | null;
2242
- /**
2243
- *
2244
- * @type {Date}
2245
- * @memberof ConsultationModel
2246
- */
2247
- 'requestDate'?: Date;
2248
- /**
2249
- *
2250
- * @type {ConsultationStatus}
2251
- * @memberof ConsultationModel
2252
- */
2253
- 'status'?: ConsultationStatus;
2254
- /**
2255
- *
2256
- * @type {RejectReason}
2257
- * @memberof ConsultationModel
2258
- */
2259
- 'rejectReason'?: RejectReason;
2127
+ 'paymentId'?: string | null;
2260
2128
  /**
2261
2129
  *
2262
2130
  * @type {boolean}
2263
2131
  * @memberof ConsultationModel
2264
2132
  */
2265
- 'isOpen'?: boolean;
2266
- /**
2267
- *
2268
- * @type {string}
2269
- * @memberof ConsultationModel
2270
- */
2271
- 'paymentId'?: string | null;
2133
+ 'paymentEnabled'?: boolean;
2272
2134
  /**
2273
2135
  *
2274
2136
  * @type {number}
@@ -2353,6 +2215,12 @@ export interface ContributorItemModel {
2353
2215
  * @memberof ContributorItemModel
2354
2216
  */
2355
2217
  'id'?: string;
2218
+ /**
2219
+ *
2220
+ * @type {string}
2221
+ * @memberof ContributorItemModel
2222
+ */
2223
+ 'languageCode'?: string | null;
2356
2224
  /**
2357
2225
  *
2358
2226
  * @type {string}
@@ -2367,58 +2235,58 @@ export interface ContributorItemModel {
2367
2235
  'slug'?: string | null;
2368
2236
  /**
2369
2237
  *
2370
- * @type {string}
2238
+ * @type {boolean}
2371
2239
  * @memberof ContributorItemModel
2372
2240
  */
2373
- 'description'?: string | null;
2241
+ 'confirmed'?: boolean;
2374
2242
  /**
2375
2243
  *
2376
2244
  * @type {string}
2377
2245
  * @memberof ContributorItemModel
2378
2246
  */
2379
- 'email'?: string | null;
2247
+ 'hospitalId'?: string;
2380
2248
  /**
2381
2249
  *
2382
2250
  * @type {string}
2383
2251
  * @memberof ContributorItemModel
2384
2252
  */
2385
- 'photo'?: string | null;
2253
+ 'hospitalName'?: string | null;
2386
2254
  /**
2387
2255
  *
2388
2256
  * @type {string}
2389
2257
  * @memberof ContributorItemModel
2390
2258
  */
2391
- 'photoThumbnail'?: string | null;
2259
+ 'hospitalSlug'?: string | null;
2392
2260
  /**
2393
2261
  *
2394
2262
  * @type {string}
2395
2263
  * @memberof ContributorItemModel
2396
2264
  */
2397
- 'website'?: string | null;
2265
+ 'hospitalWebsiteUrl'?: string | null;
2398
2266
  /**
2399
2267
  *
2400
2268
  * @type {string}
2401
2269
  * @memberof ContributorItemModel
2402
2270
  */
2403
- 'hospitalId'?: string;
2271
+ 'email'?: string | null;
2404
2272
  /**
2405
2273
  *
2406
2274
  * @type {string}
2407
2275
  * @memberof ContributorItemModel
2408
2276
  */
2409
- 'hospitalName'?: string | null;
2277
+ 'photo'?: string | null;
2410
2278
  /**
2411
2279
  *
2412
- * @type {number}
2280
+ * @type {string}
2413
2281
  * @memberof ContributorItemModel
2414
2282
  */
2415
- 'order'?: number;
2283
+ 'photoThumbnail'?: string | null;
2416
2284
  /**
2417
2285
  *
2418
- * @type {boolean}
2286
+ * @type {number}
2419
2287
  * @memberof ContributorItemModel
2420
2288
  */
2421
- 'confirmed'?: boolean;
2289
+ 'order'?: number;
2422
2290
  /**
2423
2291
  *
2424
2292
  * @type {AuditableEntity}
@@ -2438,6 +2306,12 @@ export interface ContributorModel {
2438
2306
  * @memberof ContributorModel
2439
2307
  */
2440
2308
  'id'?: string;
2309
+ /**
2310
+ *
2311
+ * @type {string}
2312
+ * @memberof ContributorModel
2313
+ */
2314
+ 'languageCode'?: string | null;
2441
2315
  /**
2442
2316
  *
2443
2317
  * @type {string}
@@ -2450,48 +2324,54 @@ export interface ContributorModel {
2450
2324
  * @memberof ContributorModel
2451
2325
  */
2452
2326
  'slug'?: string | null;
2327
+ /**
2328
+ *
2329
+ * @type {boolean}
2330
+ * @memberof ContributorModel
2331
+ */
2332
+ 'confirmed'?: boolean;
2453
2333
  /**
2454
2334
  *
2455
2335
  * @type {string}
2456
2336
  * @memberof ContributorModel
2457
2337
  */
2458
- 'description'?: string | null;
2338
+ 'hospitalId'?: string;
2459
2339
  /**
2460
2340
  *
2461
2341
  * @type {string}
2462
2342
  * @memberof ContributorModel
2463
2343
  */
2464
- 'email'?: string | null;
2344
+ 'hospitalName'?: string | null;
2465
2345
  /**
2466
2346
  *
2467
2347
  * @type {string}
2468
2348
  * @memberof ContributorModel
2469
2349
  */
2470
- 'photo'?: string | null;
2350
+ 'hospitalSlug'?: string | null;
2471
2351
  /**
2472
2352
  *
2473
2353
  * @type {string}
2474
2354
  * @memberof ContributorModel
2475
2355
  */
2476
- 'photoThumbnail'?: string | null;
2356
+ 'hospitalWebsiteUrl'?: string | null;
2477
2357
  /**
2478
2358
  *
2479
2359
  * @type {string}
2480
2360
  * @memberof ContributorModel
2481
2361
  */
2482
- 'website'?: string | null;
2362
+ 'email'?: string | null;
2483
2363
  /**
2484
2364
  *
2485
2365
  * @type {string}
2486
2366
  * @memberof ContributorModel
2487
2367
  */
2488
- 'hospitalId'?: string;
2368
+ 'photo'?: string | null;
2489
2369
  /**
2490
2370
  *
2491
2371
  * @type {string}
2492
2372
  * @memberof ContributorModel
2493
2373
  */
2494
- 'hospitalName'?: string | null;
2374
+ 'photoThumbnail'?: string | null;
2495
2375
  /**
2496
2376
  *
2497
2377
  * @type {number}
@@ -2500,22 +2380,22 @@ export interface ContributorModel {
2500
2380
  'order'?: number;
2501
2381
  /**
2502
2382
  *
2503
- * @type {boolean}
2383
+ * @type {AuditableEntity}
2504
2384
  * @memberof ContributorModel
2505
2385
  */
2506
- 'confirmed'?: boolean;
2386
+ 'auditableEntity'?: AuditableEntity;
2507
2387
  /**
2508
2388
  *
2509
- * @type {AuditableEntity}
2389
+ * @type {string}
2510
2390
  * @memberof ContributorModel
2511
2391
  */
2512
- 'auditableEntity'?: AuditableEntity;
2392
+ 'description'?: string | null;
2513
2393
  /**
2514
2394
  *
2515
2395
  * @type {string}
2516
2396
  * @memberof ContributorModel
2517
2397
  */
2518
- 'languageCode'?: string | null;
2398
+ 'overview'?: string | null;
2519
2399
  /**
2520
2400
  *
2521
2401
  * @type {string}
@@ -2609,67 +2489,25 @@ export interface CountryItemModel {
2609
2489
  * @type {string}
2610
2490
  * @memberof CountryItemModel
2611
2491
  */
2612
- 'name'?: string | null;
2492
+ 'languageCode'?: string | null;
2613
2493
  /**
2614
2494
  *
2615
2495
  * @type {string}
2616
2496
  * @memberof CountryItemModel
2617
2497
  */
2618
- 'logo'?: string | null;
2498
+ 'name'?: string | null;
2619
2499
  /**
2620
2500
  *
2621
2501
  * @type {string}
2622
2502
  * @memberof CountryItemModel
2623
2503
  */
2624
2504
  'slug'?: string | null;
2625
- /**
2626
- *
2627
- * @type {string}
2628
- * @memberof CountryItemModel
2629
- */
2630
- 'description'?: string | null;
2631
- /**
2632
- *
2633
- * @type {number}
2634
- * @memberof CountryItemModel
2635
- */
2636
- 'hospitalsCount'?: number;
2637
- /**
2638
- *
2639
- * @type {number}
2640
- * @memberof CountryItemModel
2641
- */
2642
- 'doctorsCount'?: number;
2643
- /**
2644
- *
2645
- * @type {number}
2646
- * @memberof CountryItemModel
2647
- */
2648
- 'specialitiesCount'?: number;
2649
- /**
2650
- *
2651
- * @type {number}
2652
- * @memberof CountryItemModel
2653
- */
2654
- 'packagesCount'?: number;
2655
- /**
2656
- *
2657
- * @type {number}
2658
- * @memberof CountryItemModel
2659
- */
2660
- 'articlesCount'?: number;
2661
2505
  /**
2662
2506
  *
2663
2507
  * @type {boolean}
2664
2508
  * @memberof CountryItemModel
2665
2509
  */
2666
2510
  'confirmed'?: boolean;
2667
- /**
2668
- *
2669
- * @type {Array<MediaModel>}
2670
- * @memberof CountryItemModel
2671
- */
2672
- 'medias'?: Array<MediaModel> | null;
2673
2511
  /**
2674
2512
  *
2675
2513
  * @type {AuditableEntity}
@@ -2694,55 +2532,19 @@ export interface CountryModel {
2694
2532
  * @type {string}
2695
2533
  * @memberof CountryModel
2696
2534
  */
2697
- 'name'?: string | null;
2535
+ 'languageCode'?: string | null;
2698
2536
  /**
2699
2537
  *
2700
2538
  * @type {string}
2701
2539
  * @memberof CountryModel
2702
2540
  */
2703
- 'logo'?: string | null;
2541
+ 'name'?: string | null;
2704
2542
  /**
2705
2543
  *
2706
2544
  * @type {string}
2707
2545
  * @memberof CountryModel
2708
2546
  */
2709
2547
  'slug'?: string | null;
2710
- /**
2711
- *
2712
- * @type {string}
2713
- * @memberof CountryModel
2714
- */
2715
- 'description'?: string | null;
2716
- /**
2717
- *
2718
- * @type {number}
2719
- * @memberof CountryModel
2720
- */
2721
- 'hospitalsCount'?: number;
2722
- /**
2723
- *
2724
- * @type {number}
2725
- * @memberof CountryModel
2726
- */
2727
- 'doctorsCount'?: number;
2728
- /**
2729
- *
2730
- * @type {number}
2731
- * @memberof CountryModel
2732
- */
2733
- 'specialitiesCount'?: number;
2734
- /**
2735
- *
2736
- * @type {number}
2737
- * @memberof CountryModel
2738
- */
2739
- 'packagesCount'?: number;
2740
- /**
2741
- *
2742
- * @type {number}
2743
- * @memberof CountryModel
2744
- */
2745
- 'articlesCount'?: number;
2746
2548
  /**
2747
2549
  *
2748
2550
  * @type {boolean}
@@ -2751,22 +2553,22 @@ export interface CountryModel {
2751
2553
  'confirmed'?: boolean;
2752
2554
  /**
2753
2555
  *
2754
- * @type {Array<MediaModel>}
2556
+ * @type {AuditableEntity}
2755
2557
  * @memberof CountryModel
2756
2558
  */
2757
- 'medias'?: Array<MediaModel> | null;
2559
+ 'auditableEntity'?: AuditableEntity;
2758
2560
  /**
2759
2561
  *
2760
- * @type {AuditableEntity}
2562
+ * @type {string}
2761
2563
  * @memberof CountryModel
2762
2564
  */
2763
- 'auditableEntity'?: AuditableEntity;
2565
+ 'description'?: string | null;
2764
2566
  /**
2765
2567
  *
2766
2568
  * @type {string}
2767
2569
  * @memberof CountryModel
2768
2570
  */
2769
- 'languageCode'?: string | null;
2571
+ 'overview'?: string | null;
2770
2572
  /**
2771
2573
  *
2772
2574
  * @type {string}
@@ -2779,6 +2581,12 @@ export interface CountryModel {
2779
2581
  * @memberof CountryModel
2780
2582
  */
2781
2583
  'localizedUrls'?: Array<LocalizedUrlModel> | null;
2584
+ /**
2585
+ *
2586
+ * @type {Array<MediaModel>}
2587
+ * @memberof CountryModel
2588
+ */
2589
+ 'medias'?: Array<MediaModel> | null;
2782
2590
  }
2783
2591
  /**
2784
2592
  *
@@ -3193,61 +3001,43 @@ export interface DealItemModel {
3193
3001
  * @type {string}
3194
3002
  * @memberof DealItemModel
3195
3003
  */
3196
- 'name'?: string | null;
3197
- /**
3198
- *
3199
- * @type {string}
3200
- * @memberof DealItemModel
3201
- */
3202
- 'slug'?: string | null;
3004
+ 'languageCode'?: string | null;
3203
3005
  /**
3204
3006
  *
3205
3007
  * @type {string}
3206
3008
  * @memberof DealItemModel
3207
3009
  */
3208
- 'description'?: string | null;
3010
+ 'name'?: string | null;
3209
3011
  /**
3210
3012
  *
3211
3013
  * @type {string}
3212
3014
  * @memberof DealItemModel
3213
3015
  */
3214
- 'hospitalId'?: string;
3016
+ 'slug'?: string | null;
3215
3017
  /**
3216
3018
  *
3217
- * @type {string}
3019
+ * @type {boolean}
3218
3020
  * @memberof DealItemModel
3219
3021
  */
3220
- 'hospitalName'?: string | null;
3022
+ 'confirmed'?: boolean;
3221
3023
  /**
3222
3024
  *
3223
3025
  * @type {string}
3224
3026
  * @memberof DealItemModel
3225
3027
  */
3226
- 'hospitalSlug'?: string | null;
3028
+ 'hospitalId'?: string;
3227
3029
  /**
3228
3030
  *
3229
3031
  * @type {string}
3230
3032
  * @memberof DealItemModel
3231
3033
  */
3232
- 'hospitalLocationCountry'?: string | null;
3034
+ 'hospitalName'?: string | null;
3233
3035
  /**
3234
3036
  *
3235
3037
  * @type {string}
3236
3038
  * @memberof DealItemModel
3237
3039
  */
3238
- 'hospitalLocationState'?: string | null;
3239
- /**
3240
- *
3241
- * @type {boolean}
3242
- * @memberof DealItemModel
3243
- */
3244
- 'hospitalConsultationEnabled'?: boolean;
3245
- /**
3246
- *
3247
- * @type {number}
3248
- * @memberof DealItemModel
3249
- */
3250
- 'serviceDuration'?: number;
3040
+ 'hospitalSlug'?: string | null;
3251
3041
  /**
3252
3042
  *
3253
3043
  * @type {MarketingType}
@@ -3272,24 +3062,6 @@ export interface DealItemModel {
3272
3062
  * @memberof DealItemModel
3273
3063
  */
3274
3064
  'order'?: number;
3275
- /**
3276
- *
3277
- * @type {boolean}
3278
- * @memberof DealItemModel
3279
- */
3280
- 'confirmed'?: boolean;
3281
- /**
3282
- *
3283
- * @type {Array<DealPackageItemModel>}
3284
- * @memberof DealItemModel
3285
- */
3286
- 'dealPackages'?: Array<DealPackageItemModel> | null;
3287
- /**
3288
- *
3289
- * @type {Array<DealServiceItemModel>}
3290
- * @memberof DealItemModel
3291
- */
3292
- 'dealServices'?: Array<DealServiceItemModel> | null;
3293
3065
  /**
3294
3066
  *
3295
3067
  * @type {AuditableEntity}
@@ -3314,49 +3086,25 @@ export interface DealItemSimpleModel {
3314
3086
  * @type {string}
3315
3087
  * @memberof DealItemSimpleModel
3316
3088
  */
3317
- 'name'?: string | null;
3089
+ 'languageCode'?: string | null;
3318
3090
  /**
3319
3091
  *
3320
3092
  * @type {string}
3321
3093
  * @memberof DealItemSimpleModel
3322
3094
  */
3323
- 'slug'?: string | null;
3095
+ 'name'?: string | null;
3324
3096
  /**
3325
3097
  *
3326
3098
  * @type {string}
3327
3099
  * @memberof DealItemSimpleModel
3328
3100
  */
3329
- 'hospitalId'?: string;
3101
+ 'slug'?: string | null;
3330
3102
  /**
3331
3103
  *
3332
- * @type {string}
3333
- * @memberof DealItemSimpleModel
3334
- */
3335
- 'hospitalName'?: string | null;
3336
- /**
3337
- *
3338
- * @type {string}
3339
- * @memberof DealItemSimpleModel
3340
- */
3341
- 'hospitalSlug'?: string | null;
3342
- /**
3343
- *
3344
- * @type {number}
3345
- * @memberof DealItemSimpleModel
3346
- */
3347
- 'order'?: number;
3348
- /**
3349
- *
3350
- * @type {boolean}
3104
+ * @type {boolean}
3351
3105
  * @memberof DealItemSimpleModel
3352
3106
  */
3353
3107
  'confirmed'?: boolean;
3354
- /**
3355
- *
3356
- * @type {AuditableEntity}
3357
- * @memberof DealItemSimpleModel
3358
- */
3359
- 'auditableEntity'?: AuditableEntity;
3360
3108
  }
3361
3109
  /**
3362
3110
  *
@@ -3375,61 +3123,43 @@ export interface DealModel {
3375
3123
  * @type {string}
3376
3124
  * @memberof DealModel
3377
3125
  */
3378
- 'name'?: string | null;
3379
- /**
3380
- *
3381
- * @type {string}
3382
- * @memberof DealModel
3383
- */
3384
- 'slug'?: string | null;
3126
+ 'languageCode'?: string | null;
3385
3127
  /**
3386
3128
  *
3387
3129
  * @type {string}
3388
3130
  * @memberof DealModel
3389
3131
  */
3390
- 'description'?: string | null;
3132
+ 'name'?: string | null;
3391
3133
  /**
3392
3134
  *
3393
3135
  * @type {string}
3394
3136
  * @memberof DealModel
3395
3137
  */
3396
- 'hospitalId'?: string;
3138
+ 'slug'?: string | null;
3397
3139
  /**
3398
3140
  *
3399
- * @type {string}
3141
+ * @type {boolean}
3400
3142
  * @memberof DealModel
3401
3143
  */
3402
- 'hospitalName'?: string | null;
3144
+ 'confirmed'?: boolean;
3403
3145
  /**
3404
3146
  *
3405
3147
  * @type {string}
3406
3148
  * @memberof DealModel
3407
3149
  */
3408
- 'hospitalSlug'?: string | null;
3150
+ 'hospitalId'?: string;
3409
3151
  /**
3410
3152
  *
3411
3153
  * @type {string}
3412
3154
  * @memberof DealModel
3413
3155
  */
3414
- 'hospitalLocationCountry'?: string | null;
3156
+ 'hospitalName'?: string | null;
3415
3157
  /**
3416
3158
  *
3417
3159
  * @type {string}
3418
3160
  * @memberof DealModel
3419
3161
  */
3420
- 'hospitalLocationState'?: string | null;
3421
- /**
3422
- *
3423
- * @type {boolean}
3424
- * @memberof DealModel
3425
- */
3426
- 'hospitalConsultationEnabled'?: boolean;
3427
- /**
3428
- *
3429
- * @type {number}
3430
- * @memberof DealModel
3431
- */
3432
- 'serviceDuration'?: number;
3162
+ 'hospitalSlug'?: string | null;
3433
3163
  /**
3434
3164
  *
3435
3165
  * @type {MarketingType}
@@ -3456,34 +3186,34 @@ export interface DealModel {
3456
3186
  'order'?: number;
3457
3187
  /**
3458
3188
  *
3459
- * @type {boolean}
3189
+ * @type {AuditableEntity}
3460
3190
  * @memberof DealModel
3461
3191
  */
3462
- 'confirmed'?: boolean;
3192
+ 'auditableEntity'?: AuditableEntity;
3463
3193
  /**
3464
3194
  *
3465
- * @type {Array<DealPackageItemModel>}
3195
+ * @type {string}
3466
3196
  * @memberof DealModel
3467
3197
  */
3468
- 'dealPackages'?: Array<DealPackageItemModel> | null;
3198
+ 'description'?: string | null;
3469
3199
  /**
3470
3200
  *
3471
- * @type {Array<DealServiceItemModel>}
3201
+ * @type {string}
3472
3202
  * @memberof DealModel
3473
3203
  */
3474
- 'dealServices'?: Array<DealServiceItemModel> | null;
3204
+ 'overview'?: string | null;
3475
3205
  /**
3476
3206
  *
3477
- * @type {AuditableEntity}
3207
+ * @type {string}
3478
3208
  * @memberof DealModel
3479
3209
  */
3480
- 'auditableEntity'?: AuditableEntity;
3210
+ 'content'?: string | null;
3481
3211
  /**
3482
3212
  *
3483
- * @type {string}
3213
+ * @type {number}
3484
3214
  * @memberof DealModel
3485
3215
  */
3486
- 'languageCode'?: string | null;
3216
+ 'serviceDuration'?: number;
3487
3217
  /**
3488
3218
  *
3489
3219
  * @type {Array<LocalizedUrlModel>}
@@ -3508,49 +3238,49 @@ export interface DealPackageItemModel {
3508
3238
  * @type {string}
3509
3239
  * @memberof DealPackageItemModel
3510
3240
  */
3511
- 'dealId'?: string;
3241
+ 'languageCode'?: string | null;
3512
3242
  /**
3513
3243
  *
3514
3244
  * @type {string}
3515
3245
  * @memberof DealPackageItemModel
3516
3246
  */
3517
- 'dealName'?: string | null;
3247
+ 'dealId'?: string;
3518
3248
  /**
3519
3249
  *
3520
3250
  * @type {string}
3521
3251
  * @memberof DealPackageItemModel
3522
3252
  */
3523
- 'hospitalId'?: string;
3253
+ 'dealName'?: string | null;
3524
3254
  /**
3525
3255
  *
3526
3256
  * @type {string}
3527
3257
  * @memberof DealPackageItemModel
3528
3258
  */
3529
- 'hospitalName'?: string | null;
3259
+ 'dealSlug'?: string | null;
3530
3260
  /**
3531
3261
  *
3532
- * @type {RefundPolicy}
3262
+ * @type {string}
3533
3263
  * @memberof DealPackageItemModel
3534
3264
  */
3535
- 'refundPolicy'?: RefundPolicy;
3265
+ 'hospitalId'?: string;
3536
3266
  /**
3537
3267
  *
3538
3268
  * @type {string}
3539
3269
  * @memberof DealPackageItemModel
3540
3270
  */
3541
- 'additionalServices'?: string | null;
3271
+ 'hospitalName'?: string | null;
3542
3272
  /**
3543
3273
  *
3544
3274
  * @type {string}
3545
3275
  * @memberof DealPackageItemModel
3546
3276
  */
3547
- 'accomodation'?: string | null;
3277
+ 'hospitalSlug'?: string | null;
3548
3278
  /**
3549
3279
  *
3550
- * @type {string}
3280
+ * @type {RefundPolicy}
3551
3281
  * @memberof DealPackageItemModel
3552
3282
  */
3553
- 'transfer'?: string | null;
3283
+ 'refundPolicy'?: RefundPolicy;
3554
3284
  /**
3555
3285
  *
3556
3286
  * @type {string}
@@ -3587,49 +3317,49 @@ export interface DealPackageModel {
3587
3317
  * @type {string}
3588
3318
  * @memberof DealPackageModel
3589
3319
  */
3590
- 'dealId'?: string;
3320
+ 'languageCode'?: string | null;
3591
3321
  /**
3592
3322
  *
3593
3323
  * @type {string}
3594
3324
  * @memberof DealPackageModel
3595
3325
  */
3596
- 'dealName'?: string | null;
3326
+ 'dealId'?: string;
3597
3327
  /**
3598
3328
  *
3599
3329
  * @type {string}
3600
3330
  * @memberof DealPackageModel
3601
3331
  */
3602
- 'hospitalId'?: string;
3332
+ 'dealName'?: string | null;
3603
3333
  /**
3604
3334
  *
3605
3335
  * @type {string}
3606
3336
  * @memberof DealPackageModel
3607
3337
  */
3608
- 'hospitalName'?: string | null;
3338
+ 'dealSlug'?: string | null;
3609
3339
  /**
3610
3340
  *
3611
- * @type {RefundPolicy}
3341
+ * @type {string}
3612
3342
  * @memberof DealPackageModel
3613
3343
  */
3614
- 'refundPolicy'?: RefundPolicy;
3344
+ 'hospitalId'?: string;
3615
3345
  /**
3616
3346
  *
3617
3347
  * @type {string}
3618
3348
  * @memberof DealPackageModel
3619
3349
  */
3620
- 'additionalServices'?: string | null;
3350
+ 'hospitalName'?: string | null;
3621
3351
  /**
3622
3352
  *
3623
3353
  * @type {string}
3624
3354
  * @memberof DealPackageModel
3625
3355
  */
3626
- 'accomodation'?: string | null;
3356
+ 'hospitalSlug'?: string | null;
3627
3357
  /**
3628
3358
  *
3629
- * @type {string}
3359
+ * @type {RefundPolicy}
3630
3360
  * @memberof DealPackageModel
3631
3361
  */
3632
- 'transfer'?: string | null;
3362
+ 'refundPolicy'?: RefundPolicy;
3633
3363
  /**
3634
3364
  *
3635
3365
  * @type {string}
@@ -3648,6 +3378,24 @@ export interface DealPackageModel {
3648
3378
  * @memberof DealPackageModel
3649
3379
  */
3650
3380
  'auditableEntity'?: AuditableEntity;
3381
+ /**
3382
+ *
3383
+ * @type {string}
3384
+ * @memberof DealPackageModel
3385
+ */
3386
+ 'additionalServices'?: string | null;
3387
+ /**
3388
+ *
3389
+ * @type {string}
3390
+ * @memberof DealPackageModel
3391
+ */
3392
+ 'accomodation'?: string | null;
3393
+ /**
3394
+ *
3395
+ * @type {string}
3396
+ * @memberof DealPackageModel
3397
+ */
3398
+ 'transfer'?: string | null;
3651
3399
  }
3652
3400
  /**
3653
3401
  *
@@ -3674,6 +3422,12 @@ export interface DealPackagesModel {
3674
3422
  * @interface DealServiceItemModel
3675
3423
  */
3676
3424
  export interface DealServiceItemModel {
3425
+ /**
3426
+ *
3427
+ * @type {string}
3428
+ * @memberof DealServiceItemModel
3429
+ */
3430
+ 'languageCode'?: string | null;
3677
3431
  /**
3678
3432
  *
3679
3433
  * @type {string}
@@ -3686,6 +3440,12 @@ export interface DealServiceItemModel {
3686
3440
  * @memberof DealServiceItemModel
3687
3441
  */
3688
3442
  'dealName'?: string | null;
3443
+ /**
3444
+ *
3445
+ * @type {string}
3446
+ * @memberof DealServiceItemModel
3447
+ */
3448
+ 'dealSlug'?: string | null;
3689
3449
  /**
3690
3450
  *
3691
3451
  * @type {string}
@@ -3698,6 +3458,12 @@ export interface DealServiceItemModel {
3698
3458
  * @memberof DealServiceItemModel
3699
3459
  */
3700
3460
  'serviceName'?: string | null;
3461
+ /**
3462
+ *
3463
+ * @type {string}
3464
+ * @memberof DealServiceItemModel
3465
+ */
3466
+ 'serviceSlug'?: string | null;
3701
3467
  /**
3702
3468
  *
3703
3469
  * @type {number}
@@ -3711,6 +3477,12 @@ export interface DealServiceItemModel {
3711
3477
  * @interface DealServiceModel
3712
3478
  */
3713
3479
  export interface DealServiceModel {
3480
+ /**
3481
+ *
3482
+ * @type {string}
3483
+ * @memberof DealServiceModel
3484
+ */
3485
+ 'languageCode'?: string | null;
3714
3486
  /**
3715
3487
  *
3716
3488
  * @type {string}
@@ -3723,6 +3495,12 @@ export interface DealServiceModel {
3723
3495
  * @memberof DealServiceModel
3724
3496
  */
3725
3497
  'dealName'?: string | null;
3498
+ /**
3499
+ *
3500
+ * @type {string}
3501
+ * @memberof DealServiceModel
3502
+ */
3503
+ 'dealSlug'?: string | null;
3726
3504
  /**
3727
3505
  *
3728
3506
  * @type {string}
@@ -3735,6 +3513,12 @@ export interface DealServiceModel {
3735
3513
  * @memberof DealServiceModel
3736
3514
  */
3737
3515
  'serviceName'?: string | null;
3516
+ /**
3517
+ *
3518
+ * @type {string}
3519
+ * @memberof DealServiceModel
3520
+ */
3521
+ 'serviceSlug'?: string | null;
3738
3522
  /**
3739
3523
  *
3740
3524
  * @type {number}
@@ -3810,7 +3594,7 @@ export interface DoctorAffiliationItemModel {
3810
3594
  * @type {string}
3811
3595
  * @memberof DoctorAffiliationItemModel
3812
3596
  */
3813
- 'languageCode'?: string | null;
3597
+ 'id'?: string;
3814
3598
  /**
3815
3599
  *
3816
3600
  * @type {string}
@@ -3829,6 +3613,60 @@ export interface DoctorAffiliationItemModel {
3829
3613
  * @memberof DoctorAffiliationItemModel
3830
3614
  */
3831
3615
  'hospitalSlug'?: string | null;
3616
+ /**
3617
+ *
3618
+ * @type {string}
3619
+ * @memberof DoctorAffiliationItemModel
3620
+ */
3621
+ 'doctorId'?: string;
3622
+ /**
3623
+ *
3624
+ * @type {string}
3625
+ * @memberof DoctorAffiliationItemModel
3626
+ */
3627
+ 'languageCode'?: string | null;
3628
+ /**
3629
+ *
3630
+ * @type {string}
3631
+ * @memberof DoctorAffiliationItemModel
3632
+ */
3633
+ 'name'?: string | null;
3634
+ /**
3635
+ *
3636
+ * @type {string}
3637
+ * @memberof DoctorAffiliationItemModel
3638
+ */
3639
+ 'slug'?: string | null;
3640
+ /**
3641
+ *
3642
+ * @type {boolean}
3643
+ * @memberof DoctorAffiliationItemModel
3644
+ */
3645
+ 'confirmed'?: boolean;
3646
+ /**
3647
+ *
3648
+ * @type {string}
3649
+ * @memberof DoctorAffiliationItemModel
3650
+ */
3651
+ 'photo'?: string | null;
3652
+ /**
3653
+ *
3654
+ * @type {string}
3655
+ * @memberof DoctorAffiliationItemModel
3656
+ */
3657
+ 'photoThumbnail'?: string | null;
3658
+ /**
3659
+ *
3660
+ * @type {boolean}
3661
+ * @memberof DoctorAffiliationItemModel
3662
+ */
3663
+ 'consultationEnabled'?: boolean | null;
3664
+ /**
3665
+ *
3666
+ * @type {number}
3667
+ * @memberof DoctorAffiliationItemModel
3668
+ */
3669
+ 'consultationFee'?: number | null;
3832
3670
  /**
3833
3671
  *
3834
3672
  * @type {number}
@@ -3847,7 +3685,7 @@ export interface DoctorAffiliationModel {
3847
3685
  * @type {string}
3848
3686
  * @memberof DoctorAffiliationModel
3849
3687
  */
3850
- 'languageCode'?: string | null;
3688
+ 'id'?: string;
3851
3689
  /**
3852
3690
  *
3853
3691
  * @type {string}
@@ -3866,12 +3704,114 @@ export interface DoctorAffiliationModel {
3866
3704
  * @memberof DoctorAffiliationModel
3867
3705
  */
3868
3706
  'hospitalSlug'?: string | null;
3707
+ /**
3708
+ *
3709
+ * @type {string}
3710
+ * @memberof DoctorAffiliationModel
3711
+ */
3712
+ 'doctorId'?: string;
3713
+ /**
3714
+ *
3715
+ * @type {string}
3716
+ * @memberof DoctorAffiliationModel
3717
+ */
3718
+ 'languageCode'?: string | null;
3719
+ /**
3720
+ *
3721
+ * @type {string}
3722
+ * @memberof DoctorAffiliationModel
3723
+ */
3724
+ 'name'?: string | null;
3725
+ /**
3726
+ *
3727
+ * @type {string}
3728
+ * @memberof DoctorAffiliationModel
3729
+ */
3730
+ 'slug'?: string | null;
3731
+ /**
3732
+ *
3733
+ * @type {boolean}
3734
+ * @memberof DoctorAffiliationModel
3735
+ */
3736
+ 'confirmed'?: boolean;
3737
+ /**
3738
+ *
3739
+ * @type {string}
3740
+ * @memberof DoctorAffiliationModel
3741
+ */
3742
+ 'photo'?: string | null;
3743
+ /**
3744
+ *
3745
+ * @type {string}
3746
+ * @memberof DoctorAffiliationModel
3747
+ */
3748
+ 'photoThumbnail'?: string | null;
3749
+ /**
3750
+ *
3751
+ * @type {boolean}
3752
+ * @memberof DoctorAffiliationModel
3753
+ */
3754
+ 'consultationEnabled'?: boolean | null;
3755
+ /**
3756
+ *
3757
+ * @type {number}
3758
+ * @memberof DoctorAffiliationModel
3759
+ */
3760
+ 'consultationFee'?: number | null;
3869
3761
  /**
3870
3762
  *
3871
3763
  * @type {number}
3872
3764
  * @memberof DoctorAffiliationModel
3873
3765
  */
3874
3766
  'order'?: number;
3767
+ /**
3768
+ *
3769
+ * @type {string}
3770
+ * @memberof DoctorAffiliationModel
3771
+ */
3772
+ 'description'?: string | null;
3773
+ /**
3774
+ *
3775
+ * @type {string}
3776
+ * @memberof DoctorAffiliationModel
3777
+ */
3778
+ 'overview'?: string | null;
3779
+ /**
3780
+ *
3781
+ * @type {string}
3782
+ * @memberof DoctorAffiliationModel
3783
+ */
3784
+ 'content'?: string | null;
3785
+ /**
3786
+ *
3787
+ * @type {string}
3788
+ * @memberof DoctorAffiliationModel
3789
+ */
3790
+ 'background'?: string | null;
3791
+ /**
3792
+ *
3793
+ * @type {string}
3794
+ * @memberof DoctorAffiliationModel
3795
+ */
3796
+ 'backgroundThumbnail'?: string | null;
3797
+ /**
3798
+ *
3799
+ * @type {string}
3800
+ * @memberof DoctorAffiliationModel
3801
+ */
3802
+ 'customStyle'?: string | null;
3803
+ /**
3804
+ *
3805
+ * @type {Array<LocalizedUrlModel>}
3806
+ * @memberof DoctorAffiliationModel
3807
+ */
3808
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
3809
+ /**
3810
+ *
3811
+ * @type {Array<MediaModel>}
3812
+ * @memberof DoctorAffiliationModel
3813
+ */
3814
+ 'medias'?: Array<MediaModel> | null;
3875
3815
  }
3876
3816
  /**
3877
3817
  *
@@ -4156,12 +4096,6 @@ export interface DoctorItemModel {
4156
4096
  * @memberof DoctorItemModel
4157
4097
  */
4158
4098
  'firstName'?: string | null;
4159
- /**
4160
- *
4161
- * @type {string}
4162
- * @memberof DoctorItemModel
4163
- */
4164
- 'middleName'?: string | null;
4165
4099
  /**
4166
4100
  *
4167
4101
  * @type {string}
@@ -4174,18 +4108,6 @@ export interface DoctorItemModel {
4174
4108
  * @memberof DoctorItemModel
4175
4109
  */
4176
4110
  'fullName'?: string | null;
4177
- /**
4178
- *
4179
- * @type {string}
4180
- * @memberof DoctorItemModel
4181
- */
4182
- 'slug'?: string | null;
4183
- /**
4184
- *
4185
- * @type {boolean}
4186
- * @memberof DoctorItemModel
4187
- */
4188
- 'confirmed'?: boolean;
4189
4111
  /**
4190
4112
  *
4191
4113
  * @type {string}
@@ -4334,12 +4256,6 @@ export interface DoctorModel {
4334
4256
  * @memberof DoctorModel
4335
4257
  */
4336
4258
  'firstName'?: string | null;
4337
- /**
4338
- *
4339
- * @type {string}
4340
- * @memberof DoctorModel
4341
- */
4342
- 'middleName'?: string | null;
4343
4259
  /**
4344
4260
  *
4345
4261
  * @type {string}
@@ -4352,18 +4268,6 @@ export interface DoctorModel {
4352
4268
  * @memberof DoctorModel
4353
4269
  */
4354
4270
  'fullName'?: string | null;
4355
- /**
4356
- *
4357
- * @type {string}
4358
- * @memberof DoctorModel
4359
- */
4360
- 'slug'?: string | null;
4361
- /**
4362
- *
4363
- * @type {boolean}
4364
- * @memberof DoctorModel
4365
- */
4366
- 'confirmed'?: boolean;
4367
4271
  /**
4368
4272
  *
4369
4273
  * @type {string}
@@ -4598,64 +4502,40 @@ export interface DoctorPortfoliosModel {
4598
4502
  /**
4599
4503
  *
4600
4504
  * @type {Array<DoctorPortfolioItemModel>}
4601
- * @memberof DoctorPortfoliosModel
4602
- */
4603
- 'items'?: Array<DoctorPortfolioItemModel> | null;
4604
- /**
4605
- *
4606
- * @type {PagedListMetaData}
4607
- * @memberof DoctorPortfoliosModel
4608
- */
4609
- 'metaData'?: PagedListMetaData;
4610
- }
4611
- /**
4612
- *
4613
- * @export
4614
- * @interface DoctorSimpleItemModel
4615
- */
4616
- export interface DoctorSimpleItemModel {
4617
- /**
4618
- *
4619
- * @type {string}
4620
- * @memberof DoctorSimpleItemModel
4621
- */
4622
- 'id'?: string;
4623
- /**
4624
- *
4625
- * @type {string}
4626
- * @memberof DoctorSimpleItemModel
4627
- */
4628
- 'languageCode'?: string | null;
4629
- /**
4630
- *
4631
- * @type {string}
4632
- * @memberof DoctorSimpleItemModel
4505
+ * @memberof DoctorPortfoliosModel
4633
4506
  */
4634
- 'firstName'?: string | null;
4507
+ 'items'?: Array<DoctorPortfolioItemModel> | null;
4635
4508
  /**
4636
4509
  *
4637
- * @type {string}
4638
- * @memberof DoctorSimpleItemModel
4510
+ * @type {PagedListMetaData}
4511
+ * @memberof DoctorPortfoliosModel
4639
4512
  */
4640
- 'middleName'?: string | null;
4513
+ 'metaData'?: PagedListMetaData;
4514
+ }
4515
+ /**
4516
+ *
4517
+ * @export
4518
+ * @interface DoctorSimpleItemModel
4519
+ */
4520
+ export interface DoctorSimpleItemModel {
4641
4521
  /**
4642
4522
  *
4643
4523
  * @type {string}
4644
4524
  * @memberof DoctorSimpleItemModel
4645
4525
  */
4646
- 'lastName'?: string | null;
4526
+ 'id'?: string;
4647
4527
  /**
4648
4528
  *
4649
4529
  * @type {string}
4650
4530
  * @memberof DoctorSimpleItemModel
4651
4531
  */
4652
- 'fullName'?: string | null;
4532
+ 'firstName'?: string | null;
4653
4533
  /**
4654
4534
  *
4655
4535
  * @type {string}
4656
4536
  * @memberof DoctorSimpleItemModel
4657
4537
  */
4658
- 'slug'?: string | null;
4538
+ 'lastName'?: string | null;
4659
4539
  }
4660
4540
  /**
4661
4541
  *
@@ -4873,7 +4753,7 @@ export interface FaqCategoryItemModel {
4873
4753
  * @type {string}
4874
4754
  * @memberof FaqCategoryItemModel
4875
4755
  */
4876
- 'parentId'?: string | null;
4756
+ 'languageCode'?: string | null;
4877
4757
  /**
4878
4758
  *
4879
4759
  * @type {string}
@@ -4886,12 +4766,18 @@ export interface FaqCategoryItemModel {
4886
4766
  * @memberof FaqCategoryItemModel
4887
4767
  */
4888
4768
  'slug'?: string | null;
4769
+ /**
4770
+ *
4771
+ * @type {boolean}
4772
+ * @memberof FaqCategoryItemModel
4773
+ */
4774
+ 'confirmed'?: boolean;
4889
4775
  /**
4890
4776
  *
4891
4777
  * @type {string}
4892
4778
  * @memberof FaqCategoryItemModel
4893
4779
  */
4894
- 'description'?: string | null;
4780
+ 'parentId'?: string | null;
4895
4781
  /**
4896
4782
  *
4897
4783
  * @type {number}
@@ -4912,10 +4798,22 @@ export interface FaqCategoryItemModel {
4912
4798
  'hospitalName'?: string | null;
4913
4799
  /**
4914
4800
  *
4915
- * @type {boolean}
4801
+ * @type {string}
4916
4802
  * @memberof FaqCategoryItemModel
4917
4803
  */
4918
- 'confirmed'?: boolean;
4804
+ 'hospitalSlug'?: string | null;
4805
+ /**
4806
+ *
4807
+ * @type {string}
4808
+ * @memberof FaqCategoryItemModel
4809
+ */
4810
+ 'hospitalWebsiteUrl'?: string | null;
4811
+ /**
4812
+ *
4813
+ * @type {Array<MediaModel>}
4814
+ * @memberof FaqCategoryItemModel
4815
+ */
4816
+ 'medias'?: Array<MediaModel> | null;
4919
4817
  /**
4920
4818
  *
4921
4819
  * @type {AuditableEntity}
@@ -4940,7 +4838,7 @@ export interface FaqCategoryModel {
4940
4838
  * @type {string}
4941
4839
  * @memberof FaqCategoryModel
4942
4840
  */
4943
- 'parentId'?: string | null;
4841
+ 'languageCode'?: string | null;
4944
4842
  /**
4945
4843
  *
4946
4844
  * @type {string}
@@ -4953,12 +4851,18 @@ export interface FaqCategoryModel {
4953
4851
  * @memberof FaqCategoryModel
4954
4852
  */
4955
4853
  'slug'?: string | null;
4854
+ /**
4855
+ *
4856
+ * @type {boolean}
4857
+ * @memberof FaqCategoryModel
4858
+ */
4859
+ 'confirmed'?: boolean;
4956
4860
  /**
4957
4861
  *
4958
4862
  * @type {string}
4959
4863
  * @memberof FaqCategoryModel
4960
4864
  */
4961
- 'description'?: string | null;
4865
+ 'parentId'?: string | null;
4962
4866
  /**
4963
4867
  *
4964
4868
  * @type {number}
@@ -4979,10 +4883,22 @@ export interface FaqCategoryModel {
4979
4883
  'hospitalName'?: string | null;
4980
4884
  /**
4981
4885
  *
4982
- * @type {boolean}
4886
+ * @type {string}
4983
4887
  * @memberof FaqCategoryModel
4984
4888
  */
4985
- 'confirmed'?: boolean;
4889
+ 'hospitalSlug'?: string | null;
4890
+ /**
4891
+ *
4892
+ * @type {string}
4893
+ * @memberof FaqCategoryModel
4894
+ */
4895
+ 'hospitalWebsiteUrl'?: string | null;
4896
+ /**
4897
+ *
4898
+ * @type {Array<MediaModel>}
4899
+ * @memberof FaqCategoryModel
4900
+ */
4901
+ 'medias'?: Array<MediaModel> | null;
4986
4902
  /**
4987
4903
  *
4988
4904
  * @type {AuditableEntity}
@@ -4994,7 +4910,19 @@ export interface FaqCategoryModel {
4994
4910
  * @type {string}
4995
4911
  * @memberof FaqCategoryModel
4996
4912
  */
4997
- 'languageCode'?: string | null;
4913
+ 'description'?: string | null;
4914
+ /**
4915
+ *
4916
+ * @type {string}
4917
+ * @memberof FaqCategoryModel
4918
+ */
4919
+ 'overview'?: string | null;
4920
+ /**
4921
+ *
4922
+ * @type {string}
4923
+ * @memberof FaqCategoryModel
4924
+ */
4925
+ 'content'?: string | null;
4998
4926
  /**
4999
4927
  *
5000
4928
  * @type {Array<LocalizedUrlModel>}
@@ -5014,6 +4942,12 @@ export interface FaqItemModel {
5014
4942
  * @memberof FaqItemModel
5015
4943
  */
5016
4944
  'id'?: string;
4945
+ /**
4946
+ *
4947
+ * @type {string}
4948
+ * @memberof FaqItemModel
4949
+ */
4950
+ 'languageCode'?: string | null;
5017
4951
  /**
5018
4952
  *
5019
4953
  * @type {string}
@@ -5026,12 +4960,18 @@ export interface FaqItemModel {
5026
4960
  * @memberof FaqItemModel
5027
4961
  */
5028
4962
  'slug'?: string | null;
4963
+ /**
4964
+ *
4965
+ * @type {boolean}
4966
+ * @memberof FaqItemModel
4967
+ */
4968
+ 'confirmed'?: boolean;
5029
4969
  /**
5030
4970
  *
5031
4971
  * @type {string}
5032
4972
  * @memberof FaqItemModel
5033
4973
  */
5034
- 'description'?: string | null;
4974
+ 'parentId'?: string | null;
5035
4975
  /**
5036
4976
  *
5037
4977
  * @type {number}
@@ -5055,19 +4995,25 @@ export interface FaqItemModel {
5055
4995
  * @type {string}
5056
4996
  * @memberof FaqItemModel
5057
4997
  */
5058
- 'faqCategoryId'?: string;
4998
+ 'hospitalSlug'?: string | null;
5059
4999
  /**
5060
5000
  *
5061
5001
  * @type {string}
5062
5002
  * @memberof FaqItemModel
5063
5003
  */
5064
- 'faqCategoryName'?: string | null;
5004
+ 'hospitalWebsiteUrl'?: string | null;
5065
5005
  /**
5066
5006
  *
5067
- * @type {boolean}
5007
+ * @type {string}
5068
5008
  * @memberof FaqItemModel
5069
5009
  */
5070
- 'confirmed'?: boolean;
5010
+ 'faqCategoryId'?: string;
5011
+ /**
5012
+ *
5013
+ * @type {string}
5014
+ * @memberof FaqItemModel
5015
+ */
5016
+ 'faqCategoryName'?: string | null;
5071
5017
  /**
5072
5018
  *
5073
5019
  * @type {Array<FaqTagItemModel>}
@@ -5099,6 +5045,12 @@ export interface FaqModel {
5099
5045
  * @memberof FaqModel
5100
5046
  */
5101
5047
  'id'?: string;
5048
+ /**
5049
+ *
5050
+ * @type {string}
5051
+ * @memberof FaqModel
5052
+ */
5053
+ 'languageCode'?: string | null;
5102
5054
  /**
5103
5055
  *
5104
5056
  * @type {string}
@@ -5111,12 +5063,18 @@ export interface FaqModel {
5111
5063
  * @memberof FaqModel
5112
5064
  */
5113
5065
  'slug'?: string | null;
5066
+ /**
5067
+ *
5068
+ * @type {boolean}
5069
+ * @memberof FaqModel
5070
+ */
5071
+ 'confirmed'?: boolean;
5114
5072
  /**
5115
5073
  *
5116
5074
  * @type {string}
5117
5075
  * @memberof FaqModel
5118
5076
  */
5119
- 'description'?: string | null;
5077
+ 'parentId'?: string | null;
5120
5078
  /**
5121
5079
  *
5122
5080
  * @type {number}
@@ -5140,19 +5098,25 @@ export interface FaqModel {
5140
5098
  * @type {string}
5141
5099
  * @memberof FaqModel
5142
5100
  */
5143
- 'faqCategoryId'?: string;
5101
+ 'hospitalSlug'?: string | null;
5144
5102
  /**
5145
5103
  *
5146
5104
  * @type {string}
5147
5105
  * @memberof FaqModel
5148
5106
  */
5149
- 'faqCategoryName'?: string | null;
5107
+ 'hospitalWebsiteUrl'?: string | null;
5150
5108
  /**
5151
5109
  *
5152
- * @type {boolean}
5110
+ * @type {string}
5153
5111
  * @memberof FaqModel
5154
5112
  */
5155
- 'confirmed'?: boolean;
5113
+ 'faqCategoryId'?: string;
5114
+ /**
5115
+ *
5116
+ * @type {string}
5117
+ * @memberof FaqModel
5118
+ */
5119
+ 'faqCategoryName'?: string | null;
5156
5120
  /**
5157
5121
  *
5158
5122
  * @type {Array<FaqTagItemModel>}
@@ -5176,7 +5140,13 @@ export interface FaqModel {
5176
5140
  * @type {string}
5177
5141
  * @memberof FaqModel
5178
5142
  */
5179
- 'languageCode'?: string | null;
5143
+ 'description'?: string | null;
5144
+ /**
5145
+ *
5146
+ * @type {string}
5147
+ * @memberof FaqModel
5148
+ */
5149
+ 'overview'?: string | null;
5180
5150
  /**
5181
5151
  *
5182
5152
  * @type {string}
@@ -5825,184 +5795,82 @@ export interface HospitalModel {
5825
5795
  /**
5826
5796
  *
5827
5797
  * @type {number}
5828
- * @memberof HospitalModel
5829
- */
5830
- 'doctorCount'?: number | null;
5831
- /**
5832
- *
5833
- * @type {string}
5834
- * @memberof HospitalModel
5835
- */
5836
- 'contactTel'?: string | null;
5837
- /**
5838
- *
5839
- * @type {string}
5840
- * @memberof HospitalModel
5841
- */
5842
- 'contactEmail'?: string | null;
5843
- /**
5844
- *
5845
- * @type {string}
5846
- * @memberof HospitalModel
5847
- */
5848
- 'customStyle'?: string | null;
5849
- /**
5850
- *
5851
- * @type {Array<HospitalEvaluationItemModel>}
5852
- * @memberof HospitalModel
5853
- */
5854
- 'evaluations'?: Array<HospitalEvaluationItemModel> | null;
5855
- /**
5856
- *
5857
- * @type {Array<WorkingDay>}
5858
- * @memberof HospitalModel
5859
- */
5860
- 'hospitalWorkingDays'?: Array<WorkingDay> | null;
5861
- /**
5862
- *
5863
- * @type {Array<SnsHandle>}
5864
- * @memberof HospitalModel
5865
- */
5866
- 'hospitalSnsHandles'?: Array<SnsHandle> | null;
5867
- /**
5868
- *
5869
- * @type {Array<AwardModel>}
5870
- * @memberof HospitalModel
5871
- */
5872
- 'awards'?: Array<AwardModel> | null;
5873
- }
5874
- /**
5875
- *
5876
- * @export
5877
- * @interface HospitalServiceItemModel
5878
- */
5879
- export interface HospitalServiceItemModel {
5880
- /**
5881
- *
5882
- * @type {string}
5883
- * @memberof HospitalServiceItemModel
5884
- */
5885
- 'id'?: string;
5886
- /**
5887
- *
5888
- * @type {string}
5889
- * @memberof HospitalServiceItemModel
5890
- */
5891
- 'name'?: string | null;
5892
- /**
5893
- *
5894
- * @type {string}
5895
- * @memberof HospitalServiceItemModel
5896
- */
5897
- 'slug'?: string | null;
5898
- /**
5899
- *
5900
- * @type {string}
5901
- * @memberof HospitalServiceItemModel
5902
- */
5903
- 'description'?: string | null;
5904
- /**
5905
- *
5906
- * @type {string}
5907
- * @memberof HospitalServiceItemModel
5908
- */
5909
- 'hospitalId'?: string;
5910
- /**
5911
- *
5912
- * @type {string}
5913
- * @memberof HospitalServiceItemModel
5914
- */
5915
- 'hospitalName'?: string | null;
5916
- /**
5917
- *
5918
- * @type {string}
5919
- * @memberof HospitalServiceItemModel
5920
- */
5921
- 'hospitalSlug'?: string | null;
5922
- /**
5923
- *
5924
- * @type {string}
5925
- * @memberof HospitalServiceItemModel
5926
- */
5927
- 'specialtyTypeId'?: string | null;
5928
- /**
5929
- *
5930
- * @type {string}
5931
- * @memberof HospitalServiceItemModel
5932
- */
5933
- 'specialtyTypeName'?: string | null;
5934
- /**
5935
- *
5936
- * @type {string}
5937
- * @memberof HospitalServiceItemModel
5798
+ * @memberof HospitalModel
5938
5799
  */
5939
- 'specialtyId'?: string;
5800
+ 'doctorCount'?: number | null;
5940
5801
  /**
5941
5802
  *
5942
5803
  * @type {string}
5943
- * @memberof HospitalServiceItemModel
5804
+ * @memberof HospitalModel
5944
5805
  */
5945
- 'specialtyName'?: string | null;
5806
+ 'contactTel'?: string | null;
5946
5807
  /**
5947
5808
  *
5948
5809
  * @type {string}
5949
- * @memberof HospitalServiceItemModel
5810
+ * @memberof HospitalModel
5950
5811
  */
5951
- 'hospitalSpecialtyName'?: string | null;
5812
+ 'contactEmail'?: string | null;
5952
5813
  /**
5953
5814
  *
5954
5815
  * @type {string}
5955
- * @memberof HospitalServiceItemModel
5816
+ * @memberof HospitalModel
5956
5817
  */
5957
- 'hospitalSpecialtySlug'?: string | null;
5818
+ 'customStyle'?: string | null;
5958
5819
  /**
5959
5820
  *
5960
- * @type {string}
5961
- * @memberof HospitalServiceItemModel
5821
+ * @type {Array<HospitalEvaluationItemModel>}
5822
+ * @memberof HospitalModel
5962
5823
  */
5963
- 'serviceCategoryId'?: string | null;
5824
+ 'evaluations'?: Array<HospitalEvaluationItemModel> | null;
5964
5825
  /**
5965
5826
  *
5966
- * @type {string}
5967
- * @memberof HospitalServiceItemModel
5827
+ * @type {Array<WorkingDay>}
5828
+ * @memberof HospitalModel
5968
5829
  */
5969
- 'serviceCategoryName'?: string | null;
5830
+ 'hospitalWorkingDays'?: Array<WorkingDay> | null;
5970
5831
  /**
5971
5832
  *
5972
- * @type {MarketingType}
5973
- * @memberof HospitalServiceItemModel
5833
+ * @type {Array<SnsHandle>}
5834
+ * @memberof HospitalModel
5974
5835
  */
5975
- 'marketingType'?: MarketingType;
5836
+ 'hospitalSnsHandles'?: Array<SnsHandle> | null;
5976
5837
  /**
5977
5838
  *
5978
- * @type {Procedure}
5979
- * @memberof HospitalServiceItemModel
5839
+ * @type {Array<AwardModel>}
5840
+ * @memberof HospitalModel
5980
5841
  */
5981
- 'procedure'?: Procedure;
5842
+ 'awards'?: Array<AwardModel> | null;
5843
+ }
5844
+ /**
5845
+ *
5846
+ * @export
5847
+ * @interface HospitalServiceItemModel
5848
+ */
5849
+ export interface HospitalServiceItemModel {
5982
5850
  /**
5983
5851
  *
5984
- * @type {number}
5852
+ * @type {string}
5985
5853
  * @memberof HospitalServiceItemModel
5986
5854
  */
5987
- 'minPrice'?: number | null;
5855
+ 'id'?: string;
5988
5856
  /**
5989
5857
  *
5990
- * @type {number}
5858
+ * @type {string}
5991
5859
  * @memberof HospitalServiceItemModel
5992
5860
  */
5993
- 'maxPrice'?: number | null;
5861
+ 'languageCode'?: string | null;
5994
5862
  /**
5995
5863
  *
5996
- * @type {boolean}
5864
+ * @type {string}
5997
5865
  * @memberof HospitalServiceItemModel
5998
5866
  */
5999
- 'priceReuqest'?: boolean;
5867
+ 'name'?: string | null;
6000
5868
  /**
6001
5869
  *
6002
- * @type {number}
5870
+ * @type {string}
6003
5871
  * @memberof HospitalServiceItemModel
6004
5872
  */
6005
- 'order'?: number;
5873
+ 'slug'?: string | null;
6006
5874
  /**
6007
5875
  *
6008
5876
  * @type {boolean}
@@ -6011,22 +5879,22 @@ export interface HospitalServiceItemModel {
6011
5879
  'confirmed'?: boolean;
6012
5880
  /**
6013
5881
  *
6014
- * @type {string}
5882
+ * @type {number}
6015
5883
  * @memberof HospitalServiceItemModel
6016
5884
  */
6017
- 'photo'?: string | null;
5885
+ 'order'?: number;
6018
5886
  /**
6019
5887
  *
6020
5888
  * @type {string}
6021
5889
  * @memberof HospitalServiceItemModel
6022
5890
  */
6023
- 'photoThumbnail'?: string | null;
5891
+ 'photo'?: string | null;
6024
5892
  /**
6025
5893
  *
6026
- * @type {Array<MediaModel>}
5894
+ * @type {string}
6027
5895
  * @memberof HospitalServiceItemModel
6028
5896
  */
6029
- 'medias'?: Array<MediaModel> | null;
5897
+ 'photoThumbnail'?: string | null;
6030
5898
  /**
6031
5899
  *
6032
5900
  * @type {AuditableEntity}
@@ -6051,163 +5919,139 @@ export interface HospitalServiceModel {
6051
5919
  * @type {string}
6052
5920
  * @memberof HospitalServiceModel
6053
5921
  */
6054
- 'name'?: string | null;
5922
+ 'languageCode'?: string | null;
6055
5923
  /**
6056
5924
  *
6057
5925
  * @type {string}
6058
5926
  * @memberof HospitalServiceModel
6059
5927
  */
6060
- 'slug'?: string | null;
5928
+ 'name'?: string | null;
6061
5929
  /**
6062
5930
  *
6063
5931
  * @type {string}
6064
5932
  * @memberof HospitalServiceModel
6065
5933
  */
6066
- 'description'?: string | null;
5934
+ 'slug'?: string | null;
6067
5935
  /**
6068
5936
  *
6069
- * @type {string}
5937
+ * @type {boolean}
6070
5938
  * @memberof HospitalServiceModel
6071
5939
  */
6072
- 'hospitalId'?: string;
5940
+ 'confirmed'?: boolean;
6073
5941
  /**
6074
5942
  *
6075
- * @type {string}
5943
+ * @type {number}
6076
5944
  * @memberof HospitalServiceModel
6077
5945
  */
6078
- 'hospitalName'?: string | null;
5946
+ 'order'?: number;
6079
5947
  /**
6080
5948
  *
6081
5949
  * @type {string}
6082
5950
  * @memberof HospitalServiceModel
6083
5951
  */
6084
- 'hospitalSlug'?: string | null;
5952
+ 'photo'?: string | null;
6085
5953
  /**
6086
5954
  *
6087
5955
  * @type {string}
6088
5956
  * @memberof HospitalServiceModel
6089
5957
  */
6090
- 'specialtyTypeId'?: string | null;
5958
+ 'photoThumbnail'?: string | null;
6091
5959
  /**
6092
5960
  *
6093
- * @type {string}
5961
+ * @type {AuditableEntity}
6094
5962
  * @memberof HospitalServiceModel
6095
5963
  */
6096
- 'specialtyTypeName'?: string | null;
5964
+ 'auditableEntity'?: AuditableEntity;
6097
5965
  /**
6098
5966
  *
6099
5967
  * @type {string}
6100
5968
  * @memberof HospitalServiceModel
6101
5969
  */
6102
- 'specialtyId'?: string;
5970
+ 'description'?: string | null;
6103
5971
  /**
6104
5972
  *
6105
5973
  * @type {string}
6106
5974
  * @memberof HospitalServiceModel
6107
5975
  */
6108
- 'specialtyName'?: string | null;
5976
+ 'overview'?: string | null;
6109
5977
  /**
6110
5978
  *
6111
5979
  * @type {string}
6112
5980
  * @memberof HospitalServiceModel
6113
5981
  */
6114
- 'hospitalSpecialtyName'?: string | null;
5982
+ 'content'?: string | null;
6115
5983
  /**
6116
5984
  *
6117
5985
  * @type {string}
6118
5986
  * @memberof HospitalServiceModel
6119
5987
  */
6120
- 'hospitalSpecialtySlug'?: string | null;
5988
+ 'hospitalId'?: string;
6121
5989
  /**
6122
5990
  *
6123
5991
  * @type {string}
6124
5992
  * @memberof HospitalServiceModel
6125
5993
  */
6126
- 'serviceCategoryId'?: string | null;
5994
+ 'hospitalName'?: string | null;
6127
5995
  /**
6128
5996
  *
6129
5997
  * @type {string}
6130
5998
  * @memberof HospitalServiceModel
6131
5999
  */
6132
- 'serviceCategoryName'?: string | null;
6133
- /**
6134
- *
6135
- * @type {MarketingType}
6136
- * @memberof HospitalServiceModel
6137
- */
6138
- 'marketingType'?: MarketingType;
6139
- /**
6140
- *
6141
- * @type {Procedure}
6142
- * @memberof HospitalServiceModel
6143
- */
6144
- 'procedure'?: Procedure;
6145
- /**
6146
- *
6147
- * @type {number}
6148
- * @memberof HospitalServiceModel
6149
- */
6150
- 'minPrice'?: number | null;
6151
- /**
6152
- *
6153
- * @type {number}
6154
- * @memberof HospitalServiceModel
6155
- */
6156
- 'maxPrice'?: number | null;
6000
+ 'hospitalSlug'?: string | null;
6157
6001
  /**
6158
6002
  *
6159
- * @type {boolean}
6003
+ * @type {string}
6160
6004
  * @memberof HospitalServiceModel
6161
6005
  */
6162
- 'priceReuqest'?: boolean;
6006
+ 'specialtyName'?: string | null;
6163
6007
  /**
6164
6008
  *
6165
- * @type {number}
6009
+ * @type {string}
6166
6010
  * @memberof HospitalServiceModel
6167
6011
  */
6168
- 'order'?: number;
6012
+ 'hospitalSpecialtyName'?: string | null;
6169
6013
  /**
6170
6014
  *
6171
- * @type {boolean}
6015
+ * @type {string}
6172
6016
  * @memberof HospitalServiceModel
6173
6017
  */
6174
- 'confirmed'?: boolean;
6018
+ 'hospitalSpecialtySlug'?: string | null;
6175
6019
  /**
6176
6020
  *
6177
6021
  * @type {string}
6178
6022
  * @memberof HospitalServiceModel
6179
6023
  */
6180
- 'photo'?: string | null;
6024
+ 'serviceCategoryId'?: string | null;
6181
6025
  /**
6182
6026
  *
6183
6027
  * @type {string}
6184
6028
  * @memberof HospitalServiceModel
6185
6029
  */
6186
- 'photoThumbnail'?: string | null;
6030
+ 'serviceCategoryName'?: string | null;
6187
6031
  /**
6188
6032
  *
6189
- * @type {Array<MediaModel>}
6033
+ * @type {Procedure}
6190
6034
  * @memberof HospitalServiceModel
6191
6035
  */
6192
- 'medias'?: Array<MediaModel> | null;
6036
+ 'procedure'?: Procedure;
6193
6037
  /**
6194
6038
  *
6195
- * @type {AuditableEntity}
6039
+ * @type {number}
6196
6040
  * @memberof HospitalServiceModel
6197
6041
  */
6198
- 'auditableEntity'?: AuditableEntity;
6042
+ 'minPrice'?: number | null;
6199
6043
  /**
6200
6044
  *
6201
- * @type {string}
6045
+ * @type {number}
6202
6046
  * @memberof HospitalServiceModel
6203
6047
  */
6204
- 'languageCode'?: string | null;
6048
+ 'maxPrice'?: number | null;
6205
6049
  /**
6206
6050
  *
6207
- * @type {string}
6051
+ * @type {boolean}
6208
6052
  * @memberof HospitalServiceModel
6209
6053
  */
6210
- 'content'?: string | null;
6054
+ 'priceReuqest'?: boolean;
6211
6055
  /**
6212
6056
  *
6213
6057
  * @type {string}
@@ -6216,10 +6060,10 @@ export interface HospitalServiceModel {
6216
6060
  'customStyle'?: string | null;
6217
6061
  /**
6218
6062
  *
6219
- * @type {Array<LocalizedUrlModel>}
6063
+ * @type {Array<MediaModel>}
6220
6064
  * @memberof HospitalServiceModel
6221
6065
  */
6222
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6066
+ 'medias'?: Array<MediaModel> | null;
6223
6067
  }
6224
6068
  /**
6225
6069
  *
@@ -6364,6 +6208,12 @@ export interface HospitalSpecialtyItemModel {
6364
6208
  * @memberof HospitalSpecialtyItemModel
6365
6209
  */
6366
6210
  'slug'?: string | null;
6211
+ /**
6212
+ *
6213
+ * @type {boolean}
6214
+ * @memberof HospitalSpecialtyItemModel
6215
+ */
6216
+ 'confirmed'?: boolean;
6367
6217
  /**
6368
6218
  *
6369
6219
  * @type {number}
@@ -6406,6 +6256,12 @@ export interface HospitalSpecialtyItemModel {
6406
6256
  * @memberof HospitalSpecialtyItemModel
6407
6257
  */
6408
6258
  'specialtyId'?: string;
6259
+ /**
6260
+ *
6261
+ * @type {AuditableEntity}
6262
+ * @memberof HospitalSpecialtyItemModel
6263
+ */
6264
+ 'auditableEntity'?: AuditableEntity;
6409
6265
  }
6410
6266
  /**
6411
6267
  *
@@ -6437,6 +6293,12 @@ export interface HospitalSpecialtyModel {
6437
6293
  * @memberof HospitalSpecialtyModel
6438
6294
  */
6439
6295
  'slug'?: string | null;
6296
+ /**
6297
+ *
6298
+ * @type {boolean}
6299
+ * @memberof HospitalSpecialtyModel
6300
+ */
6301
+ 'confirmed'?: boolean;
6440
6302
  /**
6441
6303
  *
6442
6304
  * @type {number}
@@ -6481,28 +6343,28 @@ export interface HospitalSpecialtyModel {
6481
6343
  'specialtyId'?: string;
6482
6344
  /**
6483
6345
  *
6484
- * @type {string}
6346
+ * @type {AuditableEntity}
6485
6347
  * @memberof HospitalSpecialtyModel
6486
6348
  */
6487
- 'description'?: string | null;
6349
+ 'auditableEntity'?: AuditableEntity;
6488
6350
  /**
6489
6351
  *
6490
6352
  * @type {string}
6491
6353
  * @memberof HospitalSpecialtyModel
6492
6354
  */
6493
- 'content'?: string | null;
6355
+ 'description'?: string | null;
6494
6356
  /**
6495
6357
  *
6496
- * @type {boolean}
6358
+ * @type {string}
6497
6359
  * @memberof HospitalSpecialtyModel
6498
6360
  */
6499
- 'confirmed'?: boolean;
6361
+ 'overview'?: string | null;
6500
6362
  /**
6501
6363
  *
6502
6364
  * @type {string}
6503
6365
  * @memberof HospitalSpecialtyModel
6504
6366
  */
6505
- 'customStyle'?: string | null;
6367
+ 'content'?: string | null;
6506
6368
  /**
6507
6369
  *
6508
6370
  * @type {string}
@@ -6538,13 +6400,7 @@ export interface HospitalSpecialtyModel {
6538
6400
  * @type {string}
6539
6401
  * @memberof HospitalSpecialtyModel
6540
6402
  */
6541
- 'specialtyTypeName'?: string | null;
6542
- /**
6543
- *
6544
- * @type {MarketingType}
6545
- * @memberof HospitalSpecialtyModel
6546
- */
6547
- 'marketingType'?: MarketingType;
6403
+ 'customStyle'?: string | null;
6548
6404
  /**
6549
6405
  *
6550
6406
  * @type {Array<LocalizedUrlModel>}
@@ -6588,6 +6444,12 @@ export interface HospitalSpecialtySimpleItemModel {
6588
6444
  * @memberof HospitalSpecialtySimpleItemModel
6589
6445
  */
6590
6446
  'slug'?: string | null;
6447
+ /**
6448
+ *
6449
+ * @type {boolean}
6450
+ * @memberof HospitalSpecialtySimpleItemModel
6451
+ */
6452
+ 'confirmed'?: boolean;
6591
6453
  /**
6592
6454
  *
6593
6455
  * @type {number}
@@ -7354,12 +7216,6 @@ export interface PatientModel {
7354
7216
  * @memberof PatientModel
7355
7217
  */
7356
7218
  'firstName'?: string | null;
7357
- /**
7358
- *
7359
- * @type {string}
7360
- * @memberof PatientModel
7361
- */
7362
- 'middleName'?: string | null;
7363
7219
  /**
7364
7220
  *
7365
7221
  * @type {string}
@@ -7372,18 +7228,6 @@ export interface PatientModel {
7372
7228
  * @memberof PatientModel
7373
7229
  */
7374
7230
  'fullName'?: string | null;
7375
- /**
7376
- *
7377
- * @type {string}
7378
- * @memberof PatientModel
7379
- */
7380
- 'slug'?: string | null;
7381
- /**
7382
- *
7383
- * @type {boolean}
7384
- * @memberof PatientModel
7385
- */
7386
- 'confirmed'?: boolean;
7387
7231
  /**
7388
7232
  *
7389
7233
  * @type {string}
@@ -8386,6 +8230,15 @@ export declare enum SnsType {
8386
8230
  Youtube = "Youtube",
8387
8231
  KakaoTalk = "KakaoTalk"
8388
8232
  }
8233
+ /**
8234
+ *
8235
+ * @export
8236
+ * @enum {string}
8237
+ */
8238
+ export declare enum SortingOrder {
8239
+ Ascending = "Ascending",
8240
+ Descending = "Descending"
8241
+ }
8389
8242
  /**
8390
8243
  *
8391
8244
  * @export
@@ -8497,12 +8350,6 @@ export interface SpecialtyItemModel {
8497
8350
  * @memberof SpecialtyItemModel
8498
8351
  */
8499
8352
  'specialtyTypeId'?: string;
8500
- /**
8501
- *
8502
- * @type {string}
8503
- * @memberof SpecialtyItemModel
8504
- */
8505
- 'description'?: string | null;
8506
8353
  /**
8507
8354
  *
8508
8355
  * @type {string}
@@ -8607,12 +8454,6 @@ export interface SpecialtyModel {
8607
8454
  * @memberof SpecialtyModel
8608
8455
  */
8609
8456
  'specialtyTypeId'?: string;
8610
- /**
8611
- *
8612
- * @type {string}
8613
- * @memberof SpecialtyModel
8614
- */
8615
- 'description'?: string | null;
8616
8457
  /**
8617
8458
  *
8618
8459
  * @type {string}
@@ -8630,7 +8471,19 @@ export interface SpecialtyModel {
8630
8471
  * @type {AuditableEntity}
8631
8472
  * @memberof SpecialtyModel
8632
8473
  */
8633
- 'auditableEntity'?: AuditableEntity;
8474
+ 'auditableEntity'?: AuditableEntity;
8475
+ /**
8476
+ *
8477
+ * @type {string}
8478
+ * @memberof SpecialtyModel
8479
+ */
8480
+ 'description'?: string | null;
8481
+ /**
8482
+ *
8483
+ * @type {string}
8484
+ * @memberof SpecialtyModel
8485
+ */
8486
+ 'overview'?: string | null;
8634
8487
  /**
8635
8488
  *
8636
8489
  * @type {string}
@@ -9493,12 +9346,6 @@ export interface UserModel {
9493
9346
  * @memberof UserModel
9494
9347
  */
9495
9348
  'firstName'?: string | null;
9496
- /**
9497
- *
9498
- * @type {string}
9499
- * @memberof UserModel
9500
- */
9501
- 'middleName'?: string | null;
9502
9349
  /**
9503
9350
  *
9504
9351
  * @type {string}
@@ -9511,18 +9358,6 @@ export interface UserModel {
9511
9358
  * @memberof UserModel
9512
9359
  */
9513
9360
  'fullName'?: string | null;
9514
- /**
9515
- *
9516
- * @type {string}
9517
- * @memberof UserModel
9518
- */
9519
- 'slug'?: string | null;
9520
- /**
9521
- *
9522
- * @type {boolean}
9523
- * @memberof UserModel
9524
- */
9525
- 'confirmed'?: boolean;
9526
9361
  /**
9527
9362
  *
9528
9363
  * @type {string}
@@ -10049,11 +9884,10 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
10049
9884
  * @summary Get Article.
10050
9885
  * @param {string} articleId
10051
9886
  * @param {string} [languageCode]
10052
- * @param {boolean} [returnDefaultValue]
10053
9887
  * @param {*} [options] Override http request option.
10054
9888
  * @throws {RequiredError}
10055
9889
  */
10056
- apiV2ArticlesArticleIdGet: (articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9890
+ apiV2ArticlesArticleIdGet: (articleId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10057
9891
  /**
10058
9892
  *
10059
9893
  * @summary Get all ArticleMedias.
@@ -10192,11 +10026,10 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
10192
10026
  * @summary Get Article.
10193
10027
  * @param {string} articleId
10194
10028
  * @param {string} [languageCode]
10195
- * @param {boolean} [returnDefaultValue]
10196
10029
  * @param {*} [options] Override http request option.
10197
10030
  * @throws {RequiredError}
10198
10031
  */
10199
- apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
10032
+ apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
10200
10033
  /**
10201
10034
  *
10202
10035
  * @summary Get all ArticleMedias.
@@ -10335,11 +10168,10 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
10335
10168
  * @summary Get Article.
10336
10169
  * @param {string} articleId
10337
10170
  * @param {string} [languageCode]
10338
- * @param {boolean} [returnDefaultValue]
10339
10171
  * @param {*} [options] Override http request option.
10340
10172
  * @throws {RequiredError}
10341
10173
  */
10342
- apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ArticleModel>;
10174
+ apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ArticleModel>;
10343
10175
  /**
10344
10176
  *
10345
10177
  * @summary Get all ArticleMedias.
@@ -10482,12 +10314,11 @@ export declare class ArticlesApi extends BaseAPI {
10482
10314
  * @summary Get Article.
10483
10315
  * @param {string} articleId
10484
10316
  * @param {string} [languageCode]
10485
- * @param {boolean} [returnDefaultValue]
10486
10317
  * @param {*} [options] Override http request option.
10487
10318
  * @throws {RequiredError}
10488
10319
  * @memberof ArticlesApi
10489
10320
  */
10490
- apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel, any>>;
10321
+ apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel, any>>;
10491
10322
  /**
10492
10323
  *
10493
10324
  * @summary Get all ArticleMedias.
@@ -10605,10 +10436,11 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
10605
10436
  *
10606
10437
  * @summary Get booking.
10607
10438
  * @param {string} bookingId
10439
+ * @param {string} [languageCode]
10608
10440
  * @param {*} [options] Override http request option.
10609
10441
  * @throws {RequiredError}
10610
10442
  */
10611
- apiV2BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10443
+ apiV2BookingsBookingIdGet: (bookingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10612
10444
  /**
10613
10445
  *
10614
10446
  * @summary Pay booking.
@@ -10629,19 +10461,26 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
10629
10461
  /**
10630
10462
  *
10631
10463
  * @summary Get all bookings.
10632
- * @param {string} [searchString]
10464
+ * @param {string} [hospitalId]
10465
+ * @param {string} [hospitalName]
10466
+ * @param {string} [dealId]
10467
+ * @param {string} [dealName]
10633
10468
  * @param {boolean} [isOpen]
10634
10469
  * @param {boolean} [isCompleted]
10635
10470
  * @param {BookingStatus} [status]
10636
10471
  * @param {string} [dealPackageId]
10637
- * @param {string} [hospitalId]
10472
+ * @param {SortingOrder} [sortRequestDate]
10473
+ * @param {SortingOrder} [sortConfirmedDateStart]
10474
+ * @param {boolean} [isExternal]
10475
+ * @param {boolean} [paymentEnabled]
10476
+ * @param {string} [languageCode]
10638
10477
  * @param {number} [page]
10639
10478
  * @param {number} [limit]
10640
10479
  * @param {Date} [lastRetrieved]
10641
10480
  * @param {*} [options] Override http request option.
10642
10481
  * @throws {RequiredError}
10643
10482
  */
10644
- apiV2BookingsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, hospitalId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10483
+ apiV2BookingsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10645
10484
  /**
10646
10485
  *
10647
10486
  * @summary Create booking.
@@ -10661,10 +10500,11 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
10661
10500
  *
10662
10501
  * @summary Get booking.
10663
10502
  * @param {string} bookingId
10503
+ * @param {string} [languageCode]
10664
10504
  * @param {*} [options] Override http request option.
10665
10505
  * @throws {RequiredError}
10666
10506
  */
10667
- apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
10507
+ apiV2BookingsBookingIdGet(bookingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
10668
10508
  /**
10669
10509
  *
10670
10510
  * @summary Pay booking.
@@ -10685,19 +10525,26 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
10685
10525
  /**
10686
10526
  *
10687
10527
  * @summary Get all bookings.
10688
- * @param {string} [searchString]
10528
+ * @param {string} [hospitalId]
10529
+ * @param {string} [hospitalName]
10530
+ * @param {string} [dealId]
10531
+ * @param {string} [dealName]
10689
10532
  * @param {boolean} [isOpen]
10690
10533
  * @param {boolean} [isCompleted]
10691
10534
  * @param {BookingStatus} [status]
10692
10535
  * @param {string} [dealPackageId]
10693
- * @param {string} [hospitalId]
10536
+ * @param {SortingOrder} [sortRequestDate]
10537
+ * @param {SortingOrder} [sortConfirmedDateStart]
10538
+ * @param {boolean} [isExternal]
10539
+ * @param {boolean} [paymentEnabled]
10540
+ * @param {string} [languageCode]
10694
10541
  * @param {number} [page]
10695
10542
  * @param {number} [limit]
10696
10543
  * @param {Date} [lastRetrieved]
10697
10544
  * @param {*} [options] Override http request option.
10698
10545
  * @throws {RequiredError}
10699
10546
  */
10700
- apiV2BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, hospitalId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
10547
+ apiV2BookingsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
10701
10548
  /**
10702
10549
  *
10703
10550
  * @summary Create booking.
@@ -10717,10 +10564,11 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
10717
10564
  *
10718
10565
  * @summary Get booking.
10719
10566
  * @param {string} bookingId
10567
+ * @param {string} [languageCode]
10720
10568
  * @param {*} [options] Override http request option.
10721
10569
  * @throws {RequiredError}
10722
10570
  */
10723
- apiV2BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
10571
+ apiV2BookingsBookingIdGet(bookingId: string, languageCode?: string | undefined, options?: any): AxiosPromise<BookingModel>;
10724
10572
  /**
10725
10573
  *
10726
10574
  * @summary Pay booking.
@@ -10741,19 +10589,26 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
10741
10589
  /**
10742
10590
  *
10743
10591
  * @summary Get all bookings.
10744
- * @param {string} [searchString]
10592
+ * @param {string} [hospitalId]
10593
+ * @param {string} [hospitalName]
10594
+ * @param {string} [dealId]
10595
+ * @param {string} [dealName]
10745
10596
  * @param {boolean} [isOpen]
10746
10597
  * @param {boolean} [isCompleted]
10747
10598
  * @param {BookingStatus} [status]
10748
10599
  * @param {string} [dealPackageId]
10749
- * @param {string} [hospitalId]
10600
+ * @param {SortingOrder} [sortRequestDate]
10601
+ * @param {SortingOrder} [sortConfirmedDateStart]
10602
+ * @param {boolean} [isExternal]
10603
+ * @param {boolean} [paymentEnabled]
10604
+ * @param {string} [languageCode]
10750
10605
  * @param {number} [page]
10751
10606
  * @param {number} [limit]
10752
10607
  * @param {Date} [lastRetrieved]
10753
10608
  * @param {*} [options] Override http request option.
10754
10609
  * @throws {RequiredError}
10755
10610
  */
10756
- apiV2BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, hospitalId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
10611
+ apiV2BookingsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
10757
10612
  /**
10758
10613
  *
10759
10614
  * @summary Create booking.
@@ -10775,11 +10630,12 @@ export declare class BookingsApi extends BaseAPI {
10775
10630
  *
10776
10631
  * @summary Get booking.
10777
10632
  * @param {string} bookingId
10633
+ * @param {string} [languageCode]
10778
10634
  * @param {*} [options] Override http request option.
10779
10635
  * @throws {RequiredError}
10780
10636
  * @memberof BookingsApi
10781
10637
  */
10782
- apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
10638
+ apiV2BookingsBookingIdGet(bookingId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
10783
10639
  /**
10784
10640
  *
10785
10641
  * @summary Pay booking.
@@ -10802,12 +10658,19 @@ export declare class BookingsApi extends BaseAPI {
10802
10658
  /**
10803
10659
  *
10804
10660
  * @summary Get all bookings.
10805
- * @param {string} [searchString]
10661
+ * @param {string} [hospitalId]
10662
+ * @param {string} [hospitalName]
10663
+ * @param {string} [dealId]
10664
+ * @param {string} [dealName]
10806
10665
  * @param {boolean} [isOpen]
10807
10666
  * @param {boolean} [isCompleted]
10808
10667
  * @param {BookingStatus} [status]
10809
10668
  * @param {string} [dealPackageId]
10810
- * @param {string} [hospitalId]
10669
+ * @param {SortingOrder} [sortRequestDate]
10670
+ * @param {SortingOrder} [sortConfirmedDateStart]
10671
+ * @param {boolean} [isExternal]
10672
+ * @param {boolean} [paymentEnabled]
10673
+ * @param {string} [languageCode]
10811
10674
  * @param {number} [page]
10812
10675
  * @param {number} [limit]
10813
10676
  * @param {Date} [lastRetrieved]
@@ -10815,7 +10678,7 @@ export declare class BookingsApi extends BaseAPI {
10815
10678
  * @throws {RequiredError}
10816
10679
  * @memberof BookingsApi
10817
10680
  */
10818
- apiV2BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, hospitalId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel, any>>;
10681
+ apiV2BookingsGet(hospitalId?: string, hospitalName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel, any>>;
10819
10682
  /**
10820
10683
  *
10821
10684
  * @summary Create booking.
@@ -11185,10 +11048,11 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
11185
11048
  *
11186
11049
  * @summary Get consultation.
11187
11050
  * @param {string} consultationId
11051
+ * @param {string} [languageCode]
11188
11052
  * @param {*} [options] Override http request option.
11189
11053
  * @throws {RequiredError}
11190
11054
  */
11191
- apiV2ConsultationsConsultationIdGet: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11055
+ apiV2ConsultationsConsultationIdGet: (consultationId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11192
11056
  /**
11193
11057
  *
11194
11058
  * @summary Pay consultation.
@@ -11209,19 +11073,24 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
11209
11073
  /**
11210
11074
  *
11211
11075
  * @summary Get all consultations.
11212
- * @param {string} [searchString]
11076
+ * @param {string} [hospitalId]
11077
+ * @param {string} [hospitalName]
11078
+ * @param {string} [doctorId]
11079
+ * @param {string} [doctorName]
11080
+ * @param {string} [dealId]
11081
+ * @param {string} [dealName]
11213
11082
  * @param {boolean} [isOpen]
11214
11083
  * @param {boolean} [isCompleted]
11215
11084
  * @param {ConsultationStatus} [status]
11216
11085
  * @param {ConsultationType} [consultationType]
11217
- * @param {string} [hospitalId]
11086
+ * @param {string} [languageCode]
11218
11087
  * @param {number} [page]
11219
11088
  * @param {number} [limit]
11220
11089
  * @param {Date} [lastRetrieved]
11221
11090
  * @param {*} [options] Override http request option.
11222
11091
  * @throws {RequiredError}
11223
11092
  */
11224
- apiV2ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, hospitalId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11093
+ apiV2ConsultationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11225
11094
  /**
11226
11095
  *
11227
11096
  * @summary Create consultation.
@@ -11241,10 +11110,11 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
11241
11110
  *
11242
11111
  * @summary Get consultation.
11243
11112
  * @param {string} consultationId
11113
+ * @param {string} [languageCode]
11244
11114
  * @param {*} [options] Override http request option.
11245
11115
  * @throws {RequiredError}
11246
11116
  */
11247
- apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
11117
+ apiV2ConsultationsConsultationIdGet(consultationId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
11248
11118
  /**
11249
11119
  *
11250
11120
  * @summary Pay consultation.
@@ -11265,19 +11135,24 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
11265
11135
  /**
11266
11136
  *
11267
11137
  * @summary Get all consultations.
11268
- * @param {string} [searchString]
11138
+ * @param {string} [hospitalId]
11139
+ * @param {string} [hospitalName]
11140
+ * @param {string} [doctorId]
11141
+ * @param {string} [doctorName]
11142
+ * @param {string} [dealId]
11143
+ * @param {string} [dealName]
11269
11144
  * @param {boolean} [isOpen]
11270
11145
  * @param {boolean} [isCompleted]
11271
11146
  * @param {ConsultationStatus} [status]
11272
11147
  * @param {ConsultationType} [consultationType]
11273
- * @param {string} [hospitalId]
11148
+ * @param {string} [languageCode]
11274
11149
  * @param {number} [page]
11275
11150
  * @param {number} [limit]
11276
11151
  * @param {Date} [lastRetrieved]
11277
11152
  * @param {*} [options] Override http request option.
11278
11153
  * @throws {RequiredError}
11279
11154
  */
11280
- apiV2ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, hospitalId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
11155
+ apiV2ConsultationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
11281
11156
  /**
11282
11157
  *
11283
11158
  * @summary Create consultation.
@@ -11297,10 +11172,11 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
11297
11172
  *
11298
11173
  * @summary Get consultation.
11299
11174
  * @param {string} consultationId
11175
+ * @param {string} [languageCode]
11300
11176
  * @param {*} [options] Override http request option.
11301
11177
  * @throws {RequiredError}
11302
11178
  */
11303
- apiV2ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel>;
11179
+ apiV2ConsultationsConsultationIdGet(consultationId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ConsultationModel>;
11304
11180
  /**
11305
11181
  *
11306
11182
  * @summary Pay consultation.
@@ -11321,19 +11197,24 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
11321
11197
  /**
11322
11198
  *
11323
11199
  * @summary Get all consultations.
11324
- * @param {string} [searchString]
11200
+ * @param {string} [hospitalId]
11201
+ * @param {string} [hospitalName]
11202
+ * @param {string} [doctorId]
11203
+ * @param {string} [doctorName]
11204
+ * @param {string} [dealId]
11205
+ * @param {string} [dealName]
11325
11206
  * @param {boolean} [isOpen]
11326
11207
  * @param {boolean} [isCompleted]
11327
11208
  * @param {ConsultationStatus} [status]
11328
11209
  * @param {ConsultationType} [consultationType]
11329
- * @param {string} [hospitalId]
11210
+ * @param {string} [languageCode]
11330
11211
  * @param {number} [page]
11331
11212
  * @param {number} [limit]
11332
11213
  * @param {Date} [lastRetrieved]
11333
11214
  * @param {*} [options] Override http request option.
11334
11215
  * @throws {RequiredError}
11335
11216
  */
11336
- apiV2ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, hospitalId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
11217
+ apiV2ConsultationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
11337
11218
  /**
11338
11219
  *
11339
11220
  * @summary Create consultation.
@@ -11355,11 +11236,12 @@ export declare class ConsultationsApi extends BaseAPI {
11355
11236
  *
11356
11237
  * @summary Get consultation.
11357
11238
  * @param {string} consultationId
11239
+ * @param {string} [languageCode]
11358
11240
  * @param {*} [options] Override http request option.
11359
11241
  * @throws {RequiredError}
11360
11242
  * @memberof ConsultationsApi
11361
11243
  */
11362
- apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel, any>>;
11244
+ apiV2ConsultationsConsultationIdGet(consultationId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel, any>>;
11363
11245
  /**
11364
11246
  *
11365
11247
  * @summary Pay consultation.
@@ -11382,12 +11264,17 @@ export declare class ConsultationsApi extends BaseAPI {
11382
11264
  /**
11383
11265
  *
11384
11266
  * @summary Get all consultations.
11385
- * @param {string} [searchString]
11267
+ * @param {string} [hospitalId]
11268
+ * @param {string} [hospitalName]
11269
+ * @param {string} [doctorId]
11270
+ * @param {string} [doctorName]
11271
+ * @param {string} [dealId]
11272
+ * @param {string} [dealName]
11386
11273
  * @param {boolean} [isOpen]
11387
11274
  * @param {boolean} [isCompleted]
11388
11275
  * @param {ConsultationStatus} [status]
11389
11276
  * @param {ConsultationType} [consultationType]
11390
- * @param {string} [hospitalId]
11277
+ * @param {string} [languageCode]
11391
11278
  * @param {number} [page]
11392
11279
  * @param {number} [limit]
11393
11280
  * @param {Date} [lastRetrieved]
@@ -11395,7 +11282,7 @@ export declare class ConsultationsApi extends BaseAPI {
11395
11282
  * @throws {RequiredError}
11396
11283
  * @memberof ConsultationsApi
11397
11284
  */
11398
- apiV2ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, hospitalId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel, any>>;
11285
+ apiV2ConsultationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel, any>>;
11399
11286
  /**
11400
11287
  *
11401
11288
  * @summary Create consultation.
@@ -12480,15 +12367,18 @@ export declare class DealsApi extends BaseAPI {
12480
12367
  apiV2DealsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel, any>>;
12481
12368
  }
12482
12369
  /**
12483
- * DoctorsApi - axios parameter creator
12370
+ * DoctorAffiliationsApi - axios parameter creator
12484
12371
  * @export
12485
12372
  */
12486
- export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
12373
+ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
12487
12374
  /**
12488
12375
  *
12489
12376
  * @summary Get all doctor affiliations.
12490
- * @param {string} doctorId
12377
+ * @param {string} [hospitalId]
12491
12378
  * @param {string} [hospitalName]
12379
+ * @param {string} [doctorId]
12380
+ * @param {string} [doctorName]
12381
+ * @param {string} [doctorSlug]
12492
12382
  * @param {string} [languageCode]
12493
12383
  * @param {number} [page]
12494
12384
  * @param {number} [limit]
@@ -12496,16 +12386,119 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
12496
12386
  * @param {*} [options] Override http request option.
12497
12387
  * @throws {RequiredError}
12498
12388
  */
12499
- apiV2DoctorsDoctorIdAffiliationsGet: (doctorId: string, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12389
+ apiV2DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12500
12390
  /**
12501
12391
  *
12502
12392
  * @summary Get doctor affiliation.
12503
- * @param {string} doctorId
12504
- * @param {string} hospitalId
12393
+ * @param {string} id
12394
+ * @param {string} [languageCode]
12395
+ * @param {*} [options] Override http request option.
12396
+ * @throws {RequiredError}
12397
+ */
12398
+ apiV2DoctoraffiliationsIdGet: (id: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12399
+ };
12400
+ /**
12401
+ * DoctorAffiliationsApi - functional programming interface
12402
+ * @export
12403
+ */
12404
+ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | undefined) => {
12405
+ /**
12406
+ *
12407
+ * @summary Get all doctor affiliations.
12408
+ * @param {string} [hospitalId]
12409
+ * @param {string} [hospitalName]
12410
+ * @param {string} [doctorId]
12411
+ * @param {string} [doctorName]
12412
+ * @param {string} [doctorSlug]
12413
+ * @param {string} [languageCode]
12414
+ * @param {number} [page]
12415
+ * @param {number} [limit]
12416
+ * @param {Date} [lastRetrieved]
12417
+ * @param {*} [options] Override http request option.
12418
+ * @throws {RequiredError}
12419
+ */
12420
+ apiV2DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
12421
+ /**
12422
+ *
12423
+ * @summary Get doctor affiliation.
12424
+ * @param {string} id
12425
+ * @param {string} [languageCode]
12426
+ * @param {*} [options] Override http request option.
12427
+ * @throws {RequiredError}
12428
+ */
12429
+ apiV2DoctoraffiliationsIdGet(id: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
12430
+ };
12431
+ /**
12432
+ * DoctorAffiliationsApi - factory interface
12433
+ * @export
12434
+ */
12435
+ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
12436
+ /**
12437
+ *
12438
+ * @summary Get all doctor affiliations.
12439
+ * @param {string} [hospitalId]
12440
+ * @param {string} [hospitalName]
12441
+ * @param {string} [doctorId]
12442
+ * @param {string} [doctorName]
12443
+ * @param {string} [doctorSlug]
12444
+ * @param {string} [languageCode]
12445
+ * @param {number} [page]
12446
+ * @param {number} [limit]
12447
+ * @param {Date} [lastRetrieved]
12448
+ * @param {*} [options] Override http request option.
12449
+ * @throws {RequiredError}
12450
+ */
12451
+ apiV2DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
12452
+ /**
12453
+ *
12454
+ * @summary Get doctor affiliation.
12455
+ * @param {string} id
12456
+ * @param {string} [languageCode]
12457
+ * @param {*} [options] Override http request option.
12458
+ * @throws {RequiredError}
12459
+ */
12460
+ apiV2DoctoraffiliationsIdGet(id: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
12461
+ };
12462
+ /**
12463
+ * DoctorAffiliationsApi - object-oriented interface
12464
+ * @export
12465
+ * @class DoctorAffiliationsApi
12466
+ * @extends {BaseAPI}
12467
+ */
12468
+ export declare class DoctorAffiliationsApi extends BaseAPI {
12469
+ /**
12470
+ *
12471
+ * @summary Get all doctor affiliations.
12472
+ * @param {string} [hospitalId]
12473
+ * @param {string} [hospitalName]
12474
+ * @param {string} [doctorId]
12475
+ * @param {string} [doctorName]
12476
+ * @param {string} [doctorSlug]
12477
+ * @param {string} [languageCode]
12478
+ * @param {number} [page]
12479
+ * @param {number} [limit]
12480
+ * @param {Date} [lastRetrieved]
12481
+ * @param {*} [options] Override http request option.
12482
+ * @throws {RequiredError}
12483
+ * @memberof DoctorAffiliationsApi
12484
+ */
12485
+ apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel, any>>;
12486
+ /**
12487
+ *
12488
+ * @summary Get doctor affiliation.
12489
+ * @param {string} id
12490
+ * @param {string} [languageCode]
12505
12491
  * @param {*} [options] Override http request option.
12506
12492
  * @throws {RequiredError}
12493
+ * @memberof DoctorAffiliationsApi
12507
12494
  */
12508
- apiV2DoctorsDoctorIdAffiliationsHospitalIdGet: (doctorId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12495
+ apiV2DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel, any>>;
12496
+ }
12497
+ /**
12498
+ * DoctorsApi - axios parameter creator
12499
+ * @export
12500
+ */
12501
+ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
12509
12502
  /**
12510
12503
  *
12511
12504
  * @summary Get DoctorCertificate.
@@ -12639,14 +12632,13 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
12639
12632
  * @param {string} [specialtyId]
12640
12633
  * @param {string} [specialtyName]
12641
12634
  * @param {string} [languageCode]
12642
- * @param {boolean} [showHidden]
12643
12635
  * @param {number} [page]
12644
12636
  * @param {number} [limit]
12645
12637
  * @param {Date} [lastRetrieved]
12646
12638
  * @param {*} [options] Override http request option.
12647
12639
  * @throws {RequiredError}
12648
12640
  */
12649
- apiV2DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12641
+ apiV2DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12650
12642
  /**
12651
12643
  *
12652
12644
  * @summary Get DoctorSpecialty
@@ -12720,28 +12712,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
12720
12712
  * @export
12721
12713
  */
12722
12714
  export declare const DoctorsApiFp: (configuration?: Configuration | undefined) => {
12723
- /**
12724
- *
12725
- * @summary Get all doctor affiliations.
12726
- * @param {string} doctorId
12727
- * @param {string} [hospitalName]
12728
- * @param {string} [languageCode]
12729
- * @param {number} [page]
12730
- * @param {number} [limit]
12731
- * @param {Date} [lastRetrieved]
12732
- * @param {*} [options] Override http request option.
12733
- * @throws {RequiredError}
12734
- */
12735
- apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
12736
- /**
12737
- *
12738
- * @summary Get doctor affiliation.
12739
- * @param {string} doctorId
12740
- * @param {string} hospitalId
12741
- * @param {*} [options] Override http request option.
12742
- * @throws {RequiredError}
12743
- */
12744
- apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
12745
12715
  /**
12746
12716
  *
12747
12717
  * @summary Get DoctorCertificate.
@@ -12875,14 +12845,13 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
12875
12845
  * @param {string} [specialtyId]
12876
12846
  * @param {string} [specialtyName]
12877
12847
  * @param {string} [languageCode]
12878
- * @param {boolean} [showHidden]
12879
12848
  * @param {number} [page]
12880
12849
  * @param {number} [limit]
12881
12850
  * @param {Date} [lastRetrieved]
12882
12851
  * @param {*} [options] Override http request option.
12883
12852
  * @throws {RequiredError}
12884
12853
  */
12885
- apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
12854
+ apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
12886
12855
  /**
12887
12856
  *
12888
12857
  * @summary Get DoctorSpecialty
@@ -12956,28 +12925,6 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
12956
12925
  * @export
12957
12926
  */
12958
12927
  export declare const DoctorsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
12959
- /**
12960
- *
12961
- * @summary Get all doctor affiliations.
12962
- * @param {string} doctorId
12963
- * @param {string} [hospitalName]
12964
- * @param {string} [languageCode]
12965
- * @param {number} [page]
12966
- * @param {number} [limit]
12967
- * @param {Date} [lastRetrieved]
12968
- * @param {*} [options] Override http request option.
12969
- * @throws {RequiredError}
12970
- */
12971
- apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
12972
- /**
12973
- *
12974
- * @summary Get doctor affiliation.
12975
- * @param {string} doctorId
12976
- * @param {string} hospitalId
12977
- * @param {*} [options] Override http request option.
12978
- * @throws {RequiredError}
12979
- */
12980
- apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: any): AxiosPromise<DoctorAffiliationModel>;
12981
12928
  /**
12982
12929
  *
12983
12930
  * @summary Get DoctorCertificate.
@@ -13111,14 +13058,13 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
13111
13058
  * @param {string} [specialtyId]
13112
13059
  * @param {string} [specialtyName]
13113
13060
  * @param {string} [languageCode]
13114
- * @param {boolean} [showHidden]
13115
13061
  * @param {number} [page]
13116
13062
  * @param {number} [limit]
13117
13063
  * @param {Date} [lastRetrieved]
13118
13064
  * @param {*} [options] Override http request option.
13119
13065
  * @throws {RequiredError}
13120
13066
  */
13121
- apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
13067
+ apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
13122
13068
  /**
13123
13069
  *
13124
13070
  * @summary Get DoctorSpecialty
@@ -13194,30 +13140,6 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
13194
13140
  * @extends {BaseAPI}
13195
13141
  */
13196
13142
  export declare class DoctorsApi extends BaseAPI {
13197
- /**
13198
- *
13199
- * @summary Get all doctor affiliations.
13200
- * @param {string} doctorId
13201
- * @param {string} [hospitalName]
13202
- * @param {string} [languageCode]
13203
- * @param {number} [page]
13204
- * @param {number} [limit]
13205
- * @param {Date} [lastRetrieved]
13206
- * @param {*} [options] Override http request option.
13207
- * @throws {RequiredError}
13208
- * @memberof DoctorsApi
13209
- */
13210
- apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel, any>>;
13211
- /**
13212
- *
13213
- * @summary Get doctor affiliation.
13214
- * @param {string} doctorId
13215
- * @param {string} hospitalId
13216
- * @param {*} [options] Override http request option.
13217
- * @throws {RequiredError}
13218
- * @memberof DoctorsApi
13219
- */
13220
- apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel, any>>;
13221
13143
  /**
13222
13144
  *
13223
13145
  * @summary Get DoctorCertificate.
@@ -13362,7 +13284,6 @@ export declare class DoctorsApi extends BaseAPI {
13362
13284
  * @param {string} [specialtyId]
13363
13285
  * @param {string} [specialtyName]
13364
13286
  * @param {string} [languageCode]
13365
- * @param {boolean} [showHidden]
13366
13287
  * @param {number} [page]
13367
13288
  * @param {number} [limit]
13368
13289
  * @param {Date} [lastRetrieved]
@@ -13370,7 +13291,7 @@ export declare class DoctorsApi extends BaseAPI {
13370
13291
  * @throws {RequiredError}
13371
13292
  * @memberof DoctorsApi
13372
13293
  */
13373
- apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel, any>>;
13294
+ apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel, any>>;
13374
13295
  /**
13375
13296
  *
13376
13297
  * @summary Get DoctorSpecialty
@@ -14350,17 +14271,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14350
14271
  * @param {string} [name]
14351
14272
  * @param {string} [slug]
14352
14273
  * @param {MarketingType} [marketingType]
14353
- * @param {boolean} [returnDefaultValue]
14354
- * @param {boolean} [includeServices]
14355
14274
  * @param {string} [languageCode]
14356
- * @param {boolean} [showHidden]
14357
14275
  * @param {number} [page]
14358
14276
  * @param {number} [limit]
14359
14277
  * @param {Date} [lastRetrieved]
14360
14278
  * @param {*} [options] Override http request option.
14361
14279
  * @throws {RequiredError}
14362
14280
  */
14363
- apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14281
+ apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14364
14282
  /**
14365
14283
  *
14366
14284
  * @summary Get all HospitalServiceMedias.
@@ -14397,29 +14315,24 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14397
14315
  * @param {string} [name]
14398
14316
  * @param {string} [slug]
14399
14317
  * @param {MarketingType} [marketingType]
14400
- * @param {boolean} [returnDefaultValue]
14401
- * @param {boolean} [includeServices]
14402
14318
  * @param {string} [languageCode]
14403
- * @param {boolean} [showHidden]
14404
14319
  * @param {number} [page]
14405
14320
  * @param {number} [limit]
14406
14321
  * @param {Date} [lastRetrieved]
14407
14322
  * @param {*} [options] Override http request option.
14408
14323
  * @throws {RequiredError}
14409
14324
  */
14410
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14325
+ apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14411
14326
  /**
14412
14327
  *
14413
14328
  * @summary Get HospitalSpecialty by slug.
14414
14329
  * @param {string} hospitalId
14415
14330
  * @param {string} slug
14416
14331
  * @param {string} [languageCode]
14417
- * @param {boolean} [returnDefaultValue]
14418
- * @param {boolean} [includeServices]
14419
14332
  * @param {*} [options] Override http request option.
14420
14333
  * @throws {RequiredError}
14421
14334
  */
14422
- apiV2HospitalsHospitalIdSpecialtiesSlugGet: (hospitalId: string, slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14335
+ apiV2HospitalsHospitalIdSpecialtiesSlugGet: (hospitalId: string, slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14423
14336
  /**
14424
14337
  *
14425
14338
  * @summary Get HospitalSpecialty.
@@ -14737,17 +14650,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
14737
14650
  * @param {string} [name]
14738
14651
  * @param {string} [slug]
14739
14652
  * @param {MarketingType} [marketingType]
14740
- * @param {boolean} [returnDefaultValue]
14741
- * @param {boolean} [includeServices]
14742
14653
  * @param {string} [languageCode]
14743
- * @param {boolean} [showHidden]
14744
14654
  * @param {number} [page]
14745
14655
  * @param {number} [limit]
14746
14656
  * @param {Date} [lastRetrieved]
14747
14657
  * @param {*} [options] Override http request option.
14748
14658
  * @throws {RequiredError}
14749
14659
  */
14750
- apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
14660
+ apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
14751
14661
  /**
14752
14662
  *
14753
14663
  * @summary Get all HospitalServiceMedias.
@@ -14784,29 +14694,24 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
14784
14694
  * @param {string} [name]
14785
14695
  * @param {string} [slug]
14786
14696
  * @param {MarketingType} [marketingType]
14787
- * @param {boolean} [returnDefaultValue]
14788
- * @param {boolean} [includeServices]
14789
14697
  * @param {string} [languageCode]
14790
- * @param {boolean} [showHidden]
14791
14698
  * @param {number} [page]
14792
14699
  * @param {number} [limit]
14793
14700
  * @param {Date} [lastRetrieved]
14794
14701
  * @param {*} [options] Override http request option.
14795
14702
  * @throws {RequiredError}
14796
14703
  */
14797
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
14704
+ apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
14798
14705
  /**
14799
14706
  *
14800
14707
  * @summary Get HospitalSpecialty by slug.
14801
14708
  * @param {string} hospitalId
14802
14709
  * @param {string} slug
14803
14710
  * @param {string} [languageCode]
14804
- * @param {boolean} [returnDefaultValue]
14805
- * @param {boolean} [includeServices]
14806
14711
  * @param {*} [options] Override http request option.
14807
14712
  * @throws {RequiredError}
14808
14713
  */
14809
- apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
14714
+ apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
14810
14715
  /**
14811
14716
  *
14812
14717
  * @summary Get HospitalSpecialty.
@@ -15124,17 +15029,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15124
15029
  * @param {string} [name]
15125
15030
  * @param {string} [slug]
15126
15031
  * @param {MarketingType} [marketingType]
15127
- * @param {boolean} [returnDefaultValue]
15128
- * @param {boolean} [includeServices]
15129
15032
  * @param {string} [languageCode]
15130
- * @param {boolean} [showHidden]
15131
15033
  * @param {number} [page]
15132
15034
  * @param {number} [limit]
15133
15035
  * @param {Date} [lastRetrieved]
15134
15036
  * @param {*} [options] Override http request option.
15135
15037
  * @throws {RequiredError}
15136
15038
  */
15137
- apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
15039
+ apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
15138
15040
  /**
15139
15041
  *
15140
15042
  * @summary Get all HospitalServiceMedias.
@@ -15171,29 +15073,24 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15171
15073
  * @param {string} [name]
15172
15074
  * @param {string} [slug]
15173
15075
  * @param {MarketingType} [marketingType]
15174
- * @param {boolean} [returnDefaultValue]
15175
- * @param {boolean} [includeServices]
15176
15076
  * @param {string} [languageCode]
15177
- * @param {boolean} [showHidden]
15178
15077
  * @param {number} [page]
15179
15078
  * @param {number} [limit]
15180
15079
  * @param {Date} [lastRetrieved]
15181
15080
  * @param {*} [options] Override http request option.
15182
15081
  * @throws {RequiredError}
15183
15082
  */
15184
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
15083
+ apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
15185
15084
  /**
15186
15085
  *
15187
15086
  * @summary Get HospitalSpecialty by slug.
15188
15087
  * @param {string} hospitalId
15189
15088
  * @param {string} slug
15190
15089
  * @param {string} [languageCode]
15191
- * @param {boolean} [returnDefaultValue]
15192
- * @param {boolean} [includeServices]
15193
15090
  * @param {*} [options] Override http request option.
15194
15091
  * @throws {RequiredError}
15195
15092
  */
15196
- apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
15093
+ apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
15197
15094
  /**
15198
15095
  *
15199
15096
  * @summary Get HospitalSpecialty.
@@ -15527,10 +15424,7 @@ export declare class HospitalsApi extends BaseAPI {
15527
15424
  * @param {string} [name]
15528
15425
  * @param {string} [slug]
15529
15426
  * @param {MarketingType} [marketingType]
15530
- * @param {boolean} [returnDefaultValue]
15531
- * @param {boolean} [includeServices]
15532
15427
  * @param {string} [languageCode]
15533
- * @param {boolean} [showHidden]
15534
15428
  * @param {number} [page]
15535
15429
  * @param {number} [limit]
15536
15430
  * @param {Date} [lastRetrieved]
@@ -15538,7 +15432,7 @@ export declare class HospitalsApi extends BaseAPI {
15538
15432
  * @throws {RequiredError}
15539
15433
  * @memberof HospitalsApi
15540
15434
  */
15541
- apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, returnDefaultValue?: boolean, includeServices?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
15435
+ apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
15542
15436
  /**
15543
15437
  *
15544
15438
  * @summary Get all HospitalServiceMedias.
@@ -15577,10 +15471,7 @@ export declare class HospitalsApi extends BaseAPI {
15577
15471
  * @param {string} [name]
15578
15472
  * @param {string} [slug]
15579
15473
  * @param {MarketingType} [marketingType]
15580
- * @param {boolean} [returnDefaultValue]
15581
- * @param {boolean} [includeServices]
15582
15474
  * @param {string} [languageCode]
15583
- * @param {boolean} [showHidden]
15584
15475
  * @param {number} [page]
15585
15476
  * @param {number} [limit]
15586
15477
  * @param {Date} [lastRetrieved]
@@ -15588,20 +15479,18 @@ export declare class HospitalsApi extends BaseAPI {
15588
15479
  * @throws {RequiredError}
15589
15480
  * @memberof HospitalsApi
15590
15481
  */
15591
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, returnDefaultValue?: boolean, includeServices?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel, any>>;
15482
+ apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel, any>>;
15592
15483
  /**
15593
15484
  *
15594
15485
  * @summary Get HospitalSpecialty by slug.
15595
15486
  * @param {string} hospitalId
15596
15487
  * @param {string} slug
15597
15488
  * @param {string} [languageCode]
15598
- * @param {boolean} [returnDefaultValue]
15599
- * @param {boolean} [includeServices]
15600
15489
  * @param {*} [options] Override http request option.
15601
15490
  * @throws {RequiredError}
15602
15491
  * @memberof HospitalsApi
15603
15492
  */
15604
- apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
15493
+ apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
15605
15494
  /**
15606
15495
  *
15607
15496
  * @summary Get HospitalSpecialty.