ch-api-client-typescript2 3.2.7 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. package/lib/api.d.ts +1010 -1006
  2. package/lib/api.d.ts.map +1 -1
  3. package/lib/api.js +729 -430
  4. package/package.json +1 -1
  5. package/src/api.ts +1362 -1210
package/lib/api.d.ts CHANGED
@@ -47,37 +47,19 @@ export interface AboutUsPageItemModel {
47
47
  * @type {string}
48
48
  * @memberof AboutUsPageItemModel
49
49
  */
50
- 'overviewTitle'?: string | null;
51
- /**
52
- *
53
- * @type {string}
54
- * @memberof AboutUsPageItemModel
55
- */
56
- 'overview'?: string | null;
57
- /**
58
- *
59
- * @type {string}
60
- * @memberof AboutUsPageItemModel
61
- */
62
- 'content'?: string | null;
63
- /**
64
- *
65
- * @type {string}
66
- * @memberof AboutUsPageItemModel
67
- */
68
- 'customStyle'?: string | null;
50
+ 'name'?: string | null;
69
51
  /**
70
52
  *
71
53
  * @type {string}
72
54
  * @memberof AboutUsPageItemModel
73
55
  */
74
- 'background'?: string | null;
56
+ 'slug'?: string | null;
75
57
  /**
76
58
  *
77
59
  * @type {string}
78
60
  * @memberof AboutUsPageItemModel
79
61
  */
80
- 'backgroundThumbnail'?: string | null;
62
+ 'description'?: string | null;
81
63
  /**
82
64
  *
83
65
  * @type {boolean}
@@ -132,61 +114,73 @@ export interface AboutUsPageModel {
132
114
  * @type {string}
133
115
  * @memberof AboutUsPageModel
134
116
  */
135
- 'overviewTitle'?: string | null;
117
+ 'name'?: string | null;
136
118
  /**
137
119
  *
138
120
  * @type {string}
139
121
  * @memberof AboutUsPageModel
140
122
  */
141
- 'overview'?: string | null;
123
+ 'slug'?: string | null;
142
124
  /**
143
125
  *
144
126
  * @type {string}
145
127
  * @memberof AboutUsPageModel
146
128
  */
147
- 'content'?: string | null;
129
+ 'description'?: string | null;
148
130
  /**
149
131
  *
150
- * @type {string}
132
+ * @type {boolean}
151
133
  * @memberof AboutUsPageModel
152
134
  */
153
- 'customStyle'?: string | null;
135
+ 'confirmed'?: boolean;
154
136
  /**
155
137
  *
156
- * @type {string}
138
+ * @type {Array<MediaModel>}
157
139
  * @memberof AboutUsPageModel
158
140
  */
159
- 'background'?: string | null;
141
+ 'medias'?: Array<MediaModel> | null;
142
+ /**
143
+ *
144
+ * @type {AuditableEntity}
145
+ * @memberof AboutUsPageModel
146
+ */
147
+ 'auditableEntity'?: AuditableEntity;
160
148
  /**
161
149
  *
162
150
  * @type {string}
163
151
  * @memberof AboutUsPageModel
164
152
  */
165
- 'backgroundThumbnail'?: string | null;
153
+ 'languageCode'?: string | null;
166
154
  /**
167
155
  *
168
- * @type {boolean}
156
+ * @type {string}
169
157
  * @memberof AboutUsPageModel
170
158
  */
171
- 'confirmed'?: boolean;
159
+ 'content'?: string | null;
172
160
  /**
173
161
  *
174
- * @type {Array<MediaModel>}
162
+ * @type {string}
175
163
  * @memberof AboutUsPageModel
176
164
  */
177
- 'medias'?: Array<MediaModel> | null;
165
+ 'customStyle'?: string | null;
178
166
  /**
179
167
  *
180
- * @type {AuditableEntity}
168
+ * @type {string}
181
169
  * @memberof AboutUsPageModel
182
170
  */
183
- 'auditableEntity'?: AuditableEntity;
171
+ 'background'?: string | null;
184
172
  /**
185
173
  *
186
174
  * @type {string}
187
175
  * @memberof AboutUsPageModel
188
176
  */
189
- 'languageCode'?: string | null;
177
+ 'backgroundThumbnail'?: string | null;
178
+ /**
179
+ *
180
+ * @type {Array<LocalizedUrlModel>}
181
+ * @memberof AboutUsPageModel
182
+ */
183
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
190
184
  }
191
185
  /**
192
186
  *
@@ -427,6 +421,18 @@ export interface ArticleContributorItemModel {
427
421
  * @memberof ArticleContributorItemModel
428
422
  */
429
423
  'order'?: number;
424
+ /**
425
+ *
426
+ * @type {boolean}
427
+ * @memberof ArticleContributorItemModel
428
+ */
429
+ 'confirmed'?: boolean;
430
+ /**
431
+ *
432
+ * @type {AuditableEntity}
433
+ * @memberof ArticleContributorItemModel
434
+ */
435
+ 'auditableEntity'?: AuditableEntity;
430
436
  /**
431
437
  *
432
438
  * @type {Array<SnsHandleModel>}
@@ -506,12 +512,48 @@ export interface ArticleContributorModel {
506
512
  * @memberof ArticleContributorModel
507
513
  */
508
514
  'order'?: number;
515
+ /**
516
+ *
517
+ * @type {boolean}
518
+ * @memberof ArticleContributorModel
519
+ */
520
+ 'confirmed'?: boolean;
521
+ /**
522
+ *
523
+ * @type {AuditableEntity}
524
+ * @memberof ArticleContributorModel
525
+ */
526
+ 'auditableEntity'?: AuditableEntity;
509
527
  /**
510
528
  *
511
529
  * @type {Array<SnsHandleModel>}
512
530
  * @memberof ArticleContributorModel
513
531
  */
514
532
  'contributorSnsHandles'?: Array<SnsHandleModel> | null;
533
+ /**
534
+ *
535
+ * @type {string}
536
+ * @memberof ArticleContributorModel
537
+ */
538
+ 'languageCode'?: string | null;
539
+ /**
540
+ *
541
+ * @type {string}
542
+ * @memberof ArticleContributorModel
543
+ */
544
+ 'content'?: string | null;
545
+ /**
546
+ *
547
+ * @type {Array<SnsHandle>}
548
+ * @memberof ArticleContributorModel
549
+ */
550
+ 'snsHandles'?: Array<SnsHandle> | null;
551
+ /**
552
+ *
553
+ * @type {Array<LocalizedUrlModel>}
554
+ * @memberof ArticleContributorModel
555
+ */
556
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
515
557
  }
516
558
  /**
517
559
  *
@@ -549,7 +591,7 @@ export interface ArticleItemModel {
549
591
  * @type {string}
550
592
  * @memberof ArticleItemModel
551
593
  */
552
- 'title'?: string | null;
594
+ 'name'?: string | null;
553
595
  /**
554
596
  *
555
597
  * @type {string}
@@ -616,6 +658,12 @@ export interface ArticleItemModel {
616
658
  * @memberof ArticleItemModel
617
659
  */
618
660
  'youtubeUrl'?: string | null;
661
+ /**
662
+ *
663
+ * @type {boolean}
664
+ * @memberof ArticleItemModel
665
+ */
666
+ 'confirmed'?: boolean;
619
667
  /**
620
668
  *
621
669
  * @type {Array<ArticleTagItemModel>}
@@ -646,18 +694,6 @@ export interface ArticleItemModel {
646
694
  * @memberof ArticleItemModel
647
695
  */
648
696
  'auditableEntity'?: AuditableEntity;
649
- /**
650
- *
651
- * @type {Array<LocalizedUrlModel>}
652
- * @memberof ArticleItemModel
653
- */
654
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
655
- /**
656
- *
657
- * @type {boolean}
658
- * @memberof ArticleItemModel
659
- */
660
- 'confirmed'?: boolean;
661
697
  }
662
698
  /**
663
699
  *
@@ -676,7 +712,7 @@ export interface ArticleModel {
676
712
  * @type {string}
677
713
  * @memberof ArticleModel
678
714
  */
679
- 'title'?: string | null;
715
+ 'name'?: string | null;
680
716
  /**
681
717
  *
682
718
  * @type {string}
@@ -743,6 +779,12 @@ export interface ArticleModel {
743
779
  * @memberof ArticleModel
744
780
  */
745
781
  'youtubeUrl'?: string | null;
782
+ /**
783
+ *
784
+ * @type {boolean}
785
+ * @memberof ArticleModel
786
+ */
787
+ 'confirmed'?: boolean;
746
788
  /**
747
789
  *
748
790
  * @type {Array<ArticleTagItemModel>}
@@ -775,22 +817,22 @@ export interface ArticleModel {
775
817
  'auditableEntity'?: AuditableEntity;
776
818
  /**
777
819
  *
778
- * @type {Array<LocalizedUrlModel>}
820
+ * @type {string}
779
821
  * @memberof ArticleModel
780
822
  */
781
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
823
+ 'content'?: string | null;
782
824
  /**
783
825
  *
784
- * @type {boolean}
826
+ * @type {string}
785
827
  * @memberof ArticleModel
786
828
  */
787
- 'confirmed'?: boolean;
829
+ 'languageCode'?: string | null;
788
830
  /**
789
831
  *
790
- * @type {string}
832
+ * @type {Array<LocalizedUrlModel>}
791
833
  * @memberof ArticleModel
792
834
  */
793
- 'languageCode'?: string | null;
835
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
794
836
  }
795
837
  /**
796
838
  *
@@ -2401,25 +2443,25 @@ export interface ContributorItemModel {
2401
2443
  * @type {string}
2402
2444
  * @memberof ContributorItemModel
2403
2445
  */
2404
- 'email'?: string | null;
2446
+ 'description'?: string | null;
2405
2447
  /**
2406
2448
  *
2407
2449
  * @type {string}
2408
2450
  * @memberof ContributorItemModel
2409
2451
  */
2410
- 'photo'?: string | null;
2452
+ 'email'?: string | null;
2411
2453
  /**
2412
2454
  *
2413
2455
  * @type {string}
2414
2456
  * @memberof ContributorItemModel
2415
2457
  */
2416
- 'photoThumbnail'?: string | null;
2458
+ 'photo'?: string | null;
2417
2459
  /**
2418
2460
  *
2419
2461
  * @type {string}
2420
2462
  * @memberof ContributorItemModel
2421
2463
  */
2422
- 'description'?: string | null;
2464
+ 'photoThumbnail'?: string | null;
2423
2465
  /**
2424
2466
  *
2425
2467
  * @type {string}
@@ -2446,16 +2488,16 @@ export interface ContributorItemModel {
2446
2488
  'order'?: number;
2447
2489
  /**
2448
2490
  *
2449
- * @type {Array<LocalizedUrlModel>}
2491
+ * @type {boolean}
2450
2492
  * @memberof ContributorItemModel
2451
2493
  */
2452
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
2494
+ 'confirmed'?: boolean;
2453
2495
  /**
2454
2496
  *
2455
- * @type {boolean}
2497
+ * @type {AuditableEntity}
2456
2498
  * @memberof ContributorItemModel
2457
2499
  */
2458
- 'confirmed'?: boolean;
2500
+ 'auditableEntity'?: AuditableEntity;
2459
2501
  }
2460
2502
  /**
2461
2503
  *
@@ -2486,25 +2528,25 @@ export interface ContributorModel {
2486
2528
  * @type {string}
2487
2529
  * @memberof ContributorModel
2488
2530
  */
2489
- 'email'?: string | null;
2531
+ 'description'?: string | null;
2490
2532
  /**
2491
2533
  *
2492
2534
  * @type {string}
2493
2535
  * @memberof ContributorModel
2494
2536
  */
2495
- 'photo'?: string | null;
2537
+ 'email'?: string | null;
2496
2538
  /**
2497
2539
  *
2498
2540
  * @type {string}
2499
2541
  * @memberof ContributorModel
2500
2542
  */
2501
- 'photoThumbnail'?: string | null;
2543
+ 'photo'?: string | null;
2502
2544
  /**
2503
2545
  *
2504
2546
  * @type {string}
2505
2547
  * @memberof ContributorModel
2506
2548
  */
2507
- 'description'?: string | null;
2549
+ 'photoThumbnail'?: string | null;
2508
2550
  /**
2509
2551
  *
2510
2552
  * @type {string}
@@ -2531,22 +2573,40 @@ export interface ContributorModel {
2531
2573
  'order'?: number;
2532
2574
  /**
2533
2575
  *
2534
- * @type {Array<LocalizedUrlModel>}
2576
+ * @type {boolean}
2535
2577
  * @memberof ContributorModel
2536
2578
  */
2537
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
2579
+ 'confirmed'?: boolean;
2538
2580
  /**
2539
2581
  *
2540
- * @type {boolean}
2582
+ * @type {AuditableEntity}
2541
2583
  * @memberof ContributorModel
2542
2584
  */
2543
- 'confirmed'?: boolean;
2585
+ 'auditableEntity'?: AuditableEntity;
2544
2586
  /**
2545
2587
  *
2546
2588
  * @type {string}
2547
2589
  * @memberof ContributorModel
2548
2590
  */
2549
2591
  'languageCode'?: string | null;
2592
+ /**
2593
+ *
2594
+ * @type {string}
2595
+ * @memberof ContributorModel
2596
+ */
2597
+ 'content'?: string | null;
2598
+ /**
2599
+ *
2600
+ * @type {Array<SnsHandle>}
2601
+ * @memberof ContributorModel
2602
+ */
2603
+ 'snsHandles'?: Array<SnsHandle> | null;
2604
+ /**
2605
+ *
2606
+ * @type {Array<LocalizedUrlModel>}
2607
+ * @memberof ContributorModel
2608
+ */
2609
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
2550
2610
  }
2551
2611
  /**
2552
2612
  *
@@ -2641,12 +2701,6 @@ export interface CountryItemModel {
2641
2701
  * @memberof CountryItemModel
2642
2702
  */
2643
2703
  'description'?: string | null;
2644
- /**
2645
- *
2646
- * @type {string}
2647
- * @memberof CountryItemModel
2648
- */
2649
- 'content'?: string | null;
2650
2704
  /**
2651
2705
  *
2652
2706
  * @type {number}
@@ -2679,28 +2733,22 @@ export interface CountryItemModel {
2679
2733
  'articlesCount'?: number;
2680
2734
  /**
2681
2735
  *
2682
- * @type {Array<MediaModel>}
2683
- * @memberof CountryItemModel
2684
- */
2685
- 'medias'?: Array<MediaModel> | null;
2686
- /**
2687
- *
2688
- * @type {AuditableEntity}
2736
+ * @type {boolean}
2689
2737
  * @memberof CountryItemModel
2690
2738
  */
2691
- 'auditableEntity'?: AuditableEntity;
2739
+ 'confirmed'?: boolean;
2692
2740
  /**
2693
2741
  *
2694
- * @type {Array<LocalizedUrlModel>}
2742
+ * @type {Array<MediaModel>}
2695
2743
  * @memberof CountryItemModel
2696
2744
  */
2697
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
2745
+ 'medias'?: Array<MediaModel> | null;
2698
2746
  /**
2699
2747
  *
2700
- * @type {boolean}
2748
+ * @type {AuditableEntity}
2701
2749
  * @memberof CountryItemModel
2702
2750
  */
2703
- 'confirmed'?: boolean;
2751
+ 'auditableEntity'?: AuditableEntity;
2704
2752
  }
2705
2753
  /**
2706
2754
  *
@@ -2738,12 +2786,6 @@ export interface CountryModel {
2738
2786
  * @memberof CountryModel
2739
2787
  */
2740
2788
  'description'?: string | null;
2741
- /**
2742
- *
2743
- * @type {string}
2744
- * @memberof CountryModel
2745
- */
2746
- 'content'?: string | null;
2747
2789
  /**
2748
2790
  *
2749
2791
  * @type {number}
@@ -2774,6 +2816,12 @@ export interface CountryModel {
2774
2816
  * @memberof CountryModel
2775
2817
  */
2776
2818
  'articlesCount'?: number;
2819
+ /**
2820
+ *
2821
+ * @type {boolean}
2822
+ * @memberof CountryModel
2823
+ */
2824
+ 'confirmed'?: boolean;
2777
2825
  /**
2778
2826
  *
2779
2827
  * @type {Array<MediaModel>}
@@ -2788,22 +2836,22 @@ export interface CountryModel {
2788
2836
  'auditableEntity'?: AuditableEntity;
2789
2837
  /**
2790
2838
  *
2791
- * @type {Array<LocalizedUrlModel>}
2839
+ * @type {string}
2792
2840
  * @memberof CountryModel
2793
2841
  */
2794
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
2842
+ 'languageCode'?: string | null;
2795
2843
  /**
2796
2844
  *
2797
- * @type {boolean}
2845
+ * @type {string}
2798
2846
  * @memberof CountryModel
2799
2847
  */
2800
- 'confirmed'?: boolean;
2848
+ 'content'?: string | null;
2801
2849
  /**
2802
2850
  *
2803
- * @type {string}
2851
+ * @type {Array<LocalizedUrlModel>}
2804
2852
  * @memberof CountryModel
2805
2853
  */
2806
- 'languageCode'?: string | null;
2854
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
2807
2855
  }
2808
2856
  /**
2809
2857
  *
@@ -3219,12 +3267,6 @@ export interface DealItemModel {
3219
3267
  * @memberof DealItemModel
3220
3268
  */
3221
3269
  'name'?: string | null;
3222
- /**
3223
- *
3224
- * @type {string}
3225
- * @memberof DealItemModel
3226
- */
3227
- 'normalizedName'?: string | null;
3228
3270
  /**
3229
3271
  *
3230
3272
  * @type {string}
@@ -3281,13 +3323,7 @@ export interface DealItemModel {
3281
3323
  'serviceDuration'?: number;
3282
3324
  /**
3283
3325
  *
3284
- * @type {number}
3285
- * @memberof DealItemModel
3286
- */
3287
- 'order'?: number;
3288
- /**
3289
- *
3290
- * @type {MarketingType}
3326
+ * @type {MarketingType}
3291
3327
  * @memberof DealItemModel
3292
3328
  */
3293
3329
  'marketingType'?: MarketingType;
@@ -3305,28 +3341,28 @@ export interface DealItemModel {
3305
3341
  'photoThumbnail'?: string | null;
3306
3342
  /**
3307
3343
  *
3308
- * @type {Array<DealPackageItemModel>}
3344
+ * @type {number}
3309
3345
  * @memberof DealItemModel
3310
3346
  */
3311
- 'dealPackages'?: Array<DealPackageItemModel> | null;
3347
+ 'order'?: number;
3312
3348
  /**
3313
3349
  *
3314
- * @type {Array<DealServiceItemModel>}
3350
+ * @type {boolean}
3315
3351
  * @memberof DealItemModel
3316
3352
  */
3317
- 'dealServices'?: Array<DealServiceItemModel> | null;
3353
+ 'confirmed'?: boolean;
3318
3354
  /**
3319
3355
  *
3320
- * @type {Array<LocalizedUrlModel>}
3356
+ * @type {Array<DealPackageItemModel>}
3321
3357
  * @memberof DealItemModel
3322
3358
  */
3323
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
3359
+ 'dealPackages'?: Array<DealPackageItemModel> | null;
3324
3360
  /**
3325
3361
  *
3326
- * @type {boolean}
3362
+ * @type {Array<DealServiceItemModel>}
3327
3363
  * @memberof DealItemModel
3328
3364
  */
3329
- 'confirmed'?: boolean;
3365
+ 'dealServices'?: Array<DealServiceItemModel> | null;
3330
3366
  /**
3331
3367
  *
3332
3368
  * @type {AuditableEntity}
@@ -3352,12 +3388,6 @@ export interface DealItemSimpleModel {
3352
3388
  * @memberof DealItemSimpleModel
3353
3389
  */
3354
3390
  'name'?: string | null;
3355
- /**
3356
- *
3357
- * @type {string}
3358
- * @memberof DealItemSimpleModel
3359
- */
3360
- 'normalizedName'?: string | null;
3361
3391
  /**
3362
3392
  *
3363
3393
  * @type {string}
@@ -3378,16 +3408,16 @@ export interface DealItemSimpleModel {
3378
3408
  'hospitalName'?: string | null;
3379
3409
  /**
3380
3410
  *
3381
- * @type {number}
3411
+ * @type {string}
3382
3412
  * @memberof DealItemSimpleModel
3383
3413
  */
3384
- 'order'?: number;
3414
+ 'hospitalSlug'?: string | null;
3385
3415
  /**
3386
3416
  *
3387
- * @type {Array<LocalizedUrlModel>}
3417
+ * @type {number}
3388
3418
  * @memberof DealItemSimpleModel
3389
3419
  */
3390
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
3420
+ 'order'?: number;
3391
3421
  /**
3392
3422
  *
3393
3423
  * @type {boolean}
@@ -3419,12 +3449,6 @@ export interface DealModel {
3419
3449
  * @memberof DealModel
3420
3450
  */
3421
3451
  'name'?: string | null;
3422
- /**
3423
- *
3424
- * @type {string}
3425
- * @memberof DealModel
3426
- */
3427
- 'normalizedName'?: string | null;
3428
3452
  /**
3429
3453
  *
3430
3454
  * @type {string}
@@ -3479,12 +3503,6 @@ export interface DealModel {
3479
3503
  * @memberof DealModel
3480
3504
  */
3481
3505
  'serviceDuration'?: number;
3482
- /**
3483
- *
3484
- * @type {number}
3485
- * @memberof DealModel
3486
- */
3487
- 'order'?: number;
3488
3506
  /**
3489
3507
  *
3490
3508
  * @type {MarketingType}
@@ -3505,28 +3523,28 @@ export interface DealModel {
3505
3523
  'photoThumbnail'?: string | null;
3506
3524
  /**
3507
3525
  *
3508
- * @type {Array<DealPackageItemModel>}
3526
+ * @type {number}
3509
3527
  * @memberof DealModel
3510
3528
  */
3511
- 'dealPackages'?: Array<DealPackageItemModel> | null;
3529
+ 'order'?: number;
3512
3530
  /**
3513
3531
  *
3514
- * @type {Array<DealServiceItemModel>}
3532
+ * @type {boolean}
3515
3533
  * @memberof DealModel
3516
3534
  */
3517
- 'dealServices'?: Array<DealServiceItemModel> | null;
3535
+ 'confirmed'?: boolean;
3518
3536
  /**
3519
3537
  *
3520
- * @type {Array<LocalizedUrlModel>}
3538
+ * @type {Array<DealPackageItemModel>}
3521
3539
  * @memberof DealModel
3522
3540
  */
3523
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
3541
+ 'dealPackages'?: Array<DealPackageItemModel> | null;
3524
3542
  /**
3525
3543
  *
3526
- * @type {boolean}
3544
+ * @type {Array<DealServiceItemModel>}
3527
3545
  * @memberof DealModel
3528
3546
  */
3529
- 'confirmed'?: boolean;
3547
+ 'dealServices'?: Array<DealServiceItemModel> | null;
3530
3548
  /**
3531
3549
  *
3532
3550
  * @type {AuditableEntity}
@@ -3539,6 +3557,12 @@ export interface DealModel {
3539
3557
  * @memberof DealModel
3540
3558
  */
3541
3559
  'languageCode'?: string | null;
3560
+ /**
3561
+ *
3562
+ * @type {Array<LocalizedUrlModel>}
3563
+ * @memberof DealModel
3564
+ */
3565
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
3542
3566
  }
3543
3567
  /**
3544
3568
  *
@@ -4168,19 +4192,19 @@ export interface DoctorItemModel {
4168
4192
  * @type {string}
4169
4193
  * @memberof DoctorItemModel
4170
4194
  */
4171
- 'userType'?: string | null;
4195
+ 'userName'?: string | null;
4172
4196
  /**
4173
4197
  *
4174
4198
  * @type {string}
4175
4199
  * @memberof DoctorItemModel
4176
4200
  */
4177
- 'userName'?: string | null;
4201
+ 'firstName'?: string | null;
4178
4202
  /**
4179
4203
  *
4180
4204
  * @type {string}
4181
4205
  * @memberof DoctorItemModel
4182
4206
  */
4183
- 'firstName'?: string | null;
4207
+ 'middleName'?: string | null;
4184
4208
  /**
4185
4209
  *
4186
4210
  * @type {string}
@@ -4192,7 +4216,13 @@ export interface DoctorItemModel {
4192
4216
  * @type {string}
4193
4217
  * @memberof DoctorItemModel
4194
4218
  */
4195
- 'fullname'?: string | null;
4219
+ 'fullName'?: string | null;
4220
+ /**
4221
+ *
4222
+ * @type {string}
4223
+ * @memberof DoctorItemModel
4224
+ */
4225
+ 'slug'?: string | null;
4196
4226
  /**
4197
4227
  *
4198
4228
  * @type {string}
@@ -4247,36 +4277,24 @@ export interface DoctorItemModel {
4247
4277
  * @memberof DoctorItemModel
4248
4278
  */
4249
4279
  'auditableEntity'?: AuditableEntity;
4250
- /**
4251
- *
4252
- * @type {Array<UserLanguageModel>}
4253
- * @memberof DoctorItemModel
4254
- */
4255
- 'languages'?: Array<UserLanguageModel> | null;
4256
- /**
4257
- *
4258
- * @type {Array<UserLocationModel>}
4259
- * @memberof DoctorItemModel
4260
- */
4261
- 'locations'?: Array<UserLocationModel> | null;
4262
4280
  /**
4263
4281
  *
4264
4282
  * @type {string}
4265
4283
  * @memberof DoctorItemModel
4266
4284
  */
4267
- 'slug'?: string | null;
4285
+ 'hospitalId'?: string | null;
4268
4286
  /**
4269
4287
  *
4270
4288
  * @type {string}
4271
4289
  * @memberof DoctorItemModel
4272
4290
  */
4273
- 'hospitalId'?: string | null;
4291
+ 'hospitalName'?: string | null;
4274
4292
  /**
4275
4293
  *
4276
4294
  * @type {string}
4277
4295
  * @memberof DoctorItemModel
4278
4296
  */
4279
- 'hospitalName'?: string | null;
4297
+ 'hospitalSlug'?: string | null;
4280
4298
  /**
4281
4299
  *
4282
4300
  * @type {Date}
@@ -4301,157 +4319,12 @@ export interface DoctorItemModel {
4301
4319
  * @memberof DoctorItemModel
4302
4320
  */
4303
4321
  'consultationFee'?: number | null;
4304
- /**
4305
- *
4306
- * @type {number}
4307
- * @memberof DoctorItemModel
4308
- */
4309
- 'doctorReviewsCount'?: number;
4310
- /**
4311
- *
4312
- * @type {number}
4313
- * @memberof DoctorItemModel
4314
- */
4315
- 'doctorEducationsCount'?: number;
4316
- /**
4317
- *
4318
- * @type {number}
4319
- * @memberof DoctorItemModel
4320
- */
4321
- 'doctorPortfoliosCount'?: number;
4322
- /**
4323
- *
4324
- * @type {number}
4325
- * @memberof DoctorItemModel
4326
- */
4327
- 'doctorSpecialtiesCount'?: number;
4328
- /**
4329
- *
4330
- * @type {number}
4331
- * @memberof DoctorItemModel
4332
- */
4333
- 'doctorCertificatesCount'?: number;
4334
- /**
4335
- *
4336
- * @type {number}
4337
- * @memberof DoctorItemModel
4338
- */
4339
- 'doctorAffiliationsCount'?: number;
4340
- /**
4341
- *
4342
- * @type {Array<DoctorReviewItemModel>}
4343
- * @memberof DoctorItemModel
4344
- */
4345
- 'doctorReviews'?: Array<DoctorReviewItemModel> | null;
4346
- /**
4347
- *
4348
- * @type {Array<DoctorEducationItemModel>}
4349
- * @memberof DoctorItemModel
4350
- */
4351
- 'doctorEducations'?: Array<DoctorEducationItemModel> | null;
4352
- /**
4353
- *
4354
- * @type {Array<DoctorPortfolioItemModel>}
4355
- * @memberof DoctorItemModel
4356
- */
4357
- 'doctorPortfolios'?: Array<DoctorPortfolioItemModel> | null;
4358
- /**
4359
- *
4360
- * @type {Array<DoctorSpecialtyItemModel>}
4361
- * @memberof DoctorItemModel
4362
- */
4363
- 'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
4364
- /**
4365
- *
4366
- * @type {Array<DoctorCertificateItemModel>}
4367
- * @memberof DoctorItemModel
4368
- */
4369
- 'doctorCertificates'?: Array<DoctorCertificateItemModel> | null;
4370
- /**
4371
- *
4372
- * @type {Array<HospitalAffiliationModel>}
4373
- * @memberof DoctorItemModel
4374
- */
4375
- 'doctorAffiliations'?: Array<HospitalAffiliationModel> | null;
4376
- /**
4377
- *
4378
- * @type {Array<LocalizedUrlModel>}
4379
- * @memberof DoctorItemModel
4380
- */
4381
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
4382
4322
  /**
4383
4323
  *
4384
4324
  * @type {boolean}
4385
4325
  * @memberof DoctorItemModel
4386
4326
  */
4387
4327
  'confirmed'?: boolean;
4388
- /**
4389
- *
4390
- * @type {Array<MediaModel>}
4391
- * @memberof DoctorItemModel
4392
- */
4393
- 'medias'?: Array<MediaModel> | null;
4394
- }
4395
- /**
4396
- *
4397
- * @export
4398
- * @interface DoctorItemSimpleModel
4399
- */
4400
- export interface DoctorItemSimpleModel {
4401
- /**
4402
- *
4403
- * @type {string}
4404
- * @memberof DoctorItemSimpleModel
4405
- */
4406
- 'id'?: string;
4407
- /**
4408
- *
4409
- * @type {string}
4410
- * @memberof DoctorItemSimpleModel
4411
- */
4412
- 'firstName'?: string | null;
4413
- /**
4414
- *
4415
- * @type {string}
4416
- * @memberof DoctorItemSimpleModel
4417
- */
4418
- 'lastName'?: string | null;
4419
- /**
4420
- *
4421
- * @type {string}
4422
- * @memberof DoctorItemSimpleModel
4423
- */
4424
- 'fullname'?: string | null;
4425
- /**
4426
- *
4427
- * @type {string}
4428
- * @memberof DoctorItemSimpleModel
4429
- */
4430
- 'slug'?: string | null;
4431
- /**
4432
- *
4433
- * @type {string}
4434
- * @memberof DoctorItemSimpleModel
4435
- */
4436
- 'hospitalId'?: string | null;
4437
- /**
4438
- *
4439
- * @type {string}
4440
- * @memberof DoctorItemSimpleModel
4441
- */
4442
- 'hospitalName'?: string | null;
4443
- /**
4444
- *
4445
- * @type {string}
4446
- * @memberof DoctorItemSimpleModel
4447
- */
4448
- 'overview'?: string | null;
4449
- /**
4450
- *
4451
- * @type {boolean}
4452
- * @memberof DoctorItemSimpleModel
4453
- */
4454
- 'confirmed'?: boolean;
4455
4328
  }
4456
4329
  /**
4457
4330
  *
@@ -4539,19 +4412,19 @@ export interface DoctorModel {
4539
4412
  * @type {string}
4540
4413
  * @memberof DoctorModel
4541
4414
  */
4542
- 'userType'?: string | null;
4415
+ 'userName'?: string | null;
4543
4416
  /**
4544
4417
  *
4545
4418
  * @type {string}
4546
4419
  * @memberof DoctorModel
4547
4420
  */
4548
- 'userName'?: string | null;
4421
+ 'firstName'?: string | null;
4549
4422
  /**
4550
4423
  *
4551
4424
  * @type {string}
4552
4425
  * @memberof DoctorModel
4553
4426
  */
4554
- 'firstName'?: string | null;
4427
+ 'middleName'?: string | null;
4555
4428
  /**
4556
4429
  *
4557
4430
  * @type {string}
@@ -4563,7 +4436,13 @@ export interface DoctorModel {
4563
4436
  * @type {string}
4564
4437
  * @memberof DoctorModel
4565
4438
  */
4566
- 'fullname'?: string | null;
4439
+ 'fullName'?: string | null;
4440
+ /**
4441
+ *
4442
+ * @type {string}
4443
+ * @memberof DoctorModel
4444
+ */
4445
+ 'slug'?: string | null;
4567
4446
  /**
4568
4447
  *
4569
4448
  * @type {string}
@@ -4618,6 +4497,12 @@ export interface DoctorModel {
4618
4497
  * @memberof DoctorModel
4619
4498
  */
4620
4499
  'auditableEntity'?: AuditableEntity;
4500
+ /**
4501
+ *
4502
+ * @type {string}
4503
+ * @memberof DoctorModel
4504
+ */
4505
+ 'userType'?: string | null;
4621
4506
  /**
4622
4507
  *
4623
4508
  * @type {Array<UserLanguageModel>}
@@ -4635,7 +4520,7 @@ export interface DoctorModel {
4635
4520
  * @type {string}
4636
4521
  * @memberof DoctorModel
4637
4522
  */
4638
- 'slug'?: string | null;
4523
+ 'languageCode'?: string | null;
4639
4524
  /**
4640
4525
  *
4641
4526
  * @type {string}
@@ -4648,6 +4533,12 @@ export interface DoctorModel {
4648
4533
  * @memberof DoctorModel
4649
4534
  */
4650
4535
  'hospitalName'?: string | null;
4536
+ /**
4537
+ *
4538
+ * @type {string}
4539
+ * @memberof DoctorModel
4540
+ */
4541
+ 'hospitalSlug'?: string | null;
4651
4542
  /**
4652
4543
  *
4653
4544
  * @type {Date}
@@ -4662,94 +4553,28 @@ export interface DoctorModel {
4662
4553
  'overview'?: string | null;
4663
4554
  /**
4664
4555
  *
4665
- * @type {boolean}
4556
+ * @type {string}
4666
4557
  * @memberof DoctorModel
4667
4558
  */
4668
- 'consultationEnabled'?: boolean | null;
4559
+ 'description'?: string | null;
4669
4560
  /**
4670
4561
  *
4671
- * @type {number}
4562
+ * @type {string}
4672
4563
  * @memberof DoctorModel
4673
4564
  */
4674
- 'consultationFee'?: number | null;
4565
+ 'content'?: string | null;
4675
4566
  /**
4676
4567
  *
4677
- * @type {number}
4678
- * @memberof DoctorModel
4679
- */
4680
- 'doctorReviewsCount'?: number;
4681
- /**
4682
- *
4683
- * @type {number}
4684
- * @memberof DoctorModel
4685
- */
4686
- 'doctorEducationsCount'?: number;
4687
- /**
4688
- *
4689
- * @type {number}
4690
- * @memberof DoctorModel
4691
- */
4692
- 'doctorPortfoliosCount'?: number;
4693
- /**
4694
- *
4695
- * @type {number}
4696
- * @memberof DoctorModel
4697
- */
4698
- 'doctorSpecialtiesCount'?: number;
4699
- /**
4700
- *
4701
- * @type {number}
4568
+ * @type {boolean}
4702
4569
  * @memberof DoctorModel
4703
4570
  */
4704
- 'doctorCertificatesCount'?: number;
4571
+ 'consultationEnabled'?: boolean | null;
4705
4572
  /**
4706
4573
  *
4707
4574
  * @type {number}
4708
4575
  * @memberof DoctorModel
4709
4576
  */
4710
- 'doctorAffiliationsCount'?: number;
4711
- /**
4712
- *
4713
- * @type {Array<DoctorReviewItemModel>}
4714
- * @memberof DoctorModel
4715
- */
4716
- 'doctorReviews'?: Array<DoctorReviewItemModel> | null;
4717
- /**
4718
- *
4719
- * @type {Array<DoctorEducationItemModel>}
4720
- * @memberof DoctorModel
4721
- */
4722
- 'doctorEducations'?: Array<DoctorEducationItemModel> | null;
4723
- /**
4724
- *
4725
- * @type {Array<DoctorPortfolioItemModel>}
4726
- * @memberof DoctorModel
4727
- */
4728
- 'doctorPortfolios'?: Array<DoctorPortfolioItemModel> | null;
4729
- /**
4730
- *
4731
- * @type {Array<DoctorSpecialtyItemModel>}
4732
- * @memberof DoctorModel
4733
- */
4734
- 'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
4735
- /**
4736
- *
4737
- * @type {Array<DoctorCertificateItemModel>}
4738
- * @memberof DoctorModel
4739
- */
4740
- 'doctorCertificates'?: Array<DoctorCertificateItemModel> | null;
4741
- /**
4742
- *
4743
- * @type {Array<HospitalAffiliationModel>}
4744
- * @memberof DoctorModel
4745
- */
4746
- 'doctorAffiliations'?: Array<HospitalAffiliationModel> | null;
4747
- /**
4748
- *
4749
- * @type {Array<LocalizedUrlModel>}
4750
- * @memberof DoctorModel
4751
- */
4752
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
4577
+ 'consultationFee'?: number | null;
4753
4578
  /**
4754
4579
  *
4755
4580
  * @type {boolean}
@@ -4758,16 +4583,10 @@ export interface DoctorModel {
4758
4583
  'confirmed'?: boolean;
4759
4584
  /**
4760
4585
  *
4761
- * @type {Array<MediaModel>}
4762
- * @memberof DoctorModel
4763
- */
4764
- 'medias'?: Array<MediaModel> | null;
4765
- /**
4766
- *
4767
- * @type {string}
4586
+ * @type {Array<LocalizedUrlModel>}
4768
4587
  * @memberof DoctorModel
4769
4588
  */
4770
- 'languageCode'?: string | null;
4589
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
4771
4590
  }
4772
4591
  /**
4773
4592
  *
@@ -4889,57 +4708,51 @@ export interface DoctorPortfoliosModel {
4889
4708
  /**
4890
4709
  *
4891
4710
  * @export
4892
- * @interface DoctorReviewItemModel
4711
+ * @interface DoctorSimpleItemModel
4893
4712
  */
4894
- export interface DoctorReviewItemModel {
4713
+ export interface DoctorSimpleItemModel {
4895
4714
  /**
4896
4715
  *
4897
4716
  * @type {string}
4898
- * @memberof DoctorReviewItemModel
4717
+ * @memberof DoctorSimpleItemModel
4899
4718
  */
4900
- 'patientId'?: string;
4719
+ 'id'?: string;
4901
4720
  /**
4902
4721
  *
4903
4722
  * @type {string}
4904
- * @memberof DoctorReviewItemModel
4723
+ * @memberof DoctorSimpleItemModel
4905
4724
  */
4906
- 'patientName'?: string | null;
4725
+ 'firstName'?: string | null;
4907
4726
  /**
4908
4727
  *
4909
4728
  * @type {string}
4910
- * @memberof DoctorReviewItemModel
4729
+ * @memberof DoctorSimpleItemModel
4911
4730
  */
4912
- 'doctorId'?: string;
4731
+ 'middleName'?: string | null;
4913
4732
  /**
4914
4733
  *
4915
4734
  * @type {string}
4916
- * @memberof DoctorReviewItemModel
4735
+ * @memberof DoctorSimpleItemModel
4917
4736
  */
4918
- 'doctorName'?: string | null;
4737
+ 'lastName'?: string | null;
4919
4738
  /**
4920
4739
  *
4921
4740
  * @type {string}
4922
- * @memberof DoctorReviewItemModel
4741
+ * @memberof DoctorSimpleItemModel
4923
4742
  */
4924
- 'body'?: string | null;
4925
- /**
4926
- *
4927
- * @type {boolean}
4928
- * @memberof DoctorReviewItemModel
4929
- */
4930
- 'recommended'?: boolean;
4743
+ 'fullname'?: string | null;
4931
4744
  /**
4932
4745
  *
4933
- * @type {ReviewCategory}
4934
- * @memberof DoctorReviewItemModel
4746
+ * @type {string}
4747
+ * @memberof DoctorSimpleItemModel
4935
4748
  */
4936
- 'reviewCategory'?: ReviewCategory;
4749
+ 'slug'?: string | null;
4937
4750
  /**
4938
4751
  *
4939
- * @type {number}
4940
- * @memberof DoctorReviewItemModel
4752
+ * @type {string}
4753
+ * @memberof DoctorSimpleItemModel
4941
4754
  */
4942
- 'rate'?: number;
4755
+ 'hospitalId'?: string | null;
4943
4756
  }
4944
4757
  /**
4945
4758
  *
@@ -4960,49 +4773,6 @@ export interface DoctorSpecialtiesModel {
4960
4773
  */
4961
4774
  'metaData'?: PagedListMetaData;
4962
4775
  }
4963
- /**
4964
- *
4965
- * @export
4966
- * @interface DoctorSpecialtyItemModel
4967
- */
4968
- export interface DoctorSpecialtyItemModel {
4969
- /**
4970
- *
4971
- * @type {string}
4972
- * @memberof DoctorSpecialtyItemModel
4973
- */
4974
- 'specialtyId'?: string;
4975
- /**
4976
- *
4977
- * @type {string}
4978
- * @memberof DoctorSpecialtyItemModel
4979
- */
4980
- 'specialtyName'?: string | null;
4981
- /**
4982
- *
4983
- * @type {string}
4984
- * @memberof DoctorSpecialtyItemModel
4985
- */
4986
- 'specialtySlug'?: string | null;
4987
- /**
4988
- *
4989
- * @type {string}
4990
- * @memberof DoctorSpecialtyItemModel
4991
- */
4992
- 'specialtyTypeId'?: string;
4993
- /**
4994
- *
4995
- * @type {string}
4996
- * @memberof DoctorSpecialtyItemModel
4997
- */
4998
- 'specialtyTypeName'?: string | null;
4999
- /**
5000
- *
5001
- * @type {number}
5002
- * @memberof DoctorSpecialtyItemModel
5003
- */
5004
- 'order'?: number;
5005
- }
5006
4776
  /**
5007
4777
  *
5008
4778
  * @export
@@ -5085,10 +4855,10 @@ export interface DoctorsModel {
5085
4855
  export interface DoctorsSimpleModel {
5086
4856
  /**
5087
4857
  *
5088
- * @type {Array<DoctorItemSimpleModel>}
4858
+ * @type {Array<DoctorSimpleItemModel>}
5089
4859
  * @memberof DoctorsSimpleModel
5090
4860
  */
5091
- 'items'?: Array<DoctorItemSimpleModel> | null;
4861
+ 'items'?: Array<DoctorSimpleItemModel> | null;
5092
4862
  /**
5093
4863
  *
5094
4864
  * @type {PagedListMetaData}
@@ -5196,22 +4966,28 @@ export interface FaqCategoryItemModel {
5196
4966
  'order'?: number;
5197
4967
  /**
5198
4968
  *
5199
- * @type {Array<FaqItemModel>}
4969
+ * @type {string}
5200
4970
  * @memberof FaqCategoryItemModel
5201
4971
  */
5202
- 'faqs'?: Array<FaqItemModel> | null;
4972
+ 'hospitalId'?: string;
5203
4973
  /**
5204
4974
  *
5205
- * @type {Array<LocalizedUrlModel>}
4975
+ * @type {string}
5206
4976
  * @memberof FaqCategoryItemModel
5207
4977
  */
5208
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
4978
+ 'hospitalName'?: string | null;
5209
4979
  /**
5210
4980
  *
5211
4981
  * @type {boolean}
5212
4982
  * @memberof FaqCategoryItemModel
5213
4983
  */
5214
4984
  'confirmed'?: boolean;
4985
+ /**
4986
+ *
4987
+ * @type {AuditableEntity}
4988
+ * @memberof FaqCategoryItemModel
4989
+ */
4990
+ 'auditableEntity'?: AuditableEntity;
5215
4991
  }
5216
4992
  /**
5217
4993
  *
@@ -5257,28 +5033,40 @@ export interface FaqCategoryModel {
5257
5033
  'order'?: number;
5258
5034
  /**
5259
5035
  *
5260
- * @type {Array<FaqItemModel>}
5036
+ * @type {string}
5261
5037
  * @memberof FaqCategoryModel
5262
5038
  */
5263
- 'faqs'?: Array<FaqItemModel> | null;
5039
+ 'hospitalId'?: string;
5264
5040
  /**
5265
5041
  *
5266
- * @type {Array<LocalizedUrlModel>}
5042
+ * @type {string}
5267
5043
  * @memberof FaqCategoryModel
5268
5044
  */
5269
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5045
+ 'hospitalName'?: string | null;
5270
5046
  /**
5271
5047
  *
5272
5048
  * @type {boolean}
5273
5049
  * @memberof FaqCategoryModel
5274
5050
  */
5275
5051
  'confirmed'?: boolean;
5052
+ /**
5053
+ *
5054
+ * @type {AuditableEntity}
5055
+ * @memberof FaqCategoryModel
5056
+ */
5057
+ 'auditableEntity'?: AuditableEntity;
5276
5058
  /**
5277
5059
  *
5278
5060
  * @type {string}
5279
5061
  * @memberof FaqCategoryModel
5280
5062
  */
5281
5063
  'languageCode'?: string | null;
5064
+ /**
5065
+ *
5066
+ * @type {Array<LocalizedUrlModel>}
5067
+ * @memberof FaqCategoryModel
5068
+ */
5069
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5282
5070
  }
5283
5071
  /**
5284
5072
  *
@@ -5297,7 +5085,7 @@ export interface FaqItemModel {
5297
5085
  * @type {string}
5298
5086
  * @memberof FaqItemModel
5299
5087
  */
5300
- 'title'?: string | null;
5088
+ 'name'?: string | null;
5301
5089
  /**
5302
5090
  *
5303
5091
  * @type {string}
@@ -5309,7 +5097,7 @@ export interface FaqItemModel {
5309
5097
  * @type {string}
5310
5098
  * @memberof FaqItemModel
5311
5099
  */
5312
- 'content'?: string | null;
5100
+ 'description'?: string | null;
5313
5101
  /**
5314
5102
  *
5315
5103
  * @type {number}
@@ -5318,28 +5106,52 @@ export interface FaqItemModel {
5318
5106
  'order'?: number;
5319
5107
  /**
5320
5108
  *
5321
- * @type {Array<MediaModel>}
5109
+ * @type {string}
5322
5110
  * @memberof FaqItemModel
5323
5111
  */
5324
- 'medias'?: Array<MediaModel> | null;
5112
+ 'hospitalId'?: string;
5325
5113
  /**
5326
5114
  *
5327
- * @type {AuditableEntity}
5115
+ * @type {string}
5328
5116
  * @memberof FaqItemModel
5329
5117
  */
5330
- 'auditableEntity'?: AuditableEntity;
5118
+ 'hospitalName'?: string | null;
5331
5119
  /**
5332
5120
  *
5333
- * @type {Array<LocalizedUrlModel>}
5121
+ * @type {string}
5334
5122
  * @memberof FaqItemModel
5335
5123
  */
5336
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5124
+ 'faqCategoryId'?: string;
5125
+ /**
5126
+ *
5127
+ * @type {string}
5128
+ * @memberof FaqItemModel
5129
+ */
5130
+ 'faqCategoryName'?: string | null;
5337
5131
  /**
5338
5132
  *
5339
5133
  * @type {boolean}
5340
5134
  * @memberof FaqItemModel
5341
5135
  */
5342
5136
  'confirmed'?: boolean;
5137
+ /**
5138
+ *
5139
+ * @type {Array<FaqTagItemModel>}
5140
+ * @memberof FaqItemModel
5141
+ */
5142
+ 'faqTags'?: Array<FaqTagItemModel> | null;
5143
+ /**
5144
+ *
5145
+ * @type {Array<MediaModel>}
5146
+ * @memberof FaqItemModel
5147
+ */
5148
+ 'medias'?: Array<MediaModel> | null;
5149
+ /**
5150
+ *
5151
+ * @type {AuditableEntity}
5152
+ * @memberof FaqItemModel
5153
+ */
5154
+ 'auditableEntity'?: AuditableEntity;
5343
5155
  }
5344
5156
  /**
5345
5157
  *
@@ -5358,7 +5170,7 @@ export interface FaqModel {
5358
5170
  * @type {string}
5359
5171
  * @memberof FaqModel
5360
5172
  */
5361
- 'title'?: string | null;
5173
+ 'name'?: string | null;
5362
5174
  /**
5363
5175
  *
5364
5176
  * @type {string}
@@ -5370,7 +5182,7 @@ export interface FaqModel {
5370
5182
  * @type {string}
5371
5183
  * @memberof FaqModel
5372
5184
  */
5373
- 'content'?: string | null;
5185
+ 'description'?: string | null;
5374
5186
  /**
5375
5187
  *
5376
5188
  * @type {number}
@@ -5379,28 +5191,52 @@ export interface FaqModel {
5379
5191
  'order'?: number;
5380
5192
  /**
5381
5193
  *
5382
- * @type {Array<MediaModel>}
5194
+ * @type {string}
5383
5195
  * @memberof FaqModel
5384
5196
  */
5385
- 'medias'?: Array<MediaModel> | null;
5197
+ 'hospitalId'?: string;
5386
5198
  /**
5387
5199
  *
5388
- * @type {AuditableEntity}
5200
+ * @type {string}
5389
5201
  * @memberof FaqModel
5390
5202
  */
5391
- 'auditableEntity'?: AuditableEntity;
5203
+ 'hospitalName'?: string | null;
5392
5204
  /**
5393
5205
  *
5394
- * @type {Array<LocalizedUrlModel>}
5206
+ * @type {string}
5395
5207
  * @memberof FaqModel
5396
5208
  */
5397
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5209
+ 'faqCategoryId'?: string;
5210
+ /**
5211
+ *
5212
+ * @type {string}
5213
+ * @memberof FaqModel
5214
+ */
5215
+ 'faqCategoryName'?: string | null;
5398
5216
  /**
5399
5217
  *
5400
5218
  * @type {boolean}
5401
5219
  * @memberof FaqModel
5402
5220
  */
5403
5221
  'confirmed'?: boolean;
5222
+ /**
5223
+ *
5224
+ * @type {Array<FaqTagItemModel>}
5225
+ * @memberof FaqModel
5226
+ */
5227
+ 'faqTags'?: Array<FaqTagItemModel> | null;
5228
+ /**
5229
+ *
5230
+ * @type {Array<MediaModel>}
5231
+ * @memberof FaqModel
5232
+ */
5233
+ 'medias'?: Array<MediaModel> | null;
5234
+ /**
5235
+ *
5236
+ * @type {AuditableEntity}
5237
+ * @memberof FaqModel
5238
+ */
5239
+ 'auditableEntity'?: AuditableEntity;
5404
5240
  /**
5405
5241
  *
5406
5242
  * @type {string}
@@ -5409,10 +5245,85 @@ export interface FaqModel {
5409
5245
  'languageCode'?: string | null;
5410
5246
  /**
5411
5247
  *
5412
- * @type {Array<FaqCategoryBreadCrumbModel>}
5248
+ * @type {string}
5249
+ * @memberof FaqModel
5250
+ */
5251
+ 'content'?: string | null;
5252
+ /**
5253
+ *
5254
+ * @type {Array<LocalizedUrlModel>}
5413
5255
  * @memberof FaqModel
5414
5256
  */
5415
- 'categories'?: Array<FaqCategoryBreadCrumbModel> | null;
5257
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5258
+ }
5259
+ /**
5260
+ *
5261
+ * @export
5262
+ * @interface FaqTagItemModel
5263
+ */
5264
+ export interface FaqTagItemModel {
5265
+ /**
5266
+ *
5267
+ * @type {string}
5268
+ * @memberof FaqTagItemModel
5269
+ */
5270
+ 'faqId'?: string;
5271
+ /**
5272
+ *
5273
+ * @type {string}
5274
+ * @memberof FaqTagItemModel
5275
+ */
5276
+ 'tagId'?: string | null;
5277
+ /**
5278
+ *
5279
+ * @type {number}
5280
+ * @memberof FaqTagItemModel
5281
+ */
5282
+ 'order'?: number;
5283
+ }
5284
+ /**
5285
+ *
5286
+ * @export
5287
+ * @interface FaqTagModel
5288
+ */
5289
+ export interface FaqTagModel {
5290
+ /**
5291
+ *
5292
+ * @type {string}
5293
+ * @memberof FaqTagModel
5294
+ */
5295
+ 'faqId'?: string;
5296
+ /**
5297
+ *
5298
+ * @type {string}
5299
+ * @memberof FaqTagModel
5300
+ */
5301
+ 'tagId'?: string | null;
5302
+ /**
5303
+ *
5304
+ * @type {number}
5305
+ * @memberof FaqTagModel
5306
+ */
5307
+ 'order'?: number;
5308
+ }
5309
+ /**
5310
+ *
5311
+ * @export
5312
+ * @interface FaqTagsModel
5313
+ */
5314
+ export interface FaqTagsModel {
5315
+ /**
5316
+ *
5317
+ * @type {Array<FaqTagItemModel>}
5318
+ * @memberof FaqTagsModel
5319
+ */
5320
+ 'items'?: Array<FaqTagItemModel> | null;
5321
+ /**
5322
+ *
5323
+ * @type {PagedListMetaData}
5324
+ * @memberof FaqTagsModel
5325
+ */
5326
+ 'metaData'?: PagedListMetaData;
5416
5327
  }
5417
5328
  /**
5418
5329
  *
@@ -5499,81 +5410,32 @@ export interface HospitalAccreditationModel {
5499
5410
  * @type {string}
5500
5411
  * @memberof HospitalAccreditationModel
5501
5412
  */
5502
- 'accreditationName'?: string | null;
5503
- /**
5504
- *
5505
- * @type {string}
5506
- * @memberof HospitalAccreditationModel
5507
- */
5508
- 'accreditationLogo'?: string | null;
5509
- }
5510
- /**
5511
- *
5512
- * @export
5513
- * @interface HospitalAccreditationsModel
5514
- */
5515
- export interface HospitalAccreditationsModel {
5516
- /**
5517
- *
5518
- * @type {Array<HospitalAccreditationItemModel>}
5519
- * @memberof HospitalAccreditationsModel
5520
- */
5521
- 'items'?: Array<HospitalAccreditationItemModel> | null;
5522
- /**
5523
- *
5524
- * @type {PagedListMetaData}
5525
- * @memberof HospitalAccreditationsModel
5526
- */
5527
- 'metaData'?: PagedListMetaData;
5528
- }
5529
- /**
5530
- *
5531
- * @export
5532
- * @interface HospitalAffiliationModel
5533
- */
5534
- export interface HospitalAffiliationModel {
5535
- /**
5536
- *
5537
- * @type {string}
5538
- * @memberof HospitalAffiliationModel
5539
- */
5540
- 'hospitalId'?: string;
5541
- /**
5542
- *
5543
- * @type {string}
5544
- * @memberof HospitalAffiliationModel
5545
- */
5546
- 'hospitalName'?: string | null;
5547
- /**
5548
- *
5549
- * @type {string}
5550
- * @memberof HospitalAffiliationModel
5551
- */
5552
- 'hospitalSlug'?: string | null;
5553
- /**
5554
- *
5555
- * @type {string}
5556
- * @memberof HospitalAffiliationModel
5557
- */
5558
- 'countryId'?: string;
5413
+ 'accreditationName'?: string | null;
5559
5414
  /**
5560
5415
  *
5561
5416
  * @type {string}
5562
- * @memberof HospitalAffiliationModel
5417
+ * @memberof HospitalAccreditationModel
5563
5418
  */
5564
- 'countryName'?: string | null;
5419
+ 'accreditationLogo'?: string | null;
5420
+ }
5421
+ /**
5422
+ *
5423
+ * @export
5424
+ * @interface HospitalAccreditationsModel
5425
+ */
5426
+ export interface HospitalAccreditationsModel {
5565
5427
  /**
5566
5428
  *
5567
- * @type {string}
5568
- * @memberof HospitalAffiliationModel
5429
+ * @type {Array<HospitalAccreditationItemModel>}
5430
+ * @memberof HospitalAccreditationsModel
5569
5431
  */
5570
- 'stateName'?: string | null;
5432
+ 'items'?: Array<HospitalAccreditationItemModel> | null;
5571
5433
  /**
5572
5434
  *
5573
- * @type {string}
5574
- * @memberof HospitalAffiliationModel
5435
+ * @type {PagedListMetaData}
5436
+ * @memberof HospitalAccreditationsModel
5575
5437
  */
5576
- 'cityName'?: string | null;
5438
+ 'metaData'?: PagedListMetaData;
5577
5439
  }
5578
5440
  /**
5579
5441
  *
@@ -5851,18 +5713,6 @@ export interface HospitalItemModel {
5851
5713
  * @memberof HospitalItemModel
5852
5714
  */
5853
5715
  'overview'?: string | null;
5854
- /**
5855
- *
5856
- * @type {string}
5857
- * @memberof HospitalItemModel
5858
- */
5859
- 'content'?: string | null;
5860
- /**
5861
- *
5862
- * @type {string}
5863
- * @memberof HospitalItemModel
5864
- */
5865
- 'customStyle'?: string | null;
5866
5716
  /**
5867
5717
  *
5868
5718
  * @type {number}
@@ -5995,6 +5845,18 @@ export interface HospitalItemModel {
5995
5845
  * @memberof HospitalItemModel
5996
5846
  */
5997
5847
  'specialtiesSummerized'?: string | null;
5848
+ /**
5849
+ *
5850
+ * @type {boolean}
5851
+ * @memberof HospitalItemModel
5852
+ */
5853
+ 'paymentEnabled'?: boolean;
5854
+ /**
5855
+ *
5856
+ * @type {boolean}
5857
+ * @memberof HospitalItemModel
5858
+ */
5859
+ 'confirmed'?: boolean;
5998
5860
  /**
5999
5861
  *
6000
5862
  * @type {Array<AwardModel>}
@@ -6031,18 +5893,6 @@ export interface HospitalItemModel {
6031
5893
  * @memberof HospitalItemModel
6032
5894
  */
6033
5895
  'auditableEntity'?: AuditableEntity;
6034
- /**
6035
- *
6036
- * @type {Array<LocalizedUrlModel>}
6037
- * @memberof HospitalItemModel
6038
- */
6039
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6040
- /**
6041
- *
6042
- * @type {boolean}
6043
- * @memberof HospitalItemModel
6044
- */
6045
- 'confirmed'?: boolean;
6046
5896
  }
6047
5897
  /**
6048
5898
  *
@@ -6086,18 +5936,6 @@ export interface HospitalModel {
6086
5936
  * @memberof HospitalModel
6087
5937
  */
6088
5938
  'overview'?: string | null;
6089
- /**
6090
- *
6091
- * @type {string}
6092
- * @memberof HospitalModel
6093
- */
6094
- 'content'?: string | null;
6095
- /**
6096
- *
6097
- * @type {string}
6098
- * @memberof HospitalModel
6099
- */
6100
- 'customStyle'?: string | null;
6101
5939
  /**
6102
5940
  *
6103
5941
  * @type {number}
@@ -6230,6 +6068,18 @@ export interface HospitalModel {
6230
6068
  * @memberof HospitalModel
6231
6069
  */
6232
6070
  'specialtiesSummerized'?: string | null;
6071
+ /**
6072
+ *
6073
+ * @type {boolean}
6074
+ * @memberof HospitalModel
6075
+ */
6076
+ 'paymentEnabled'?: boolean;
6077
+ /**
6078
+ *
6079
+ * @type {boolean}
6080
+ * @memberof HospitalModel
6081
+ */
6082
+ 'confirmed'?: boolean;
6233
6083
  /**
6234
6084
  *
6235
6085
  * @type {Array<AwardModel>}
@@ -6268,34 +6118,34 @@ export interface HospitalModel {
6268
6118
  'auditableEntity'?: AuditableEntity;
6269
6119
  /**
6270
6120
  *
6271
- * @type {Array<LocalizedUrlModel>}
6121
+ * @type {string}
6272
6122
  * @memberof HospitalModel
6273
6123
  */
6274
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6124
+ 'languageCode'?: string | null;
6275
6125
  /**
6276
6126
  *
6277
- * @type {boolean}
6127
+ * @type {string}
6278
6128
  * @memberof HospitalModel
6279
6129
  */
6280
- 'confirmed'?: boolean;
6130
+ 'content'?: string | null;
6281
6131
  /**
6282
6132
  *
6283
6133
  * @type {string}
6284
6134
  * @memberof HospitalModel
6285
6135
  */
6286
- 'languageCode'?: string | null;
6136
+ 'contactTel'?: string | null;
6287
6137
  /**
6288
6138
  *
6289
6139
  * @type {string}
6290
6140
  * @memberof HospitalModel
6291
6141
  */
6292
- 'contactTel'?: string | null;
6142
+ 'contactEmail'?: string | null;
6293
6143
  /**
6294
6144
  *
6295
6145
  * @type {string}
6296
6146
  * @memberof HospitalModel
6297
6147
  */
6298
- 'contactEmail'?: string | null;
6148
+ 'customStyle'?: string | null;
6299
6149
  /**
6300
6150
  *
6301
6151
  * @type {Array<WorkingDay>}
@@ -6308,6 +6158,12 @@ export interface HospitalModel {
6308
6158
  * @memberof HospitalModel
6309
6159
  */
6310
6160
  'hospitalSnsHandles'?: Array<SnsHandle> | null;
6161
+ /**
6162
+ *
6163
+ * @type {Array<LocalizedUrlModel>}
6164
+ * @memberof HospitalModel
6165
+ */
6166
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6311
6167
  }
6312
6168
  /**
6313
6169
  *
@@ -6339,18 +6195,6 @@ export interface HospitalServiceItemModel {
6339
6195
  * @memberof HospitalServiceItemModel
6340
6196
  */
6341
6197
  'description'?: string | null;
6342
- /**
6343
- *
6344
- * @type {string}
6345
- * @memberof HospitalServiceItemModel
6346
- */
6347
- 'content'?: string | null;
6348
- /**
6349
- *
6350
- * @type {string}
6351
- * @memberof HospitalServiceItemModel
6352
- */
6353
- 'customStyle'?: string | null;
6354
6198
  /**
6355
6199
  *
6356
6200
  * @type {string}
@@ -6398,19 +6242,25 @@ export interface HospitalServiceItemModel {
6398
6242
  * @type {string}
6399
6243
  * @memberof HospitalServiceItemModel
6400
6244
  */
6401
- 'serviceCategoryId'?: string | null;
6245
+ 'hospitalSpecialtyName'?: string | null;
6402
6246
  /**
6403
6247
  *
6404
6248
  * @type {string}
6405
6249
  * @memberof HospitalServiceItemModel
6406
6250
  */
6407
- 'serviceCategoryName'?: string | null;
6251
+ 'hospitalSpecialtySlug'?: string | null;
6408
6252
  /**
6409
6253
  *
6410
6254
  * @type {string}
6411
6255
  * @memberof HospitalServiceItemModel
6412
6256
  */
6413
- 'hospitalSpecialtySlug'?: string | null;
6257
+ 'serviceCategoryId'?: string | null;
6258
+ /**
6259
+ *
6260
+ * @type {string}
6261
+ * @memberof HospitalServiceItemModel
6262
+ */
6263
+ 'serviceCategoryName'?: string | null;
6414
6264
  /**
6415
6265
  *
6416
6266
  * @type {MarketingType}
@@ -6447,12 +6297,6 @@ export interface HospitalServiceItemModel {
6447
6297
  * @memberof HospitalServiceItemModel
6448
6298
  */
6449
6299
  'order'?: number;
6450
- /**
6451
- *
6452
- * @type {Array<LocalizedUrlModel>}
6453
- * @memberof HospitalServiceItemModel
6454
- */
6455
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6456
6300
  /**
6457
6301
  *
6458
6302
  * @type {boolean}
@@ -6514,18 +6358,6 @@ export interface HospitalServiceModel {
6514
6358
  * @memberof HospitalServiceModel
6515
6359
  */
6516
6360
  'description'?: string | null;
6517
- /**
6518
- *
6519
- * @type {string}
6520
- * @memberof HospitalServiceModel
6521
- */
6522
- 'content'?: string | null;
6523
- /**
6524
- *
6525
- * @type {string}
6526
- * @memberof HospitalServiceModel
6527
- */
6528
- 'customStyle'?: string | null;
6529
6361
  /**
6530
6362
  *
6531
6363
  * @type {string}
@@ -6573,19 +6405,25 @@ export interface HospitalServiceModel {
6573
6405
  * @type {string}
6574
6406
  * @memberof HospitalServiceModel
6575
6407
  */
6576
- 'serviceCategoryId'?: string | null;
6408
+ 'hospitalSpecialtyName'?: string | null;
6577
6409
  /**
6578
6410
  *
6579
6411
  * @type {string}
6580
6412
  * @memberof HospitalServiceModel
6581
6413
  */
6582
- 'serviceCategoryName'?: string | null;
6414
+ 'hospitalSpecialtySlug'?: string | null;
6583
6415
  /**
6584
6416
  *
6585
6417
  * @type {string}
6586
6418
  * @memberof HospitalServiceModel
6587
6419
  */
6588
- 'hospitalSpecialtySlug'?: string | null;
6420
+ 'serviceCategoryId'?: string | null;
6421
+ /**
6422
+ *
6423
+ * @type {string}
6424
+ * @memberof HospitalServiceModel
6425
+ */
6426
+ 'serviceCategoryName'?: string | null;
6589
6427
  /**
6590
6428
  *
6591
6429
  * @type {MarketingType}
@@ -6622,12 +6460,6 @@ export interface HospitalServiceModel {
6622
6460
  * @memberof HospitalServiceModel
6623
6461
  */
6624
6462
  'order'?: number;
6625
- /**
6626
- *
6627
- * @type {Array<LocalizedUrlModel>}
6628
- * @memberof HospitalServiceModel
6629
- */
6630
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6631
6463
  /**
6632
6464
  *
6633
6465
  * @type {boolean}
@@ -6664,6 +6496,24 @@ export interface HospitalServiceModel {
6664
6496
  * @memberof HospitalServiceModel
6665
6497
  */
6666
6498
  'languageCode'?: string | null;
6499
+ /**
6500
+ *
6501
+ * @type {string}
6502
+ * @memberof HospitalServiceModel
6503
+ */
6504
+ 'content'?: string | null;
6505
+ /**
6506
+ *
6507
+ * @type {string}
6508
+ * @memberof HospitalServiceModel
6509
+ */
6510
+ 'customStyle'?: string | null;
6511
+ /**
6512
+ *
6513
+ * @type {Array<LocalizedUrlModel>}
6514
+ * @memberof HospitalServiceModel
6515
+ */
6516
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6667
6517
  }
6668
6518
  /**
6669
6519
  *
@@ -6702,6 +6552,12 @@ export interface HospitalSimpleItemModel {
6702
6552
  * @memberof HospitalSimpleItemModel
6703
6553
  */
6704
6554
  'name'?: string | null;
6555
+ /**
6556
+ *
6557
+ * @type {string}
6558
+ * @memberof HospitalSimpleItemModel
6559
+ */
6560
+ 'slug'?: string | null;
6705
6561
  /**
6706
6562
  *
6707
6563
  * @type {boolean}
@@ -6820,12 +6676,6 @@ export interface HospitalSpecialtyItemModel {
6820
6676
  * @memberof HospitalSpecialtyItemModel
6821
6677
  */
6822
6678
  'specialtyTypeName'?: string | null;
6823
- /**
6824
- *
6825
- * @type {string}
6826
- * @memberof HospitalSpecialtyItemModel
6827
- */
6828
- 'hospitalSpecialtySlug'?: string | null;
6829
6679
  /**
6830
6680
  *
6831
6681
  * @type {MarketingType}
@@ -6837,25 +6687,19 @@ export interface HospitalSpecialtyItemModel {
6837
6687
  * @type {string}
6838
6688
  * @memberof HospitalSpecialtyItemModel
6839
6689
  */
6840
- 'title'?: string | null;
6841
- /**
6842
- *
6843
- * @type {string}
6844
- * @memberof HospitalSpecialtyItemModel
6845
- */
6846
- 'description'?: string | null;
6690
+ 'name'?: string | null;
6847
6691
  /**
6848
6692
  *
6849
6693
  * @type {string}
6850
6694
  * @memberof HospitalSpecialtyItemModel
6851
6695
  */
6852
- 'content'?: string | null;
6696
+ 'slug'?: string | null;
6853
6697
  /**
6854
6698
  *
6855
6699
  * @type {string}
6856
6700
  * @memberof HospitalSpecialtyItemModel
6857
6701
  */
6858
- 'customStyle'?: string | null;
6702
+ 'description'?: string | null;
6859
6703
  /**
6860
6704
  *
6861
6705
  * @type {number}
@@ -6868,18 +6712,6 @@ export interface HospitalSpecialtyItemModel {
6868
6712
  * @memberof HospitalSpecialtyItemModel
6869
6713
  */
6870
6714
  'serviceList'?: Array<HospitalServiceItemModel> | null;
6871
- /**
6872
- *
6873
- * @type {number}
6874
- * @memberof HospitalSpecialtyItemModel
6875
- */
6876
- 'order'?: number;
6877
- /**
6878
- *
6879
- * @type {boolean}
6880
- * @memberof HospitalSpecialtyItemModel
6881
- */
6882
- 'confirmed'?: boolean;
6883
6715
  /**
6884
6716
  *
6885
6717
  * @type {string}
@@ -6906,10 +6738,16 @@ export interface HospitalSpecialtyItemModel {
6906
6738
  'backgroundThumbnail'?: string | null;
6907
6739
  /**
6908
6740
  *
6909
- * @type {Array<LocalizedUrlModel>}
6741
+ * @type {number}
6910
6742
  * @memberof HospitalSpecialtyItemModel
6911
6743
  */
6912
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6744
+ 'order'?: number;
6745
+ /**
6746
+ *
6747
+ * @type {boolean}
6748
+ * @memberof HospitalSpecialtyItemModel
6749
+ */
6750
+ 'confirmed'?: boolean;
6913
6751
  /**
6914
6752
  *
6915
6753
  * @type {Array<MediaModel>}
@@ -6977,12 +6815,6 @@ export interface HospitalSpecialtyModel {
6977
6815
  * @memberof HospitalSpecialtyModel
6978
6816
  */
6979
6817
  'specialtyTypeName'?: string | null;
6980
- /**
6981
- *
6982
- * @type {string}
6983
- * @memberof HospitalSpecialtyModel
6984
- */
6985
- 'hospitalSpecialtySlug'?: string | null;
6986
6818
  /**
6987
6819
  *
6988
6820
  * @type {MarketingType}
@@ -6994,25 +6826,19 @@ export interface HospitalSpecialtyModel {
6994
6826
  * @type {string}
6995
6827
  * @memberof HospitalSpecialtyModel
6996
6828
  */
6997
- 'title'?: string | null;
6998
- /**
6999
- *
7000
- * @type {string}
7001
- * @memberof HospitalSpecialtyModel
7002
- */
7003
- 'description'?: string | null;
6829
+ 'name'?: string | null;
7004
6830
  /**
7005
6831
  *
7006
6832
  * @type {string}
7007
6833
  * @memberof HospitalSpecialtyModel
7008
6834
  */
7009
- 'content'?: string | null;
6835
+ 'slug'?: string | null;
7010
6836
  /**
7011
6837
  *
7012
6838
  * @type {string}
7013
6839
  * @memberof HospitalSpecialtyModel
7014
6840
  */
7015
- 'customStyle'?: string | null;
6841
+ 'description'?: string | null;
7016
6842
  /**
7017
6843
  *
7018
6844
  * @type {number}
@@ -7025,18 +6851,6 @@ export interface HospitalSpecialtyModel {
7025
6851
  * @memberof HospitalSpecialtyModel
7026
6852
  */
7027
6853
  'serviceList'?: Array<HospitalServiceItemModel> | null;
7028
- /**
7029
- *
7030
- * @type {number}
7031
- * @memberof HospitalSpecialtyModel
7032
- */
7033
- 'order'?: number;
7034
- /**
7035
- *
7036
- * @type {boolean}
7037
- * @memberof HospitalSpecialtyModel
7038
- */
7039
- 'confirmed'?: boolean;
7040
6854
  /**
7041
6855
  *
7042
6856
  * @type {string}
@@ -7063,10 +6877,16 @@ export interface HospitalSpecialtyModel {
7063
6877
  'backgroundThumbnail'?: string | null;
7064
6878
  /**
7065
6879
  *
7066
- * @type {Array<LocalizedUrlModel>}
6880
+ * @type {number}
6881
+ * @memberof HospitalSpecialtyModel
6882
+ */
6883
+ 'order'?: number;
6884
+ /**
6885
+ *
6886
+ * @type {boolean}
7067
6887
  * @memberof HospitalSpecialtyModel
7068
6888
  */
7069
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6889
+ 'confirmed'?: boolean;
7070
6890
  /**
7071
6891
  *
7072
6892
  * @type {Array<MediaModel>}
@@ -7079,12 +6899,30 @@ export interface HospitalSpecialtyModel {
7079
6899
  * @memberof HospitalSpecialtyModel
7080
6900
  */
7081
6901
  'auditableEntity'?: AuditableEntity;
6902
+ /**
6903
+ *
6904
+ * @type {string}
6905
+ * @memberof HospitalSpecialtyModel
6906
+ */
6907
+ 'content'?: string | null;
6908
+ /**
6909
+ *
6910
+ * @type {string}
6911
+ * @memberof HospitalSpecialtyModel
6912
+ */
6913
+ 'customStyle'?: string | null;
7082
6914
  /**
7083
6915
  *
7084
6916
  * @type {string}
7085
6917
  * @memberof HospitalSpecialtyModel
7086
6918
  */
7087
6919
  'languageCode'?: string | null;
6920
+ /**
6921
+ *
6922
+ * @type {Array<LocalizedUrlModel>}
6923
+ * @memberof HospitalSpecialtyModel
6924
+ */
6925
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
7088
6926
  }
7089
6927
  /**
7090
6928
  *
@@ -7103,37 +6941,37 @@ export interface HospitalSpecialtySimpleItemModel {
7103
6941
  * @type {string}
7104
6942
  * @memberof HospitalSpecialtySimpleItemModel
7105
6943
  */
7106
- 'title'?: string | null;
6944
+ 'name'?: string | null;
7107
6945
  /**
7108
6946
  *
7109
6947
  * @type {string}
7110
6948
  * @memberof HospitalSpecialtySimpleItemModel
7111
6949
  */
7112
- 'specialtyName'?: string | null;
6950
+ 'slug'?: string | null;
7113
6951
  /**
7114
6952
  *
7115
6953
  * @type {string}
7116
6954
  * @memberof HospitalSpecialtySimpleItemModel
7117
6955
  */
7118
- 'hospitalSpecialtySlug'?: string | null;
6956
+ 'description'?: string | null;
7119
6957
  /**
7120
6958
  *
7121
6959
  * @type {string}
7122
6960
  * @memberof HospitalSpecialtySimpleItemModel
7123
6961
  */
7124
- 'description'?: string | null;
6962
+ 'specialtyName'?: string | null;
7125
6963
  /**
7126
6964
  *
7127
- * @type {boolean}
6965
+ * @type {number}
7128
6966
  * @memberof HospitalSpecialtySimpleItemModel
7129
6967
  */
7130
- 'confirmed'?: boolean;
6968
+ 'order'?: number;
7131
6969
  /**
7132
6970
  *
7133
- * @type {Array<LocalizedUrlModel>}
6971
+ * @type {boolean}
7134
6972
  * @memberof HospitalSpecialtySimpleItemModel
7135
6973
  */
7136
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6974
+ 'confirmed'?: boolean;
7137
6975
  }
7138
6976
  /**
7139
6977
  *
@@ -7881,19 +7719,19 @@ export interface PatientModel {
7881
7719
  * @type {string}
7882
7720
  * @memberof PatientModel
7883
7721
  */
7884
- 'userType'?: string | null;
7722
+ 'userName'?: string | null;
7885
7723
  /**
7886
7724
  *
7887
7725
  * @type {string}
7888
7726
  * @memberof PatientModel
7889
7727
  */
7890
- 'userName'?: string | null;
7728
+ 'firstName'?: string | null;
7891
7729
  /**
7892
7730
  *
7893
7731
  * @type {string}
7894
7732
  * @memberof PatientModel
7895
7733
  */
7896
- 'firstName'?: string | null;
7734
+ 'middleName'?: string | null;
7897
7735
  /**
7898
7736
  *
7899
7737
  * @type {string}
@@ -7905,7 +7743,13 @@ export interface PatientModel {
7905
7743
  * @type {string}
7906
7744
  * @memberof PatientModel
7907
7745
  */
7908
- 'fullname'?: string | null;
7746
+ 'fullName'?: string | null;
7747
+ /**
7748
+ *
7749
+ * @type {string}
7750
+ * @memberof PatientModel
7751
+ */
7752
+ 'slug'?: string | null;
7909
7753
  /**
7910
7754
  *
7911
7755
  * @type {string}
@@ -7960,6 +7804,12 @@ export interface PatientModel {
7960
7804
  * @memberof PatientModel
7961
7805
  */
7962
7806
  'auditableEntity'?: AuditableEntity;
7807
+ /**
7808
+ *
7809
+ * @type {string}
7810
+ * @memberof PatientModel
7811
+ */
7812
+ 'userType'?: string | null;
7963
7813
  /**
7964
7814
  *
7965
7815
  * @type {Array<UserLanguageModel>}
@@ -8280,17 +8130,6 @@ export declare enum RejectReason {
8280
8130
  ScheduleNotAvailable = "ScheduleNotAvailable",
8281
8131
  OtherReason = "OtherReason"
8282
8132
  }
8283
- /**
8284
- *
8285
- * @export
8286
- * @enum {string}
8287
- */
8288
- export declare enum ReviewCategory {
8289
- Services = "Services",
8290
- Hospitality = "Hospitality",
8291
- Transfer = "Transfer",
8292
- Etc = "Etc"
8293
- }
8294
8133
  /**
8295
8134
  *
8296
8135
  * @export
@@ -9012,12 +8851,6 @@ export interface SpecialtyItemModel {
9012
8851
  * @memberof SpecialtyItemModel
9013
8852
  */
9014
8853
  'description'?: string | null;
9015
- /**
9016
- *
9017
- * @type {string}
9018
- * @memberof SpecialtyItemModel
9019
- */
9020
- 'content'?: string | null;
9021
8854
  /**
9022
8855
  *
9023
8856
  * @type {number}
@@ -9048,12 +8881,6 @@ export interface SpecialtyItemModel {
9048
8881
  * @memberof SpecialtyItemModel
9049
8882
  */
9050
8883
  'confirmed'?: boolean;
9051
- /**
9052
- *
9053
- * @type {Array<LocalizedUrlModel>}
9054
- * @memberof SpecialtyItemModel
9055
- */
9056
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
9057
8884
  /**
9058
8885
  *
9059
8886
  * @type {AuditableEntity}
@@ -9140,12 +8967,6 @@ export interface SpecialtyModel {
9140
8967
  * @memberof SpecialtyModel
9141
8968
  */
9142
8969
  'description'?: string | null;
9143
- /**
9144
- *
9145
- * @type {string}
9146
- * @memberof SpecialtyModel
9147
- */
9148
- 'content'?: string | null;
9149
8970
  /**
9150
8971
  *
9151
8972
  * @type {number}
@@ -9176,12 +8997,6 @@ export interface SpecialtyModel {
9176
8997
  * @memberof SpecialtyModel
9177
8998
  */
9178
8999
  'confirmed'?: boolean;
9179
- /**
9180
- *
9181
- * @type {Array<LocalizedUrlModel>}
9182
- * @memberof SpecialtyModel
9183
- */
9184
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
9185
9000
  /**
9186
9001
  *
9187
9002
  * @type {AuditableEntity}
@@ -9206,6 +9021,18 @@ export interface SpecialtyModel {
9206
9021
  * @memberof SpecialtyModel
9207
9022
  */
9208
9023
  'languageCode'?: string | null;
9024
+ /**
9025
+ *
9026
+ * @type {string}
9027
+ * @memberof SpecialtyModel
9028
+ */
9029
+ 'content'?: string | null;
9030
+ /**
9031
+ *
9032
+ * @type {Array<LocalizedUrlModel>}
9033
+ * @memberof SpecialtyModel
9034
+ */
9035
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
9209
9036
  }
9210
9037
  /**
9211
9038
  *
@@ -9237,12 +9064,6 @@ export interface SpecialtyTypeItemModel {
9237
9064
  * @memberof SpecialtyTypeItemModel
9238
9065
  */
9239
9066
  'description'?: string | null;
9240
- /**
9241
- *
9242
- * @type {string}
9243
- * @memberof SpecialtyTypeItemModel
9244
- */
9245
- 'content'?: string | null;
9246
9067
  /**
9247
9068
  *
9248
9069
  * @type {MarketingType}
@@ -9285,6 +9106,12 @@ export interface SpecialtyTypeItemModel {
9285
9106
  * @memberof SpecialtyTypeItemModel
9286
9107
  */
9287
9108
  'medias'?: Array<MediaModel> | null;
9109
+ /**
9110
+ *
9111
+ * @type {AuditableEntity}
9112
+ * @memberof SpecialtyTypeItemModel
9113
+ */
9114
+ 'auditableEntity'?: AuditableEntity;
9288
9115
  }
9289
9116
  /**
9290
9117
  *
@@ -9316,12 +9143,6 @@ export interface SpecialtyTypeModel {
9316
9143
  * @memberof SpecialtyTypeModel
9317
9144
  */
9318
9145
  'description'?: string | null;
9319
- /**
9320
- *
9321
- * @type {string}
9322
- * @memberof SpecialtyTypeModel
9323
- */
9324
- 'content'?: string | null;
9325
9146
  /**
9326
9147
  *
9327
9148
  * @type {MarketingType}
@@ -9364,12 +9185,30 @@ export interface SpecialtyTypeModel {
9364
9185
  * @memberof SpecialtyTypeModel
9365
9186
  */
9366
9187
  'medias'?: Array<MediaModel> | null;
9188
+ /**
9189
+ *
9190
+ * @type {AuditableEntity}
9191
+ * @memberof SpecialtyTypeModel
9192
+ */
9193
+ 'auditableEntity'?: AuditableEntity;
9367
9194
  /**
9368
9195
  *
9369
9196
  * @type {string}
9370
9197
  * @memberof SpecialtyTypeModel
9371
9198
  */
9372
9199
  'languageCode'?: string | null;
9200
+ /**
9201
+ *
9202
+ * @type {string}
9203
+ * @memberof SpecialtyTypeModel
9204
+ */
9205
+ 'content'?: string | null;
9206
+ /**
9207
+ *
9208
+ * @type {Array<LocalizedUrlModel>}
9209
+ * @memberof SpecialtyTypeModel
9210
+ */
9211
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
9373
9212
  }
9374
9213
  /**
9375
9214
  *
@@ -9389,6 +9228,12 @@ export interface SpecialtyTypeSimpleItemModel {
9389
9228
  * @memberof SpecialtyTypeSimpleItemModel
9390
9229
  */
9391
9230
  'name'?: string | null;
9231
+ /**
9232
+ *
9233
+ * @type {string}
9234
+ * @memberof SpecialtyTypeSimpleItemModel
9235
+ */
9236
+ 'slug'?: string | null;
9392
9237
  /**
9393
9238
  *
9394
9239
  * @type {boolean}
@@ -10049,19 +9894,19 @@ export interface UserModel {
10049
9894
  * @type {string}
10050
9895
  * @memberof UserModel
10051
9896
  */
10052
- 'userType'?: string | null;
9897
+ 'userName'?: string | null;
10053
9898
  /**
10054
9899
  *
10055
9900
  * @type {string}
10056
9901
  * @memberof UserModel
10057
9902
  */
10058
- 'userName'?: string | null;
9903
+ 'firstName'?: string | null;
10059
9904
  /**
10060
9905
  *
10061
9906
  * @type {string}
10062
9907
  * @memberof UserModel
10063
9908
  */
10064
- 'firstName'?: string | null;
9909
+ 'middleName'?: string | null;
10065
9910
  /**
10066
9911
  *
10067
9912
  * @type {string}
@@ -10073,7 +9918,13 @@ export interface UserModel {
10073
9918
  * @type {string}
10074
9919
  * @memberof UserModel
10075
9920
  */
10076
- 'fullname'?: string | null;
9921
+ 'fullName'?: string | null;
9922
+ /**
9923
+ *
9924
+ * @type {string}
9925
+ * @memberof UserModel
9926
+ */
9927
+ 'slug'?: string | null;
10077
9928
  /**
10078
9929
  *
10079
9930
  * @type {string}
@@ -10128,6 +9979,12 @@ export interface UserModel {
10128
9979
  * @memberof UserModel
10129
9980
  */
10130
9981
  'auditableEntity'?: AuditableEntity;
9982
+ /**
9983
+ *
9984
+ * @type {string}
9985
+ * @memberof UserModel
9986
+ */
9987
+ 'userType'?: string | null;
10131
9988
  /**
10132
9989
  *
10133
9990
  * @type {Array<UserLanguageModel>}
@@ -10282,13 +10139,7 @@ export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration
10282
10139
  * @param {string} [hospitalId]
10283
10140
  * @param {string} [hospitalName]
10284
10141
  * @param {string} [hospitalSlug]
10285
- * @param {string} [overviewTitle]
10286
- * @param {string} [normalizedOverviewTitle]
10287
- * @param {string} [overview]
10288
- * @param {string} [content]
10289
- * @param {string} [customStyle]
10290
- * @param {string} [background]
10291
- * @param {string} [backgroundThumbnail]
10142
+ * @param {string} [name]
10292
10143
  * @param {string} [languageCode]
10293
10144
  * @param {boolean} [returnDefaultValue]
10294
10145
  * @param {boolean} [confirmed]
@@ -10298,7 +10149,7 @@ export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration
10298
10149
  * @param {*} [options] Override http request option.
10299
10150
  * @throws {RequiredError}
10300
10151
  */
10301
- apiV2AboutusGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10152
+ apiV2AboutusGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, name?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10302
10153
  /**
10303
10154
  *
10304
10155
  * @summary Get AboutUs.
@@ -10330,13 +10181,7 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
10330
10181
  * @param {string} [hospitalId]
10331
10182
  * @param {string} [hospitalName]
10332
10183
  * @param {string} [hospitalSlug]
10333
- * @param {string} [overviewTitle]
10334
- * @param {string} [normalizedOverviewTitle]
10335
- * @param {string} [overview]
10336
- * @param {string} [content]
10337
- * @param {string} [customStyle]
10338
- * @param {string} [background]
10339
- * @param {string} [backgroundThumbnail]
10184
+ * @param {string} [name]
10340
10185
  * @param {string} [languageCode]
10341
10186
  * @param {boolean} [returnDefaultValue]
10342
10187
  * @param {boolean} [confirmed]
@@ -10346,7 +10191,7 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
10346
10191
  * @param {*} [options] Override http request option.
10347
10192
  * @throws {RequiredError}
10348
10193
  */
10349
- apiV2AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPagesModel>>;
10194
+ apiV2AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, name?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPagesModel>>;
10350
10195
  /**
10351
10196
  *
10352
10197
  * @summary Get AboutUs.
@@ -10378,13 +10223,7 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
10378
10223
  * @param {string} [hospitalId]
10379
10224
  * @param {string} [hospitalName]
10380
10225
  * @param {string} [hospitalSlug]
10381
- * @param {string} [overviewTitle]
10382
- * @param {string} [normalizedOverviewTitle]
10383
- * @param {string} [overview]
10384
- * @param {string} [content]
10385
- * @param {string} [customStyle]
10386
- * @param {string} [background]
10387
- * @param {string} [backgroundThumbnail]
10226
+ * @param {string} [name]
10388
10227
  * @param {string} [languageCode]
10389
10228
  * @param {boolean} [returnDefaultValue]
10390
10229
  * @param {boolean} [confirmed]
@@ -10394,7 +10233,7 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
10394
10233
  * @param {*} [options] Override http request option.
10395
10234
  * @throws {RequiredError}
10396
10235
  */
10397
- apiV2AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AboutUsPagesModel>;
10236
+ apiV2AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, name?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AboutUsPagesModel>;
10398
10237
  /**
10399
10238
  *
10400
10239
  * @summary Get AboutUs.
@@ -10428,13 +10267,7 @@ export declare class AboutUsApi extends BaseAPI {
10428
10267
  * @param {string} [hospitalId]
10429
10268
  * @param {string} [hospitalName]
10430
10269
  * @param {string} [hospitalSlug]
10431
- * @param {string} [overviewTitle]
10432
- * @param {string} [normalizedOverviewTitle]
10433
- * @param {string} [overview]
10434
- * @param {string} [content]
10435
- * @param {string} [customStyle]
10436
- * @param {string} [background]
10437
- * @param {string} [backgroundThumbnail]
10270
+ * @param {string} [name]
10438
10271
  * @param {string} [languageCode]
10439
10272
  * @param {boolean} [returnDefaultValue]
10440
10273
  * @param {boolean} [confirmed]
@@ -10445,7 +10278,7 @@ export declare class AboutUsApi extends BaseAPI {
10445
10278
  * @throws {RequiredError}
10446
10279
  * @memberof AboutUsApi
10447
10280
  */
10448
- apiV2AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, overviewTitle?: string, normalizedOverviewTitle?: string, overview?: string, content?: string, customStyle?: string, background?: string, backgroundThumbnail?: string, languageCode?: string, returnDefaultValue?: boolean, confirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPagesModel, any>>;
10281
+ apiV2AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string, languageCode?: string, returnDefaultValue?: boolean, confirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPagesModel, any>>;
10449
10282
  /**
10450
10283
  *
10451
10284
  * @summary Get AboutUs.
@@ -10602,16 +10435,17 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
10602
10435
  * @param {string} [contributorId]
10603
10436
  * @param {string} [contributorName]
10604
10437
  * @param {string} [email]
10605
- * @param {string} [description]
10606
10438
  * @param {string} [website]
10607
10439
  * @param {ContributionType} [contributionType]
10440
+ * @param {string} [languageCode]
10441
+ * @param {boolean} [showHidden]
10608
10442
  * @param {number} [page]
10609
10443
  * @param {number} [limit]
10610
10444
  * @param {Date} [lastRetrieved]
10611
10445
  * @param {*} [options] Override http request option.
10612
10446
  * @throws {RequiredError}
10613
10447
  */
10614
- apiV2ArticlesArticleIdContributorsGet: (articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10448
+ apiV2ArticlesArticleIdContributorsGet: (articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10615
10449
  /**
10616
10450
  *
10617
10451
  * @summary Get Article.
@@ -10689,7 +10523,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
10689
10523
  *
10690
10524
  * @summary Get all Articles.
10691
10525
  * @param {string} [id]
10692
- * @param {string} [title]
10526
+ * @param {string} [name]
10693
10527
  * @param {string} [description]
10694
10528
  * @param {ArticleStatus} [status]
10695
10529
  * @param {MarketingType} [marketingType]
@@ -10711,7 +10545,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
10711
10545
  * @param {*} [options] Override http request option.
10712
10546
  * @throws {RequiredError}
10713
10547
  */
10714
- apiV2ArticlesGet: (id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10548
+ apiV2ArticlesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10715
10549
  /**
10716
10550
  *
10717
10551
  * @param {string} slug
@@ -10744,16 +10578,17 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
10744
10578
  * @param {string} [contributorId]
10745
10579
  * @param {string} [contributorName]
10746
10580
  * @param {string} [email]
10747
- * @param {string} [description]
10748
10581
  * @param {string} [website]
10749
10582
  * @param {ContributionType} [contributionType]
10583
+ * @param {string} [languageCode]
10584
+ * @param {boolean} [showHidden]
10750
10585
  * @param {number} [page]
10751
10586
  * @param {number} [limit]
10752
10587
  * @param {Date} [lastRetrieved]
10753
10588
  * @param {*} [options] Override http request option.
10754
10589
  * @throws {RequiredError}
10755
10590
  */
10756
- apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorsModel>>;
10591
+ apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, website?: string | undefined, contributionType?: ContributionType | 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<ArticleContributorsModel>>;
10757
10592
  /**
10758
10593
  *
10759
10594
  * @summary Get Article.
@@ -10831,7 +10666,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
10831
10666
  *
10832
10667
  * @summary Get all Articles.
10833
10668
  * @param {string} [id]
10834
- * @param {string} [title]
10669
+ * @param {string} [name]
10835
10670
  * @param {string} [description]
10836
10671
  * @param {ArticleStatus} [status]
10837
10672
  * @param {MarketingType} [marketingType]
@@ -10853,7 +10688,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
10853
10688
  * @param {*} [options] Override http request option.
10854
10689
  * @throws {RequiredError}
10855
10690
  */
10856
- apiV2ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
10691
+ apiV2ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
10857
10692
  /**
10858
10693
  *
10859
10694
  * @param {string} slug
@@ -10886,16 +10721,17 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
10886
10721
  * @param {string} [contributorId]
10887
10722
  * @param {string} [contributorName]
10888
10723
  * @param {string} [email]
10889
- * @param {string} [description]
10890
10724
  * @param {string} [website]
10891
10725
  * @param {ContributionType} [contributionType]
10726
+ * @param {string} [languageCode]
10727
+ * @param {boolean} [showHidden]
10892
10728
  * @param {number} [page]
10893
10729
  * @param {number} [limit]
10894
10730
  * @param {Date} [lastRetrieved]
10895
10731
  * @param {*} [options] Override http request option.
10896
10732
  * @throws {RequiredError}
10897
10733
  */
10898
- apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticleContributorsModel>;
10734
+ apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticleContributorsModel>;
10899
10735
  /**
10900
10736
  *
10901
10737
  * @summary Get Article.
@@ -10973,7 +10809,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
10973
10809
  *
10974
10810
  * @summary Get all Articles.
10975
10811
  * @param {string} [id]
10976
- * @param {string} [title]
10812
+ * @param {string} [name]
10977
10813
  * @param {string} [description]
10978
10814
  * @param {ArticleStatus} [status]
10979
10815
  * @param {MarketingType} [marketingType]
@@ -10995,7 +10831,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
10995
10831
  * @param {*} [options] Override http request option.
10996
10832
  * @throws {RequiredError}
10997
10833
  */
10998
- apiV2ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
10834
+ apiV2ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
10999
10835
  /**
11000
10836
  *
11001
10837
  * @param {string} slug
@@ -11031,9 +10867,10 @@ export declare class ArticlesApi extends BaseAPI {
11031
10867
  * @param {string} [contributorId]
11032
10868
  * @param {string} [contributorName]
11033
10869
  * @param {string} [email]
11034
- * @param {string} [description]
11035
10870
  * @param {string} [website]
11036
10871
  * @param {ContributionType} [contributionType]
10872
+ * @param {string} [languageCode]
10873
+ * @param {boolean} [showHidden]
11037
10874
  * @param {number} [page]
11038
10875
  * @param {number} [limit]
11039
10876
  * @param {Date} [lastRetrieved]
@@ -11041,7 +10878,7 @@ export declare class ArticlesApi extends BaseAPI {
11041
10878
  * @throws {RequiredError}
11042
10879
  * @memberof ArticlesApi
11043
10880
  */
11044
- apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorsModel, any>>;
10881
+ apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorsModel, any>>;
11045
10882
  /**
11046
10883
  *
11047
10884
  * @summary Get Article.
@@ -11126,7 +10963,7 @@ export declare class ArticlesApi extends BaseAPI {
11126
10963
  *
11127
10964
  * @summary Get all Articles.
11128
10965
  * @param {string} [id]
11129
- * @param {string} [title]
10966
+ * @param {string} [name]
11130
10967
  * @param {string} [description]
11131
10968
  * @param {ArticleStatus} [status]
11132
10969
  * @param {MarketingType} [marketingType]
@@ -11149,7 +10986,7 @@ export declare class ArticlesApi extends BaseAPI {
11149
10986
  * @throws {RequiredError}
11150
10987
  * @memberof ArticlesApi
11151
10988
  */
11152
- apiV2ArticlesGet(id?: string, title?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel, any>>;
10989
+ apiV2ArticlesGet(id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel, any>>;
11153
10990
  /**
11154
10991
  *
11155
10992
  * @param {string} slug
@@ -12017,7 +11854,6 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
12017
11854
  * @param {string} [id]
12018
11855
  * @param {string} [name]
12019
11856
  * @param {string} [email]
12020
- * @param {string} [description]
12021
11857
  * @param {string} [website]
12022
11858
  * @param {string} [hospitalId]
12023
11859
  * @param {boolean} [interviewerOnly]
@@ -12030,7 +11866,7 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
12030
11866
  * @param {*} [options] Override http request option.
12031
11867
  * @throws {RequiredError}
12032
11868
  */
12033
- apiV2ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11869
+ apiV2ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12034
11870
  /**
12035
11871
  *
12036
11872
  * @summary Get Contributor by slug.
@@ -12087,7 +11923,6 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
12087
11923
  * @param {string} [id]
12088
11924
  * @param {string} [name]
12089
11925
  * @param {string} [email]
12090
- * @param {string} [description]
12091
11926
  * @param {string} [website]
12092
11927
  * @param {string} [hospitalId]
12093
11928
  * @param {boolean} [interviewerOnly]
@@ -12100,7 +11935,7 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
12100
11935
  * @param {*} [options] Override http request option.
12101
11936
  * @throws {RequiredError}
12102
11937
  */
12103
- apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorsModel>>;
11938
+ apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorsModel>>;
12104
11939
  /**
12105
11940
  *
12106
11941
  * @summary Get Contributor by slug.
@@ -12157,7 +11992,6 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
12157
11992
  * @param {string} [id]
12158
11993
  * @param {string} [name]
12159
11994
  * @param {string} [email]
12160
- * @param {string} [description]
12161
11995
  * @param {string} [website]
12162
11996
  * @param {string} [hospitalId]
12163
11997
  * @param {boolean} [interviewerOnly]
@@ -12170,7 +12004,7 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
12170
12004
  * @param {*} [options] Override http request option.
12171
12005
  * @throws {RequiredError}
12172
12006
  */
12173
- apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ContributorsModel>;
12007
+ apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ContributorsModel>;
12174
12008
  /**
12175
12009
  *
12176
12010
  * @summary Get Contributor by slug.
@@ -12232,7 +12066,6 @@ export declare class ContributorsApi extends BaseAPI {
12232
12066
  * @param {string} [id]
12233
12067
  * @param {string} [name]
12234
12068
  * @param {string} [email]
12235
- * @param {string} [description]
12236
12069
  * @param {string} [website]
12237
12070
  * @param {string} [hospitalId]
12238
12071
  * @param {boolean} [interviewerOnly]
@@ -12246,7 +12079,7 @@ export declare class ContributorsApi extends BaseAPI {
12246
12079
  * @throws {RequiredError}
12247
12080
  * @memberof ContributorsApi
12248
12081
  */
12249
- apiV2ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorsModel, any>>;
12082
+ apiV2ContributorsGet(id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorsModel, any>>;
12250
12083
  /**
12251
12084
  *
12252
12085
  * @summary Get Contributor by slug.
@@ -12589,8 +12422,11 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
12589
12422
  * @param {string} [hospitalId]
12590
12423
  * @param {string} [hospitalName]
12591
12424
  * @param {string} [specialtyId]
12425
+ * @param {string} [specialtyName]
12592
12426
  * @param {string} [specialtyTypeId]
12427
+ * @param {string} [specialtyTypeName]
12593
12428
  * @param {string} [serviceId]
12429
+ * @param {string} [serviceName]
12594
12430
  * @param {string} [exceptHospitalId]
12595
12431
  * @param {string} [exceptDealId]
12596
12432
  * @param {Array<string>} [ids]
@@ -12604,7 +12440,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
12604
12440
  * @param {*} [options] Override http request option.
12605
12441
  * @throws {RequiredError}
12606
12442
  */
12607
- apiV2DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12443
+ apiV2DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12608
12444
  /**
12609
12445
  *
12610
12446
  * @summary Get all deals.
@@ -12615,8 +12451,11 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
12615
12451
  * @param {string} [hospitalId]
12616
12452
  * @param {string} [hospitalName]
12617
12453
  * @param {string} [specialtyId]
12454
+ * @param {string} [specialtyName]
12618
12455
  * @param {string} [specialtyTypeId]
12456
+ * @param {string} [specialtyTypeName]
12619
12457
  * @param {string} [serviceId]
12458
+ * @param {string} [serviceName]
12620
12459
  * @param {string} [exceptHospitalId]
12621
12460
  * @param {string} [exceptDealId]
12622
12461
  * @param {Array<string>} [ids]
@@ -12630,7 +12469,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
12630
12469
  * @param {*} [options] Override http request option.
12631
12470
  * @throws {RequiredError}
12632
12471
  */
12633
- apiV2DealsSimpleGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12472
+ apiV2DealsSimpleGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12634
12473
  /**
12635
12474
  *
12636
12475
  * @summary Get deal by slug.
@@ -12713,8 +12552,11 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
12713
12552
  * @param {string} [hospitalId]
12714
12553
  * @param {string} [hospitalName]
12715
12554
  * @param {string} [specialtyId]
12555
+ * @param {string} [specialtyName]
12716
12556
  * @param {string} [specialtyTypeId]
12557
+ * @param {string} [specialtyTypeName]
12717
12558
  * @param {string} [serviceId]
12559
+ * @param {string} [serviceName]
12718
12560
  * @param {string} [exceptHospitalId]
12719
12561
  * @param {string} [exceptDealId]
12720
12562
  * @param {Array<string>} [ids]
@@ -12728,7 +12570,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
12728
12570
  * @param {*} [options] Override http request option.
12729
12571
  * @throws {RequiredError}
12730
12572
  */
12731
- apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
12573
+ apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
12732
12574
  /**
12733
12575
  *
12734
12576
  * @summary Get all deals.
@@ -12739,8 +12581,11 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
12739
12581
  * @param {string} [hospitalId]
12740
12582
  * @param {string} [hospitalName]
12741
12583
  * @param {string} [specialtyId]
12584
+ * @param {string} [specialtyName]
12742
12585
  * @param {string} [specialtyTypeId]
12586
+ * @param {string} [specialtyTypeName]
12743
12587
  * @param {string} [serviceId]
12588
+ * @param {string} [serviceName]
12744
12589
  * @param {string} [exceptHospitalId]
12745
12590
  * @param {string} [exceptDealId]
12746
12591
  * @param {Array<string>} [ids]
@@ -12754,7 +12599,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
12754
12599
  * @param {*} [options] Override http request option.
12755
12600
  * @throws {RequiredError}
12756
12601
  */
12757
- apiV2DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsSimpleModel>>;
12602
+ apiV2DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsSimpleModel>>;
12758
12603
  /**
12759
12604
  *
12760
12605
  * @summary Get deal by slug.
@@ -12837,8 +12682,11 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
12837
12682
  * @param {string} [hospitalId]
12838
12683
  * @param {string} [hospitalName]
12839
12684
  * @param {string} [specialtyId]
12685
+ * @param {string} [specialtyName]
12840
12686
  * @param {string} [specialtyTypeId]
12687
+ * @param {string} [specialtyTypeName]
12841
12688
  * @param {string} [serviceId]
12689
+ * @param {string} [serviceName]
12842
12690
  * @param {string} [exceptHospitalId]
12843
12691
  * @param {string} [exceptDealId]
12844
12692
  * @param {Array<string>} [ids]
@@ -12852,7 +12700,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
12852
12700
  * @param {*} [options] Override http request option.
12853
12701
  * @throws {RequiredError}
12854
12702
  */
12855
- apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
12703
+ apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
12856
12704
  /**
12857
12705
  *
12858
12706
  * @summary Get all deals.
@@ -12863,8 +12711,11 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
12863
12711
  * @param {string} [hospitalId]
12864
12712
  * @param {string} [hospitalName]
12865
12713
  * @param {string} [specialtyId]
12714
+ * @param {string} [specialtyName]
12866
12715
  * @param {string} [specialtyTypeId]
12716
+ * @param {string} [specialtyTypeName]
12867
12717
  * @param {string} [serviceId]
12718
+ * @param {string} [serviceName]
12868
12719
  * @param {string} [exceptHospitalId]
12869
12720
  * @param {string} [exceptDealId]
12870
12721
  * @param {Array<string>} [ids]
@@ -12878,7 +12729,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
12878
12729
  * @param {*} [options] Override http request option.
12879
12730
  * @throws {RequiredError}
12880
12731
  */
12881
- apiV2DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsSimpleModel>;
12732
+ apiV2DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsSimpleModel>;
12882
12733
  /**
12883
12734
  *
12884
12735
  * @summary Get deal by slug.
@@ -12968,8 +12819,11 @@ export declare class DealsApi extends BaseAPI {
12968
12819
  * @param {string} [hospitalId]
12969
12820
  * @param {string} [hospitalName]
12970
12821
  * @param {string} [specialtyId]
12822
+ * @param {string} [specialtyName]
12971
12823
  * @param {string} [specialtyTypeId]
12824
+ * @param {string} [specialtyTypeName]
12972
12825
  * @param {string} [serviceId]
12826
+ * @param {string} [serviceName]
12973
12827
  * @param {string} [exceptHospitalId]
12974
12828
  * @param {string} [exceptDealId]
12975
12829
  * @param {Array<string>} [ids]
@@ -12984,7 +12838,7 @@ export declare class DealsApi extends BaseAPI {
12984
12838
  * @throws {RequiredError}
12985
12839
  * @memberof DealsApi
12986
12840
  */
12987
- apiV2DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, serviceDuration?: number, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel, any>>;
12841
+ apiV2DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceId?: string, serviceName?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, serviceDuration?: number, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel, any>>;
12988
12842
  /**
12989
12843
  *
12990
12844
  * @summary Get all deals.
@@ -12995,8 +12849,11 @@ export declare class DealsApi extends BaseAPI {
12995
12849
  * @param {string} [hospitalId]
12996
12850
  * @param {string} [hospitalName]
12997
12851
  * @param {string} [specialtyId]
12852
+ * @param {string} [specialtyName]
12998
12853
  * @param {string} [specialtyTypeId]
12854
+ * @param {string} [specialtyTypeName]
12999
12855
  * @param {string} [serviceId]
12856
+ * @param {string} [serviceName]
13000
12857
  * @param {string} [exceptHospitalId]
13001
12858
  * @param {string} [exceptDealId]
13002
12859
  * @param {Array<string>} [ids]
@@ -13011,7 +12868,7 @@ export declare class DealsApi extends BaseAPI {
13011
12868
  * @throws {RequiredError}
13012
12869
  * @memberof DealsApi
13013
12870
  */
13014
- apiV2DealsSimpleGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, serviceDuration?: number, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsSimpleModel, any>>;
12871
+ apiV2DealsSimpleGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceId?: string, serviceName?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, serviceDuration?: number, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsSimpleModel, any>>;
13015
12872
  /**
13016
12873
  *
13017
12874
  * @summary Get deal by slug.
@@ -13202,6 +13059,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
13202
13059
  *
13203
13060
  * @summary Get all Doctors.
13204
13061
  * @param {string} [hospitalId]
13062
+ * @param {string} [hospitalName]
13205
13063
  * @param {string} [languageCode]
13206
13064
  * @param {boolean} [returnDefaultValue]
13207
13065
  * @param {Array<string>} [ids]
@@ -13220,11 +13078,12 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
13220
13078
  * @param {*} [options] Override http request option.
13221
13079
  * @throws {RequiredError}
13222
13080
  */
13223
- apiV2DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13081
+ apiV2DoctorsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13224
13082
  /**
13225
13083
  *
13226
13084
  * @summary Get all Doctors.
13227
13085
  * @param {string} [hospitalId]
13086
+ * @param {string} [hospitalName]
13228
13087
  * @param {string} [languageCode]
13229
13088
  * @param {boolean} [returnDefaultValue]
13230
13089
  * @param {Array<string>} [ids]
@@ -13243,7 +13102,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
13243
13102
  * @param {*} [options] Override http request option.
13244
13103
  * @throws {RequiredError}
13245
13104
  */
13246
- apiV2DoctorsSimpleGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13105
+ apiV2DoctorsSimpleGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13247
13106
  /**
13248
13107
  *
13249
13108
  * @param {string} slug
@@ -13432,6 +13291,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
13432
13291
  *
13433
13292
  * @summary Get all Doctors.
13434
13293
  * @param {string} [hospitalId]
13294
+ * @param {string} [hospitalName]
13435
13295
  * @param {string} [languageCode]
13436
13296
  * @param {boolean} [returnDefaultValue]
13437
13297
  * @param {Array<string>} [ids]
@@ -13450,11 +13310,12 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
13450
13310
  * @param {*} [options] Override http request option.
13451
13311
  * @throws {RequiredError}
13452
13312
  */
13453
- apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | 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<DoctorsModel>>;
13313
+ apiV2DoctorsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | 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<DoctorsModel>>;
13454
13314
  /**
13455
13315
  *
13456
13316
  * @summary Get all Doctors.
13457
13317
  * @param {string} [hospitalId]
13318
+ * @param {string} [hospitalName]
13458
13319
  * @param {string} [languageCode]
13459
13320
  * @param {boolean} [returnDefaultValue]
13460
13321
  * @param {Array<string>} [ids]
@@ -13473,7 +13334,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
13473
13334
  * @param {*} [options] Override http request option.
13474
13335
  * @throws {RequiredError}
13475
13336
  */
13476
- apiV2DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | 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<DoctorsSimpleModel>>;
13337
+ apiV2DoctorsSimpleGet(hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | 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<DoctorsSimpleModel>>;
13477
13338
  /**
13478
13339
  *
13479
13340
  * @param {string} slug
@@ -13662,6 +13523,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
13662
13523
  *
13663
13524
  * @summary Get all Doctors.
13664
13525
  * @param {string} [hospitalId]
13526
+ * @param {string} [hospitalName]
13665
13527
  * @param {string} [languageCode]
13666
13528
  * @param {boolean} [returnDefaultValue]
13667
13529
  * @param {Array<string>} [ids]
@@ -13680,11 +13542,12 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
13680
13542
  * @param {*} [options] Override http request option.
13681
13543
  * @throws {RequiredError}
13682
13544
  */
13683
- apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
13545
+ apiV2DoctorsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
13684
13546
  /**
13685
13547
  *
13686
13548
  * @summary Get all Doctors.
13687
13549
  * @param {string} [hospitalId]
13550
+ * @param {string} [hospitalName]
13688
13551
  * @param {string} [languageCode]
13689
13552
  * @param {boolean} [returnDefaultValue]
13690
13553
  * @param {Array<string>} [ids]
@@ -13703,7 +13566,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
13703
13566
  * @param {*} [options] Override http request option.
13704
13567
  * @throws {RequiredError}
13705
13568
  */
13706
- apiV2DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsSimpleModel>;
13569
+ apiV2DoctorsSimpleGet(hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsSimpleModel>;
13707
13570
  /**
13708
13571
  *
13709
13572
  * @param {string} slug
@@ -13909,6 +13772,7 @@ export declare class DoctorsApi extends BaseAPI {
13909
13772
  *
13910
13773
  * @summary Get all Doctors.
13911
13774
  * @param {string} [hospitalId]
13775
+ * @param {string} [hospitalName]
13912
13776
  * @param {string} [languageCode]
13913
13777
  * @param {boolean} [returnDefaultValue]
13914
13778
  * @param {Array<string>} [ids]
@@ -13928,11 +13792,12 @@ export declare class DoctorsApi extends BaseAPI {
13928
13792
  * @throws {RequiredError}
13929
13793
  * @memberof DoctorsApi
13930
13794
  */
13931
- apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel, any>>;
13795
+ apiV2DoctorsGet(hospitalId?: string, hospitalName?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel, any>>;
13932
13796
  /**
13933
13797
  *
13934
13798
  * @summary Get all Doctors.
13935
13799
  * @param {string} [hospitalId]
13800
+ * @param {string} [hospitalName]
13936
13801
  * @param {string} [languageCode]
13937
13802
  * @param {boolean} [returnDefaultValue]
13938
13803
  * @param {Array<string>} [ids]
@@ -13952,7 +13817,7 @@ export declare class DoctorsApi extends BaseAPI {
13952
13817
  * @throws {RequiredError}
13953
13818
  * @memberof DoctorsApi
13954
13819
  */
13955
- apiV2DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsSimpleModel, any>>;
13820
+ apiV2DoctorsSimpleGet(hospitalId?: string, hospitalName?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsSimpleModel, any>>;
13956
13821
  /**
13957
13822
  *
13958
13823
  * @param {string} slug
@@ -13993,15 +13858,18 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
13993
13858
  * @param {string} [id]
13994
13859
  * @param {string} [parentId]
13995
13860
  * @param {string} [name]
13996
- * @param {string} [description]
13861
+ * @param {string} [hospitalId]
13862
+ * @param {string} [hospitalName]
13997
13863
  * @param {string} [languageCode]
13864
+ * @param {boolean} [showHidden]
13865
+ * @param {boolean} [returnDefaultValue]
13998
13866
  * @param {number} [page]
13999
13867
  * @param {number} [limit]
14000
13868
  * @param {Date} [lastRetrieved]
14001
13869
  * @param {*} [options] Override http request option.
14002
13870
  * @throws {RequiredError}
14003
13871
  */
14004
- apiV2FaqcategoriesGet: (id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13872
+ apiV2FaqcategoriesGet: (id?: string | undefined, parentId?: string | undefined, name?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14005
13873
  /**
14006
13874
  *
14007
13875
  * @summary Get FaqCategory by slug.
@@ -14041,15 +13909,18 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
14041
13909
  * @param {string} [id]
14042
13910
  * @param {string} [parentId]
14043
13911
  * @param {string} [name]
14044
- * @param {string} [description]
13912
+ * @param {string} [hospitalId]
13913
+ * @param {string} [hospitalName]
14045
13914
  * @param {string} [languageCode]
13915
+ * @param {boolean} [showHidden]
13916
+ * @param {boolean} [returnDefaultValue]
14046
13917
  * @param {number} [page]
14047
13918
  * @param {number} [limit]
14048
13919
  * @param {Date} [lastRetrieved]
14049
13920
  * @param {*} [options] Override http request option.
14050
13921
  * @throws {RequiredError}
14051
13922
  */
14052
- apiV2FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: 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<FaqCategoriesModel>>;
13923
+ apiV2FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoriesModel>>;
14053
13924
  /**
14054
13925
  *
14055
13926
  * @summary Get FaqCategory by slug.
@@ -14089,15 +13960,18 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
14089
13960
  * @param {string} [id]
14090
13961
  * @param {string} [parentId]
14091
13962
  * @param {string} [name]
14092
- * @param {string} [description]
13963
+ * @param {string} [hospitalId]
13964
+ * @param {string} [hospitalName]
14093
13965
  * @param {string} [languageCode]
13966
+ * @param {boolean} [showHidden]
13967
+ * @param {boolean} [returnDefaultValue]
14094
13968
  * @param {number} [page]
14095
13969
  * @param {number} [limit]
14096
13970
  * @param {Date} [lastRetrieved]
14097
13971
  * @param {*} [options] Override http request option.
14098
13972
  * @throws {RequiredError}
14099
13973
  */
14100
- apiV2FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqCategoriesModel>;
13974
+ apiV2FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqCategoriesModel>;
14101
13975
  /**
14102
13976
  *
14103
13977
  * @summary Get FaqCategory by slug.
@@ -14141,8 +14015,11 @@ export declare class FaqCategoriesApi extends BaseAPI {
14141
14015
  * @param {string} [id]
14142
14016
  * @param {string} [parentId]
14143
14017
  * @param {string} [name]
14144
- * @param {string} [description]
14018
+ * @param {string} [hospitalId]
14019
+ * @param {string} [hospitalName]
14145
14020
  * @param {string} [languageCode]
14021
+ * @param {boolean} [showHidden]
14022
+ * @param {boolean} [returnDefaultValue]
14146
14023
  * @param {number} [page]
14147
14024
  * @param {number} [limit]
14148
14025
  * @param {Date} [lastRetrieved]
@@ -14150,7 +14027,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
14150
14027
  * @throws {RequiredError}
14151
14028
  * @memberof FaqCategoriesApi
14152
14029
  */
14153
- apiV2FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoriesModel, any>>;
14030
+ apiV2FaqcategoriesGet(id?: string, parentId?: string, name?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoriesModel, any>>;
14154
14031
  /**
14155
14032
  *
14156
14033
  * @summary Get FaqCategory by slug.
@@ -14171,51 +14048,73 @@ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration |
14171
14048
  *
14172
14049
  * @summary Get faq.
14173
14050
  * @param {string} faqId
14174
- * @param {string} [languageCode]
14051
+ * @param {string} [languageCode]
14052
+ * @param {*} [options] Override http request option.
14053
+ * @throws {RequiredError}
14054
+ */
14055
+ apiV2FaqsFaqIdGet: (faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14056
+ /**
14057
+ *
14058
+ * @summary Get all FaqMedias.
14059
+ * @param {string} faqId
14060
+ * @param {string} [id]
14061
+ * @param {MediaType} [mediaType]
14062
+ * @param {number} [page]
14063
+ * @param {number} [limit]
14064
+ * @param {Date} [lastRetrieved]
14065
+ * @param {*} [options] Override http request option.
14066
+ * @throws {RequiredError}
14067
+ */
14068
+ apiV2FaqsFaqIdMediasGet: (faqId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14069
+ /**
14070
+ *
14071
+ * @summary Get FaqMedia.
14072
+ * @param {string} faqId
14073
+ * @param {string} mediaId
14175
14074
  * @param {*} [options] Override http request option.
14176
14075
  * @throws {RequiredError}
14177
14076
  */
14178
- apiV2FaqsFaqIdGet: (faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14077
+ apiV2FaqsFaqIdMediasMediaIdGet: (faqId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14179
14078
  /**
14180
14079
  *
14181
- * @summary Get all FaqMedias.
14080
+ * @summary GetAll FaqTags.
14182
14081
  * @param {string} faqId
14183
- * @param {string} [id]
14184
- * @param {MediaType} [mediaType]
14082
+ * @param {string} [tagId]
14185
14083
  * @param {number} [page]
14186
14084
  * @param {number} [limit]
14187
14085
  * @param {Date} [lastRetrieved]
14188
14086
  * @param {*} [options] Override http request option.
14189
14087
  * @throws {RequiredError}
14190
14088
  */
14191
- apiV2FaqsFaqIdMediasGet: (faqId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14089
+ apiV2FaqsFaqIdTagsGet: (faqId: string, tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14192
14090
  /**
14193
14091
  *
14194
- * @summary Get FaqMedia.
14092
+ * @summary Get FaqTag.
14195
14093
  * @param {string} faqId
14196
- * @param {string} mediaId
14094
+ * @param {string} tagId
14197
14095
  * @param {*} [options] Override http request option.
14198
14096
  * @throws {RequiredError}
14199
14097
  */
14200
- apiV2FaqsFaqIdMediasMediaIdGet: (faqId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14098
+ apiV2FaqsFaqIdTagsTagIdGet: (faqId: string, tagId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14201
14099
  /**
14202
14100
  *
14203
14101
  * @summary Get all Faqs.
14204
14102
  * @param {string} [id]
14205
- * @param {string} [title]
14206
- * @param {string} [content]
14103
+ * @param {string} [name]
14104
+ * @param {string} [slug]
14207
14105
  * @param {string} [categoryId]
14208
14106
  * @param {string} [hospitalId]
14209
14107
  * @param {string} [hospitalName]
14210
14108
  * @param {string} [languageCode]
14211
14109
  * @param {boolean} [showHidden]
14110
+ * @param {boolean} [returnDefaultValue]
14212
14111
  * @param {number} [page]
14213
14112
  * @param {number} [limit]
14214
14113
  * @param {Date} [lastRetrieved]
14215
14114
  * @param {*} [options] Override http request option.
14216
14115
  * @throws {RequiredError}
14217
14116
  */
14218
- apiV2FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14117
+ apiV2FaqsGet: (id?: string | undefined, name?: string | undefined, slug?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14219
14118
  /**
14220
14119
  *
14221
14120
  * @summary Get faq by slug.
@@ -14262,24 +14161,46 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
14262
14161
  * @throws {RequiredError}
14263
14162
  */
14264
14163
  apiV2FaqsFaqIdMediasMediaIdGet(faqId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
14164
+ /**
14165
+ *
14166
+ * @summary GetAll FaqTags.
14167
+ * @param {string} faqId
14168
+ * @param {string} [tagId]
14169
+ * @param {number} [page]
14170
+ * @param {number} [limit]
14171
+ * @param {Date} [lastRetrieved]
14172
+ * @param {*} [options] Override http request option.
14173
+ * @throws {RequiredError}
14174
+ */
14175
+ apiV2FaqsFaqIdTagsGet(faqId: string, tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqTagsModel>>;
14176
+ /**
14177
+ *
14178
+ * @summary Get FaqTag.
14179
+ * @param {string} faqId
14180
+ * @param {string} tagId
14181
+ * @param {*} [options] Override http request option.
14182
+ * @throws {RequiredError}
14183
+ */
14184
+ apiV2FaqsFaqIdTagsTagIdGet(faqId: string, tagId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqTagModel>>;
14265
14185
  /**
14266
14186
  *
14267
14187
  * @summary Get all Faqs.
14268
14188
  * @param {string} [id]
14269
- * @param {string} [title]
14270
- * @param {string} [content]
14189
+ * @param {string} [name]
14190
+ * @param {string} [slug]
14271
14191
  * @param {string} [categoryId]
14272
14192
  * @param {string} [hospitalId]
14273
14193
  * @param {string} [hospitalName]
14274
14194
  * @param {string} [languageCode]
14275
14195
  * @param {boolean} [showHidden]
14196
+ * @param {boolean} [returnDefaultValue]
14276
14197
  * @param {number} [page]
14277
14198
  * @param {number} [limit]
14278
14199
  * @param {Date} [lastRetrieved]
14279
14200
  * @param {*} [options] Override http request option.
14280
14201
  * @throws {RequiredError}
14281
14202
  */
14282
- apiV2FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: 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<FaqsModel>>;
14203
+ apiV2FaqsGet(id?: string | undefined, name?: string | undefined, slug?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqsModel>>;
14283
14204
  /**
14284
14205
  *
14285
14206
  * @summary Get faq by slug.
@@ -14326,24 +14247,46 @@ export declare const FaqsApiFactory: (configuration?: Configuration | undefined,
14326
14247
  * @throws {RequiredError}
14327
14248
  */
14328
14249
  apiV2FaqsFaqIdMediasMediaIdGet(faqId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
14250
+ /**
14251
+ *
14252
+ * @summary GetAll FaqTags.
14253
+ * @param {string} faqId
14254
+ * @param {string} [tagId]
14255
+ * @param {number} [page]
14256
+ * @param {number} [limit]
14257
+ * @param {Date} [lastRetrieved]
14258
+ * @param {*} [options] Override http request option.
14259
+ * @throws {RequiredError}
14260
+ */
14261
+ apiV2FaqsFaqIdTagsGet(faqId: string, tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqTagsModel>;
14262
+ /**
14263
+ *
14264
+ * @summary Get FaqTag.
14265
+ * @param {string} faqId
14266
+ * @param {string} tagId
14267
+ * @param {*} [options] Override http request option.
14268
+ * @throws {RequiredError}
14269
+ */
14270
+ apiV2FaqsFaqIdTagsTagIdGet(faqId: string, tagId: string, options?: any): AxiosPromise<FaqTagModel>;
14329
14271
  /**
14330
14272
  *
14331
14273
  * @summary Get all Faqs.
14332
14274
  * @param {string} [id]
14333
- * @param {string} [title]
14334
- * @param {string} [content]
14275
+ * @param {string} [name]
14276
+ * @param {string} [slug]
14335
14277
  * @param {string} [categoryId]
14336
14278
  * @param {string} [hospitalId]
14337
14279
  * @param {string} [hospitalName]
14338
14280
  * @param {string} [languageCode]
14339
14281
  * @param {boolean} [showHidden]
14282
+ * @param {boolean} [returnDefaultValue]
14340
14283
  * @param {number} [page]
14341
14284
  * @param {number} [limit]
14342
14285
  * @param {Date} [lastRetrieved]
14343
14286
  * @param {*} [options] Override http request option.
14344
14287
  * @throws {RequiredError}
14345
14288
  */
14346
- apiV2FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
14289
+ apiV2FaqsGet(id?: string | undefined, name?: string | undefined, slug?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
14347
14290
  /**
14348
14291
  *
14349
14292
  * @summary Get faq by slug.
@@ -14395,17 +14338,41 @@ export declare class FaqsApi extends BaseAPI {
14395
14338
  * @memberof FaqsApi
14396
14339
  */
14397
14340
  apiV2FaqsFaqIdMediasMediaIdGet(faqId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
14341
+ /**
14342
+ *
14343
+ * @summary GetAll FaqTags.
14344
+ * @param {string} faqId
14345
+ * @param {string} [tagId]
14346
+ * @param {number} [page]
14347
+ * @param {number} [limit]
14348
+ * @param {Date} [lastRetrieved]
14349
+ * @param {*} [options] Override http request option.
14350
+ * @throws {RequiredError}
14351
+ * @memberof FaqsApi
14352
+ */
14353
+ apiV2FaqsFaqIdTagsGet(faqId: string, tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqTagsModel, any>>;
14354
+ /**
14355
+ *
14356
+ * @summary Get FaqTag.
14357
+ * @param {string} faqId
14358
+ * @param {string} tagId
14359
+ * @param {*} [options] Override http request option.
14360
+ * @throws {RequiredError}
14361
+ * @memberof FaqsApi
14362
+ */
14363
+ apiV2FaqsFaqIdTagsTagIdGet(faqId: string, tagId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqTagModel, any>>;
14398
14364
  /**
14399
14365
  *
14400
14366
  * @summary Get all Faqs.
14401
14367
  * @param {string} [id]
14402
- * @param {string} [title]
14403
- * @param {string} [content]
14368
+ * @param {string} [name]
14369
+ * @param {string} [slug]
14404
14370
  * @param {string} [categoryId]
14405
14371
  * @param {string} [hospitalId]
14406
14372
  * @param {string} [hospitalName]
14407
14373
  * @param {string} [languageCode]
14408
14374
  * @param {boolean} [showHidden]
14375
+ * @param {boolean} [returnDefaultValue]
14409
14376
  * @param {number} [page]
14410
14377
  * @param {number} [limit]
14411
14378
  * @param {Date} [lastRetrieved]
@@ -14413,7 +14380,7 @@ export declare class FaqsApi extends BaseAPI {
14413
14380
  * @throws {RequiredError}
14414
14381
  * @memberof FaqsApi
14415
14382
  */
14416
- apiV2FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel, any>>;
14383
+ apiV2FaqsGet(id?: string, name?: string, slug?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel, any>>;
14417
14384
  /**
14418
14385
  *
14419
14386
  * @summary Get faq by slug.
@@ -14600,13 +14567,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14600
14567
  * @param {string} [languageCode]
14601
14568
  * @param {Array<string>} [ids]
14602
14569
  * @param {boolean} [returnDefaultValue]
14570
+ * @param {boolean} [paymentEnabled]
14603
14571
  * @param {number} [page]
14604
14572
  * @param {number} [limit]
14605
14573
  * @param {Date} [lastRetrieved]
14606
14574
  * @param {*} [options] Override http request option.
14607
14575
  * @throws {RequiredError}
14608
14576
  */
14609
- apiV2HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14577
+ apiV2HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14610
14578
  /**
14611
14579
  *
14612
14580
  * @summary Get HospitalAccreditation.
@@ -14761,25 +14729,25 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14761
14729
  *
14762
14730
  * @summary Get all HospitalSpecialties.
14763
14731
  * @param {string} hospitalId
14764
- * @param {string} [hospitalName]
14765
- * @param {string} [hospitalSlug]
14766
14732
  * @param {string} [specialtyId]
14767
14733
  * @param {string} [specialtyName]
14768
14734
  * @param {string} [specialtyTypeId]
14769
- * @param {string} [hospitalSpecialtySlug]
14770
- * @param {string} [title]
14735
+ * @param {string} [specialtyTypeName]
14736
+ * @param {string} [hospitalSpecialtyId]
14737
+ * @param {string} [name]
14738
+ * @param {string} [slug]
14771
14739
  * @param {MarketingType} [marketingType]
14772
- * @param {string} [languageCode]
14773
- * @param {boolean} [showHidden]
14774
14740
  * @param {boolean} [returnDefaultValue]
14775
14741
  * @param {boolean} [includeServices]
14742
+ * @param {string} [languageCode]
14743
+ * @param {boolean} [showHidden]
14776
14744
  * @param {number} [page]
14777
14745
  * @param {number} [limit]
14778
14746
  * @param {Date} [lastRetrieved]
14779
14747
  * @param {*} [options] Override http request option.
14780
14748
  * @throws {RequiredError}
14781
14749
  */
14782
- apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
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) => Promise<RequestArgs>;
14783
14751
  /**
14784
14752
  *
14785
14753
  * @summary Get all HospitalServiceMedias.
@@ -14808,25 +14776,37 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14808
14776
  *
14809
14777
  * @summary Get all HospitalSpecialties.
14810
14778
  * @param {string} hospitalId
14811
- * @param {string} [hospitalName]
14812
- * @param {string} [hospitalSlug]
14813
14779
  * @param {string} [specialtyId]
14814
14780
  * @param {string} [specialtyName]
14815
14781
  * @param {string} [specialtyTypeId]
14816
- * @param {string} [hospitalSpecialtySlug]
14817
- * @param {string} [title]
14782
+ * @param {string} [specialtyTypeName]
14783
+ * @param {string} [hospitalSpecialtyId]
14784
+ * @param {string} [name]
14785
+ * @param {string} [slug]
14818
14786
  * @param {MarketingType} [marketingType]
14819
- * @param {string} [languageCode]
14820
- * @param {boolean} [showHidden]
14821
14787
  * @param {boolean} [returnDefaultValue]
14822
14788
  * @param {boolean} [includeServices]
14789
+ * @param {string} [languageCode]
14790
+ * @param {boolean} [showHidden]
14823
14791
  * @param {number} [page]
14824
14792
  * @param {number} [limit]
14825
14793
  * @param {Date} [lastRetrieved]
14826
14794
  * @param {*} [options] Override http request option.
14827
14795
  * @throws {RequiredError}
14828
14796
  */
14829
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
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) => Promise<RequestArgs>;
14798
+ /**
14799
+ *
14800
+ * @summary Get HospitalSpecialty by slug.
14801
+ * @param {string} hospitalId
14802
+ * @param {string} slug
14803
+ * @param {string} [languageCode]
14804
+ * @param {boolean} [returnDefaultValue]
14805
+ * @param {boolean} [includeServices]
14806
+ * @param {*} [options] Override http request option.
14807
+ * @throws {RequiredError}
14808
+ */
14809
+ apiV2HospitalsHospitalIdSpecialtiesSlugGet: (hospitalId: string, slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14830
14810
  /**
14831
14811
  *
14832
14812
  * @summary Get HospitalSpecialty.
@@ -14844,14 +14824,9 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14844
14824
  * @summary Get all HospitalServices.
14845
14825
  * @param {string} hospitalId
14846
14826
  * @param {string} specialtyId
14847
- * @param {string} [hospitalName]
14848
- * @param {string} [hospitalSlug]
14849
14827
  * @param {string} [id]
14850
14828
  * @param {string} [name]
14851
- * @param {string} [description]
14852
- * @param {string} [specialtyName]
14853
- * @param {string} [specialtyTypeId]
14854
- * @param {string} [specialtyTypeName]
14829
+ * @param {string} [slug]
14855
14830
  * @param {string} [serviceCategoryId]
14856
14831
  * @param {MarketingType} [marketingType]
14857
14832
  * @param {Procedure} [procedure]
@@ -14864,7 +14839,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14864
14839
  * @param {*} [options] Override http request option.
14865
14840
  * @throws {RequiredError}
14866
14841
  */
14867
- apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: (hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14842
+ apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: (hospitalId: string, specialtyId: string, id?: string | undefined, name?: string | undefined, slug?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14868
14843
  /**
14869
14844
  *
14870
14845
  * @summary Get HospitalService.
@@ -14944,13 +14919,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14944
14919
  * @param {string} [languageCode]
14945
14920
  * @param {Array<string>} [ids]
14946
14921
  * @param {boolean} [returnDefaultValue]
14922
+ * @param {boolean} [paymentEnabled]
14947
14923
  * @param {number} [page]
14948
14924
  * @param {number} [limit]
14949
14925
  * @param {Date} [lastRetrieved]
14950
14926
  * @param {*} [options] Override http request option.
14951
14927
  * @throws {RequiredError}
14952
14928
  */
14953
- apiV2HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14929
+ apiV2HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14954
14930
  /**
14955
14931
  *
14956
14932
  * @param {string} slug
@@ -14982,13 +14958,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
14982
14958
  * @param {string} [languageCode]
14983
14959
  * @param {Array<string>} [ids]
14984
14960
  * @param {boolean} [returnDefaultValue]
14961
+ * @param {boolean} [paymentEnabled]
14985
14962
  * @param {number} [page]
14986
14963
  * @param {number} [limit]
14987
14964
  * @param {Date} [lastRetrieved]
14988
14965
  * @param {*} [options] Override http request option.
14989
14966
  * @throws {RequiredError}
14990
14967
  */
14991
- apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
14968
+ apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
14992
14969
  /**
14993
14970
  *
14994
14971
  * @summary Get HospitalAccreditation.
@@ -15143,25 +15120,25 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
15143
15120
  *
15144
15121
  * @summary Get all HospitalSpecialties.
15145
15122
  * @param {string} hospitalId
15146
- * @param {string} [hospitalName]
15147
- * @param {string} [hospitalSlug]
15148
15123
  * @param {string} [specialtyId]
15149
15124
  * @param {string} [specialtyName]
15150
15125
  * @param {string} [specialtyTypeId]
15151
- * @param {string} [hospitalSpecialtySlug]
15152
- * @param {string} [title]
15126
+ * @param {string} [specialtyTypeName]
15127
+ * @param {string} [hospitalSpecialtyId]
15128
+ * @param {string} [name]
15129
+ * @param {string} [slug]
15153
15130
  * @param {MarketingType} [marketingType]
15154
- * @param {string} [languageCode]
15155
- * @param {boolean} [showHidden]
15156
15131
  * @param {boolean} [returnDefaultValue]
15157
15132
  * @param {boolean} [includeServices]
15133
+ * @param {string} [languageCode]
15134
+ * @param {boolean} [showHidden]
15158
15135
  * @param {number} [page]
15159
15136
  * @param {number} [limit]
15160
15137
  * @param {Date} [lastRetrieved]
15161
15138
  * @param {*} [options] Override http request option.
15162
15139
  * @throws {RequiredError}
15163
15140
  */
15164
- apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
15141
+ 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>>;
15165
15142
  /**
15166
15143
  *
15167
15144
  * @summary Get all HospitalServiceMedias.
@@ -15190,25 +15167,37 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
15190
15167
  *
15191
15168
  * @summary Get all HospitalSpecialties.
15192
15169
  * @param {string} hospitalId
15193
- * @param {string} [hospitalName]
15194
- * @param {string} [hospitalSlug]
15195
15170
  * @param {string} [specialtyId]
15196
15171
  * @param {string} [specialtyName]
15197
15172
  * @param {string} [specialtyTypeId]
15198
- * @param {string} [hospitalSpecialtySlug]
15199
- * @param {string} [title]
15173
+ * @param {string} [specialtyTypeName]
15174
+ * @param {string} [hospitalSpecialtyId]
15175
+ * @param {string} [name]
15176
+ * @param {string} [slug]
15200
15177
  * @param {MarketingType} [marketingType]
15201
- * @param {string} [languageCode]
15202
- * @param {boolean} [showHidden]
15203
15178
  * @param {boolean} [returnDefaultValue]
15204
15179
  * @param {boolean} [includeServices]
15180
+ * @param {string} [languageCode]
15181
+ * @param {boolean} [showHidden]
15205
15182
  * @param {number} [page]
15206
15183
  * @param {number} [limit]
15207
15184
  * @param {Date} [lastRetrieved]
15208
15185
  * @param {*} [options] Override http request option.
15209
15186
  * @throws {RequiredError}
15210
15187
  */
15211
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
15188
+ 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>>;
15189
+ /**
15190
+ *
15191
+ * @summary Get HospitalSpecialty by slug.
15192
+ * @param {string} hospitalId
15193
+ * @param {string} slug
15194
+ * @param {string} [languageCode]
15195
+ * @param {boolean} [returnDefaultValue]
15196
+ * @param {boolean} [includeServices]
15197
+ * @param {*} [options] Override http request option.
15198
+ * @throws {RequiredError}
15199
+ */
15200
+ 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>>;
15212
15201
  /**
15213
15202
  *
15214
15203
  * @summary Get HospitalSpecialty.
@@ -15226,14 +15215,9 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
15226
15215
  * @summary Get all HospitalServices.
15227
15216
  * @param {string} hospitalId
15228
15217
  * @param {string} specialtyId
15229
- * @param {string} [hospitalName]
15230
- * @param {string} [hospitalSlug]
15231
15218
  * @param {string} [id]
15232
15219
  * @param {string} [name]
15233
- * @param {string} [description]
15234
- * @param {string} [specialtyName]
15235
- * @param {string} [specialtyTypeId]
15236
- * @param {string} [specialtyTypeName]
15220
+ * @param {string} [slug]
15237
15221
  * @param {string} [serviceCategoryId]
15238
15222
  * @param {MarketingType} [marketingType]
15239
15223
  * @param {Procedure} [procedure]
@@ -15246,7 +15230,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
15246
15230
  * @param {*} [options] Override http request option.
15247
15231
  * @throws {RequiredError}
15248
15232
  */
15249
- apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
15233
+ apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string | undefined, name?: string | undefined, slug?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
15250
15234
  /**
15251
15235
  *
15252
15236
  * @summary Get HospitalService.
@@ -15326,13 +15310,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
15326
15310
  * @param {string} [languageCode]
15327
15311
  * @param {Array<string>} [ids]
15328
15312
  * @param {boolean} [returnDefaultValue]
15313
+ * @param {boolean} [paymentEnabled]
15329
15314
  * @param {number} [page]
15330
15315
  * @param {number} [limit]
15331
15316
  * @param {Date} [lastRetrieved]
15332
15317
  * @param {*} [options] Override http request option.
15333
15318
  * @throws {RequiredError}
15334
15319
  */
15335
- apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
15320
+ apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
15336
15321
  /**
15337
15322
  *
15338
15323
  * @param {string} slug
@@ -15364,13 +15349,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15364
15349
  * @param {string} [languageCode]
15365
15350
  * @param {Array<string>} [ids]
15366
15351
  * @param {boolean} [returnDefaultValue]
15352
+ * @param {boolean} [paymentEnabled]
15367
15353
  * @param {number} [page]
15368
15354
  * @param {number} [limit]
15369
15355
  * @param {Date} [lastRetrieved]
15370
15356
  * @param {*} [options] Override http request option.
15371
15357
  * @throws {RequiredError}
15372
15358
  */
15373
- apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
15359
+ apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
15374
15360
  /**
15375
15361
  *
15376
15362
  * @summary Get HospitalAccreditation.
@@ -15525,25 +15511,25 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15525
15511
  *
15526
15512
  * @summary Get all HospitalSpecialties.
15527
15513
  * @param {string} hospitalId
15528
- * @param {string} [hospitalName]
15529
- * @param {string} [hospitalSlug]
15530
15514
  * @param {string} [specialtyId]
15531
15515
  * @param {string} [specialtyName]
15532
15516
  * @param {string} [specialtyTypeId]
15533
- * @param {string} [hospitalSpecialtySlug]
15534
- * @param {string} [title]
15517
+ * @param {string} [specialtyTypeName]
15518
+ * @param {string} [hospitalSpecialtyId]
15519
+ * @param {string} [name]
15520
+ * @param {string} [slug]
15535
15521
  * @param {MarketingType} [marketingType]
15536
- * @param {string} [languageCode]
15537
- * @param {boolean} [showHidden]
15538
15522
  * @param {boolean} [returnDefaultValue]
15539
15523
  * @param {boolean} [includeServices]
15524
+ * @param {string} [languageCode]
15525
+ * @param {boolean} [showHidden]
15540
15526
  * @param {number} [page]
15541
15527
  * @param {number} [limit]
15542
15528
  * @param {Date} [lastRetrieved]
15543
15529
  * @param {*} [options] Override http request option.
15544
15530
  * @throws {RequiredError}
15545
15531
  */
15546
- apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
15532
+ 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>;
15547
15533
  /**
15548
15534
  *
15549
15535
  * @summary Get all HospitalServiceMedias.
@@ -15572,25 +15558,37 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15572
15558
  *
15573
15559
  * @summary Get all HospitalSpecialties.
15574
15560
  * @param {string} hospitalId
15575
- * @param {string} [hospitalName]
15576
- * @param {string} [hospitalSlug]
15577
15561
  * @param {string} [specialtyId]
15578
15562
  * @param {string} [specialtyName]
15579
15563
  * @param {string} [specialtyTypeId]
15580
- * @param {string} [hospitalSpecialtySlug]
15581
- * @param {string} [title]
15564
+ * @param {string} [specialtyTypeName]
15565
+ * @param {string} [hospitalSpecialtyId]
15566
+ * @param {string} [name]
15567
+ * @param {string} [slug]
15582
15568
  * @param {MarketingType} [marketingType]
15583
- * @param {string} [languageCode]
15584
- * @param {boolean} [showHidden]
15585
15569
  * @param {boolean} [returnDefaultValue]
15586
15570
  * @param {boolean} [includeServices]
15571
+ * @param {string} [languageCode]
15572
+ * @param {boolean} [showHidden]
15587
15573
  * @param {number} [page]
15588
15574
  * @param {number} [limit]
15589
15575
  * @param {Date} [lastRetrieved]
15590
15576
  * @param {*} [options] Override http request option.
15591
15577
  * @throws {RequiredError}
15592
15578
  */
15593
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
15579
+ 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>;
15580
+ /**
15581
+ *
15582
+ * @summary Get HospitalSpecialty by slug.
15583
+ * @param {string} hospitalId
15584
+ * @param {string} slug
15585
+ * @param {string} [languageCode]
15586
+ * @param {boolean} [returnDefaultValue]
15587
+ * @param {boolean} [includeServices]
15588
+ * @param {*} [options] Override http request option.
15589
+ * @throws {RequiredError}
15590
+ */
15591
+ apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
15594
15592
  /**
15595
15593
  *
15596
15594
  * @summary Get HospitalSpecialty.
@@ -15608,14 +15606,9 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15608
15606
  * @summary Get all HospitalServices.
15609
15607
  * @param {string} hospitalId
15610
15608
  * @param {string} specialtyId
15611
- * @param {string} [hospitalName]
15612
- * @param {string} [hospitalSlug]
15613
15609
  * @param {string} [id]
15614
15610
  * @param {string} [name]
15615
- * @param {string} [description]
15616
- * @param {string} [specialtyName]
15617
- * @param {string} [specialtyTypeId]
15618
- * @param {string} [specialtyTypeName]
15611
+ * @param {string} [slug]
15619
15612
  * @param {string} [serviceCategoryId]
15620
15613
  * @param {MarketingType} [marketingType]
15621
15614
  * @param {Procedure} [procedure]
@@ -15628,7 +15621,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15628
15621
  * @param {*} [options] Override http request option.
15629
15622
  * @throws {RequiredError}
15630
15623
  */
15631
- apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
15624
+ apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string | undefined, name?: string | undefined, slug?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
15632
15625
  /**
15633
15626
  *
15634
15627
  * @summary Get HospitalService.
@@ -15708,13 +15701,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15708
15701
  * @param {string} [languageCode]
15709
15702
  * @param {Array<string>} [ids]
15710
15703
  * @param {boolean} [returnDefaultValue]
15704
+ * @param {boolean} [paymentEnabled]
15711
15705
  * @param {number} [page]
15712
15706
  * @param {number} [limit]
15713
15707
  * @param {Date} [lastRetrieved]
15714
15708
  * @param {*} [options] Override http request option.
15715
15709
  * @throws {RequiredError}
15716
15710
  */
15717
- apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
15711
+ apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
15718
15712
  /**
15719
15713
  *
15720
15714
  * @param {string} slug
@@ -15748,6 +15742,7 @@ export declare class HospitalsApi extends BaseAPI {
15748
15742
  * @param {string} [languageCode]
15749
15743
  * @param {Array<string>} [ids]
15750
15744
  * @param {boolean} [returnDefaultValue]
15745
+ * @param {boolean} [paymentEnabled]
15751
15746
  * @param {number} [page]
15752
15747
  * @param {number} [limit]
15753
15748
  * @param {Date} [lastRetrieved]
@@ -15755,7 +15750,7 @@ export declare class HospitalsApi extends BaseAPI {
15755
15750
  * @throws {RequiredError}
15756
15751
  * @memberof HospitalsApi
15757
15752
  */
15758
- apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel, any>>;
15753
+ apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel, any>>;
15759
15754
  /**
15760
15755
  *
15761
15756
  * @summary Get HospitalAccreditation.
@@ -15923,18 +15918,18 @@ export declare class HospitalsApi extends BaseAPI {
15923
15918
  *
15924
15919
  * @summary Get all HospitalSpecialties.
15925
15920
  * @param {string} hospitalId
15926
- * @param {string} [hospitalName]
15927
- * @param {string} [hospitalSlug]
15928
15921
  * @param {string} [specialtyId]
15929
15922
  * @param {string} [specialtyName]
15930
15923
  * @param {string} [specialtyTypeId]
15931
- * @param {string} [hospitalSpecialtySlug]
15932
- * @param {string} [title]
15924
+ * @param {string} [specialtyTypeName]
15925
+ * @param {string} [hospitalSpecialtyId]
15926
+ * @param {string} [name]
15927
+ * @param {string} [slug]
15933
15928
  * @param {MarketingType} [marketingType]
15934
- * @param {string} [languageCode]
15935
- * @param {boolean} [showHidden]
15936
15929
  * @param {boolean} [returnDefaultValue]
15937
15930
  * @param {boolean} [includeServices]
15931
+ * @param {string} [languageCode]
15932
+ * @param {boolean} [showHidden]
15938
15933
  * @param {number} [page]
15939
15934
  * @param {number} [limit]
15940
15935
  * @param {Date} [lastRetrieved]
@@ -15942,7 +15937,7 @@ export declare class HospitalsApi extends BaseAPI {
15942
15937
  * @throws {RequiredError}
15943
15938
  * @memberof HospitalsApi
15944
15939
  */
15945
- apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
15940
+ 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>>;
15946
15941
  /**
15947
15942
  *
15948
15943
  * @summary Get all HospitalServiceMedias.
@@ -15973,18 +15968,18 @@ export declare class HospitalsApi extends BaseAPI {
15973
15968
  *
15974
15969
  * @summary Get all HospitalSpecialties.
15975
15970
  * @param {string} hospitalId
15976
- * @param {string} [hospitalName]
15977
- * @param {string} [hospitalSlug]
15978
15971
  * @param {string} [specialtyId]
15979
15972
  * @param {string} [specialtyName]
15980
15973
  * @param {string} [specialtyTypeId]
15981
- * @param {string} [hospitalSpecialtySlug]
15982
- * @param {string} [title]
15974
+ * @param {string} [specialtyTypeName]
15975
+ * @param {string} [hospitalSpecialtyId]
15976
+ * @param {string} [name]
15977
+ * @param {string} [slug]
15983
15978
  * @param {MarketingType} [marketingType]
15984
- * @param {string} [languageCode]
15985
- * @param {boolean} [showHidden]
15986
15979
  * @param {boolean} [returnDefaultValue]
15987
15980
  * @param {boolean} [includeServices]
15981
+ * @param {string} [languageCode]
15982
+ * @param {boolean} [showHidden]
15988
15983
  * @param {number} [page]
15989
15984
  * @param {number} [limit]
15990
15985
  * @param {Date} [lastRetrieved]
@@ -15992,7 +15987,20 @@ export declare class HospitalsApi extends BaseAPI {
15992
15987
  * @throws {RequiredError}
15993
15988
  * @memberof HospitalsApi
15994
15989
  */
15995
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel, any>>;
15990
+ 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>>;
15991
+ /**
15992
+ *
15993
+ * @summary Get HospitalSpecialty by slug.
15994
+ * @param {string} hospitalId
15995
+ * @param {string} slug
15996
+ * @param {string} [languageCode]
15997
+ * @param {boolean} [returnDefaultValue]
15998
+ * @param {boolean} [includeServices]
15999
+ * @param {*} [options] Override http request option.
16000
+ * @throws {RequiredError}
16001
+ * @memberof HospitalsApi
16002
+ */
16003
+ apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
15996
16004
  /**
15997
16005
  *
15998
16006
  * @summary Get HospitalSpecialty.
@@ -16011,14 +16019,9 @@ export declare class HospitalsApi extends BaseAPI {
16011
16019
  * @summary Get all HospitalServices.
16012
16020
  * @param {string} hospitalId
16013
16021
  * @param {string} specialtyId
16014
- * @param {string} [hospitalName]
16015
- * @param {string} [hospitalSlug]
16016
16022
  * @param {string} [id]
16017
16023
  * @param {string} [name]
16018
- * @param {string} [description]
16019
- * @param {string} [specialtyName]
16020
- * @param {string} [specialtyTypeId]
16021
- * @param {string} [specialtyTypeName]
16024
+ * @param {string} [slug]
16022
16025
  * @param {string} [serviceCategoryId]
16023
16026
  * @param {MarketingType} [marketingType]
16024
16027
  * @param {Procedure} [procedure]
@@ -16032,7 +16035,7 @@ export declare class HospitalsApi extends BaseAPI {
16032
16035
  * @throws {RequiredError}
16033
16036
  * @memberof HospitalsApi
16034
16037
  */
16035
- apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel, any>>;
16038
+ apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel, any>>;
16036
16039
  /**
16037
16040
  *
16038
16041
  * @summary Get HospitalService.
@@ -16117,6 +16120,7 @@ export declare class HospitalsApi extends BaseAPI {
16117
16120
  * @param {string} [languageCode]
16118
16121
  * @param {Array<string>} [ids]
16119
16122
  * @param {boolean} [returnDefaultValue]
16123
+ * @param {boolean} [paymentEnabled]
16120
16124
  * @param {number} [page]
16121
16125
  * @param {number} [limit]
16122
16126
  * @param {Date} [lastRetrieved]
@@ -16124,7 +16128,7 @@ export declare class HospitalsApi extends BaseAPI {
16124
16128
  * @throws {RequiredError}
16125
16129
  * @memberof HospitalsApi
16126
16130
  */
16127
- apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel, any>>;
16131
+ apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel, any>>;
16128
16132
  /**
16129
16133
  *
16130
16134
  * @param {string} slug
@@ -17646,12 +17650,10 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
17646
17650
  /**
17647
17651
  *
17648
17652
  * @param {string} serviceReviewId
17649
- * @param {string} [languageCode]
17650
- * @param {boolean} [returnDefaultValue]
17651
17653
  * @param {*} [options] Override http request option.
17652
17654
  * @throws {RequiredError}
17653
17655
  */
17654
- apiV2ServicereviewsServiceReviewIdGet: (serviceReviewId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17656
+ apiV2ServicereviewsServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17655
17657
  /**
17656
17658
  *
17657
17659
  * @summary Get all ServiceReviewMedias.
@@ -17757,12 +17759,10 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
17757
17759
  /**
17758
17760
  *
17759
17761
  * @param {string} serviceReviewId
17760
- * @param {string} [languageCode]
17761
- * @param {boolean} [returnDefaultValue]
17762
17762
  * @param {*} [options] Override http request option.
17763
17763
  * @throws {RequiredError}
17764
17764
  */
17765
- apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
17765
+ apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
17766
17766
  /**
17767
17767
  *
17768
17768
  * @summary Get all ServiceReviewMedias.
@@ -17868,12 +17868,10 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
17868
17868
  /**
17869
17869
  *
17870
17870
  * @param {string} serviceReviewId
17871
- * @param {string} [languageCode]
17872
- * @param {boolean} [returnDefaultValue]
17873
17871
  * @param {*} [options] Override http request option.
17874
17872
  * @throws {RequiredError}
17875
17873
  */
17876
- apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
17874
+ apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel>;
17877
17875
  /**
17878
17876
  *
17879
17877
  * @summary Get all ServiceReviewMedias.
@@ -17984,13 +17982,11 @@ export declare class ServiceReviewsApi extends BaseAPI {
17984
17982
  /**
17985
17983
  *
17986
17984
  * @param {string} serviceReviewId
17987
- * @param {string} [languageCode]
17988
- * @param {boolean} [returnDefaultValue]
17989
17985
  * @param {*} [options] Override http request option.
17990
17986
  * @throws {RequiredError}
17991
17987
  * @memberof ServiceReviewsApi
17992
17988
  */
17993
- apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel, any>>;
17989
+ apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel, any>>;
17994
17990
  /**
17995
17991
  *
17996
17992
  * @summary Get all ServiceReviewMedias.
@@ -18065,12 +18061,12 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
18065
18061
  /**
18066
18062
  *
18067
18063
  * @summary Get all HospitalServices.
18064
+ * @param {string} [id]
18065
+ * @param {string} [name]
18066
+ * @param {string} [slug]
18068
18067
  * @param {string} [hospitalId]
18069
18068
  * @param {string} [hospitalName]
18070
18069
  * @param {string} [hospitalSlug]
18071
- * @param {string} [id]
18072
- * @param {string} [name]
18073
- * @param {string} [description]
18074
18070
  * @param {string} [specialtyId]
18075
18071
  * @param {string} [specialtyName]
18076
18072
  * @param {string} [specialtyTypeId]
@@ -18087,7 +18083,7 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
18087
18083
  * @param {*} [options] Override http request option.
18088
18084
  * @throws {RequiredError}
18089
18085
  */
18090
- apiV2ServicesGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18086
+ apiV2ServicesGet: (id?: string | undefined, name?: string | undefined, slug?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18091
18087
  /**
18092
18088
  *
18093
18089
  * @param {string} serviceId
@@ -18115,12 +18111,12 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
18115
18111
  /**
18116
18112
  *
18117
18113
  * @summary Get all HospitalServices.
18114
+ * @param {string} [id]
18115
+ * @param {string} [name]
18116
+ * @param {string} [slug]
18118
18117
  * @param {string} [hospitalId]
18119
18118
  * @param {string} [hospitalName]
18120
18119
  * @param {string} [hospitalSlug]
18121
- * @param {string} [id]
18122
- * @param {string} [name]
18123
- * @param {string} [description]
18124
18120
  * @param {string} [specialtyId]
18125
18121
  * @param {string} [specialtyName]
18126
18122
  * @param {string} [specialtyTypeId]
@@ -18137,7 +18133,7 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
18137
18133
  * @param {*} [options] Override http request option.
18138
18134
  * @throws {RequiredError}
18139
18135
  */
18140
- apiV2ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
18136
+ apiV2ServicesGet(id?: string | undefined, name?: string | undefined, slug?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
18141
18137
  /**
18142
18138
  *
18143
18139
  * @param {string} serviceId
@@ -18165,12 +18161,12 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
18165
18161
  /**
18166
18162
  *
18167
18163
  * @summary Get all HospitalServices.
18164
+ * @param {string} [id]
18165
+ * @param {string} [name]
18166
+ * @param {string} [slug]
18168
18167
  * @param {string} [hospitalId]
18169
18168
  * @param {string} [hospitalName]
18170
18169
  * @param {string} [hospitalSlug]
18171
- * @param {string} [id]
18172
- * @param {string} [name]
18173
- * @param {string} [description]
18174
18170
  * @param {string} [specialtyId]
18175
18171
  * @param {string} [specialtyName]
18176
18172
  * @param {string} [specialtyTypeId]
@@ -18187,7 +18183,7 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
18187
18183
  * @param {*} [options] Override http request option.
18188
18184
  * @throws {RequiredError}
18189
18185
  */
18190
- apiV2ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
18186
+ apiV2ServicesGet(id?: string | undefined, name?: string | undefined, slug?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
18191
18187
  /**
18192
18188
  *
18193
18189
  * @param {string} serviceId
@@ -18217,12 +18213,12 @@ export declare class ServicesApi extends BaseAPI {
18217
18213
  /**
18218
18214
  *
18219
18215
  * @summary Get all HospitalServices.
18216
+ * @param {string} [id]
18217
+ * @param {string} [name]
18218
+ * @param {string} [slug]
18220
18219
  * @param {string} [hospitalId]
18221
18220
  * @param {string} [hospitalName]
18222
18221
  * @param {string} [hospitalSlug]
18223
- * @param {string} [id]
18224
- * @param {string} [name]
18225
- * @param {string} [description]
18226
18222
  * @param {string} [specialtyId]
18227
18223
  * @param {string} [specialtyName]
18228
18224
  * @param {string} [specialtyTypeId]
@@ -18240,7 +18236,7 @@ export declare class ServicesApi extends BaseAPI {
18240
18236
  * @throws {RequiredError}
18241
18237
  * @memberof ServicesApi
18242
18238
  */
18243
- apiV2ServicesGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel, any>>;
18239
+ apiV2ServicesGet(id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel, any>>;
18244
18240
  /**
18245
18241
  *
18246
18242
  * @param {string} serviceId
@@ -18728,9 +18724,10 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
18728
18724
  * @param {MarketingType} [marketingType]
18729
18725
  * @param {string} [hospitalId]
18730
18726
  * @param {Date} [created]
18731
- * @param {string} [languageCode]
18732
18727
  * @param {Array<string>} [ids]
18733
18728
  * @param {string} [specialtyTypeCategoryId]
18729
+ * @param {string} [languageCode]
18730
+ * @param {boolean} [showHidden]
18734
18731
  * @param {boolean} [returnDefaultValue]
18735
18732
  * @param {number} [page]
18736
18733
  * @param {number} [limit]
@@ -18738,7 +18735,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
18738
18735
  * @param {*} [options] Override http request option.
18739
18736
  * @throws {RequiredError}
18740
18737
  */
18741
- apiV2SpecialtytypesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18738
+ apiV2SpecialtytypesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18742
18739
  /**
18743
18740
  *
18744
18741
  * @summary Get all Hospitals.
@@ -18748,9 +18745,10 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
18748
18745
  * @param {MarketingType} [marketingType]
18749
18746
  * @param {string} [hospitalId]
18750
18747
  * @param {Date} [created]
18751
- * @param {string} [languageCode]
18752
18748
  * @param {Array<string>} [ids]
18753
18749
  * @param {string} [specialtyTypeCategoryId]
18750
+ * @param {string} [languageCode]
18751
+ * @param {boolean} [showHidden]
18754
18752
  * @param {boolean} [returnDefaultValue]
18755
18753
  * @param {number} [page]
18756
18754
  * @param {number} [limit]
@@ -18758,7 +18756,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
18758
18756
  * @param {*} [options] Override http request option.
18759
18757
  * @throws {RequiredError}
18760
18758
  */
18761
- apiV2SpecialtytypesSimpleGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18759
+ apiV2SpecialtytypesSimpleGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18762
18760
  /**
18763
18761
  *
18764
18762
  * @param {string} slug
@@ -18814,9 +18812,10 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
18814
18812
  * @param {MarketingType} [marketingType]
18815
18813
  * @param {string} [hospitalId]
18816
18814
  * @param {Date} [created]
18817
- * @param {string} [languageCode]
18818
18815
  * @param {Array<string>} [ids]
18819
18816
  * @param {string} [specialtyTypeCategoryId]
18817
+ * @param {string} [languageCode]
18818
+ * @param {boolean} [showHidden]
18820
18819
  * @param {boolean} [returnDefaultValue]
18821
18820
  * @param {number} [page]
18822
18821
  * @param {number} [limit]
@@ -18824,7 +18823,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
18824
18823
  * @param {*} [options] Override http request option.
18825
18824
  * @throws {RequiredError}
18826
18825
  */
18827
- apiV2SpecialtytypesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesModel>>;
18826
+ apiV2SpecialtytypesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesModel>>;
18828
18827
  /**
18829
18828
  *
18830
18829
  * @summary Get all Hospitals.
@@ -18834,9 +18833,10 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
18834
18833
  * @param {MarketingType} [marketingType]
18835
18834
  * @param {string} [hospitalId]
18836
18835
  * @param {Date} [created]
18837
- * @param {string} [languageCode]
18838
18836
  * @param {Array<string>} [ids]
18839
18837
  * @param {string} [specialtyTypeCategoryId]
18838
+ * @param {string} [languageCode]
18839
+ * @param {boolean} [showHidden]
18840
18840
  * @param {boolean} [returnDefaultValue]
18841
18841
  * @param {number} [page]
18842
18842
  * @param {number} [limit]
@@ -18844,7 +18844,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
18844
18844
  * @param {*} [options] Override http request option.
18845
18845
  * @throws {RequiredError}
18846
18846
  */
18847
- apiV2SpecialtytypesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesSimpleModel>>;
18847
+ apiV2SpecialtytypesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesSimpleModel>>;
18848
18848
  /**
18849
18849
  *
18850
18850
  * @param {string} slug
@@ -18900,9 +18900,10 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
18900
18900
  * @param {MarketingType} [marketingType]
18901
18901
  * @param {string} [hospitalId]
18902
18902
  * @param {Date} [created]
18903
- * @param {string} [languageCode]
18904
18903
  * @param {Array<string>} [ids]
18905
18904
  * @param {string} [specialtyTypeCategoryId]
18905
+ * @param {string} [languageCode]
18906
+ * @param {boolean} [showHidden]
18906
18907
  * @param {boolean} [returnDefaultValue]
18907
18908
  * @param {number} [page]
18908
18909
  * @param {number} [limit]
@@ -18910,7 +18911,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
18910
18911
  * @param {*} [options] Override http request option.
18911
18912
  * @throws {RequiredError}
18912
18913
  */
18913
- apiV2SpecialtytypesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesModel>;
18914
+ apiV2SpecialtytypesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesModel>;
18914
18915
  /**
18915
18916
  *
18916
18917
  * @summary Get all Hospitals.
@@ -18920,9 +18921,10 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
18920
18921
  * @param {MarketingType} [marketingType]
18921
18922
  * @param {string} [hospitalId]
18922
18923
  * @param {Date} [created]
18923
- * @param {string} [languageCode]
18924
18924
  * @param {Array<string>} [ids]
18925
18925
  * @param {string} [specialtyTypeCategoryId]
18926
+ * @param {string} [languageCode]
18927
+ * @param {boolean} [showHidden]
18926
18928
  * @param {boolean} [returnDefaultValue]
18927
18929
  * @param {number} [page]
18928
18930
  * @param {number} [limit]
@@ -18930,7 +18932,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
18930
18932
  * @param {*} [options] Override http request option.
18931
18933
  * @throws {RequiredError}
18932
18934
  */
18933
- apiV2SpecialtytypesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesSimpleModel>;
18935
+ apiV2SpecialtytypesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesSimpleModel>;
18934
18936
  /**
18935
18937
  *
18936
18938
  * @param {string} slug
@@ -18988,9 +18990,10 @@ export declare class SpecialtyTypesApi extends BaseAPI {
18988
18990
  * @param {MarketingType} [marketingType]
18989
18991
  * @param {string} [hospitalId]
18990
18992
  * @param {Date} [created]
18991
- * @param {string} [languageCode]
18992
18993
  * @param {Array<string>} [ids]
18993
18994
  * @param {string} [specialtyTypeCategoryId]
18995
+ * @param {string} [languageCode]
18996
+ * @param {boolean} [showHidden]
18994
18997
  * @param {boolean} [returnDefaultValue]
18995
18998
  * @param {number} [page]
18996
18999
  * @param {number} [limit]
@@ -18999,7 +19002,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
18999
19002
  * @throws {RequiredError}
19000
19003
  * @memberof SpecialtyTypesApi
19001
19004
  */
19002
- apiV2SpecialtytypesGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, specialtyTypeCategoryId?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesModel, any>>;
19005
+ apiV2SpecialtytypesGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, ids?: Array<string>, specialtyTypeCategoryId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesModel, any>>;
19003
19006
  /**
19004
19007
  *
19005
19008
  * @summary Get all Hospitals.
@@ -19009,9 +19012,10 @@ export declare class SpecialtyTypesApi extends BaseAPI {
19009
19012
  * @param {MarketingType} [marketingType]
19010
19013
  * @param {string} [hospitalId]
19011
19014
  * @param {Date} [created]
19012
- * @param {string} [languageCode]
19013
19015
  * @param {Array<string>} [ids]
19014
19016
  * @param {string} [specialtyTypeCategoryId]
19017
+ * @param {string} [languageCode]
19018
+ * @param {boolean} [showHidden]
19015
19019
  * @param {boolean} [returnDefaultValue]
19016
19020
  * @param {number} [page]
19017
19021
  * @param {number} [limit]
@@ -19020,7 +19024,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
19020
19024
  * @throws {RequiredError}
19021
19025
  * @memberof SpecialtyTypesApi
19022
19026
  */
19023
- apiV2SpecialtytypesSimpleGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, specialtyTypeCategoryId?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesSimpleModel, any>>;
19027
+ apiV2SpecialtytypesSimpleGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, ids?: Array<string>, specialtyTypeCategoryId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesSimpleModel, any>>;
19024
19028
  /**
19025
19029
  *
19026
19030
  * @param {string} slug