ch-api-client-typescript2 3.2.2 → 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 +1008 -1058
  2. package/lib/api.d.ts.map +1 -1
  3. package/lib/api.js +714 -585
  4. package/package.json +1 -1
  5. package/src/api.ts +1399 -1377
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
4923
- */
4924
- 'body'?: string | null;
4925
- /**
4926
- *
4927
- * @type {boolean}
4928
- * @memberof DoctorReviewItemModel
4741
+ * @memberof DoctorSimpleItemModel
4929
4742
  */
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}
5413
5249
  * @memberof FaqModel
5414
5250
  */
5415
- 'categories'?: Array<FaqCategoryBreadCrumbModel> | null;
5251
+ 'content'?: string | null;
5252
+ /**
5253
+ *
5254
+ * @type {Array<LocalizedUrlModel>}
5255
+ * @memberof FaqModel
5256
+ */
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
  *
@@ -5526,55 +5437,6 @@ export interface HospitalAccreditationsModel {
5526
5437
  */
5527
5438
  'metaData'?: PagedListMetaData;
5528
5439
  }
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;
5559
- /**
5560
- *
5561
- * @type {string}
5562
- * @memberof HospitalAffiliationModel
5563
- */
5564
- 'countryName'?: string | null;
5565
- /**
5566
- *
5567
- * @type {string}
5568
- * @memberof HospitalAffiliationModel
5569
- */
5570
- 'stateName'?: string | null;
5571
- /**
5572
- *
5573
- * @type {string}
5574
- * @memberof HospitalAffiliationModel
5575
- */
5576
- 'cityName'?: string | null;
5577
- }
5578
5440
  /**
5579
5441
  *
5580
5442
  * @export
@@ -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
  *
@@ -6079,25 +5929,13 @@ export interface HospitalModel {
6079
5929
  * @type {string}
6080
5930
  * @memberof HospitalModel
6081
5931
  */
6082
- 'logo'?: string | null;
6083
- /**
6084
- *
6085
- * @type {string}
6086
- * @memberof HospitalModel
6087
- */
6088
- 'overview'?: string | null;
6089
- /**
6090
- *
6091
- * @type {string}
6092
- * @memberof HospitalModel
6093
- */
6094
- 'content'?: string | null;
5932
+ 'logo'?: string | null;
6095
5933
  /**
6096
5934
  *
6097
5935
  * @type {string}
6098
5936
  * @memberof HospitalModel
6099
5937
  */
6100
- 'customStyle'?: string | null;
5938
+ 'overview'?: 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}
7067
6881
  * @memberof HospitalSpecialtyModel
7068
6882
  */
7069
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6883
+ 'order'?: number;
6884
+ /**
6885
+ *
6886
+ * @type {boolean}
6887
+ * @memberof HospitalSpecialtyModel
6888
+ */
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}
@@ -9279,6 +9100,18 @@ export interface SpecialtyTypeItemModel {
9279
9100
  * @memberof SpecialtyTypeItemModel
9280
9101
  */
9281
9102
  'confirmed'?: boolean;
9103
+ /**
9104
+ *
9105
+ * @type {Array<MediaModel>}
9106
+ * @memberof SpecialtyTypeItemModel
9107
+ */
9108
+ 'medias'?: Array<MediaModel> | null;
9109
+ /**
9110
+ *
9111
+ * @type {AuditableEntity}
9112
+ * @memberof SpecialtyTypeItemModel
9113
+ */
9114
+ 'auditableEntity'?: AuditableEntity;
9282
9115
  }
9283
9116
  /**
9284
9117
  *
@@ -9310,12 +9143,6 @@ export interface SpecialtyTypeModel {
9310
9143
  * @memberof SpecialtyTypeModel
9311
9144
  */
9312
9145
  'description'?: string | null;
9313
- /**
9314
- *
9315
- * @type {string}
9316
- * @memberof SpecialtyTypeModel
9317
- */
9318
- 'content'?: string | null;
9319
9146
  /**
9320
9147
  *
9321
9148
  * @type {MarketingType}
@@ -9352,12 +9179,36 @@ export interface SpecialtyTypeModel {
9352
9179
  * @memberof SpecialtyTypeModel
9353
9180
  */
9354
9181
  'confirmed'?: boolean;
9182
+ /**
9183
+ *
9184
+ * @type {Array<MediaModel>}
9185
+ * @memberof SpecialtyTypeModel
9186
+ */
9187
+ 'medias'?: Array<MediaModel> | null;
9188
+ /**
9189
+ *
9190
+ * @type {AuditableEntity}
9191
+ * @memberof SpecialtyTypeModel
9192
+ */
9193
+ 'auditableEntity'?: AuditableEntity;
9355
9194
  /**
9356
9195
  *
9357
9196
  * @type {string}
9358
9197
  * @memberof SpecialtyTypeModel
9359
9198
  */
9360
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;
9361
9212
  }
9362
9213
  /**
9363
9214
  *
@@ -9377,6 +9228,12 @@ export interface SpecialtyTypeSimpleItemModel {
9377
9228
  * @memberof SpecialtyTypeSimpleItemModel
9378
9229
  */
9379
9230
  'name'?: string | null;
9231
+ /**
9232
+ *
9233
+ * @type {string}
9234
+ * @memberof SpecialtyTypeSimpleItemModel
9235
+ */
9236
+ 'slug'?: string | null;
9380
9237
  /**
9381
9238
  *
9382
9239
  * @type {boolean}
@@ -10037,19 +9894,19 @@ export interface UserModel {
10037
9894
  * @type {string}
10038
9895
  * @memberof UserModel
10039
9896
  */
10040
- 'userType'?: string | null;
9897
+ 'userName'?: string | null;
10041
9898
  /**
10042
9899
  *
10043
9900
  * @type {string}
10044
9901
  * @memberof UserModel
10045
9902
  */
10046
- 'userName'?: string | null;
9903
+ 'firstName'?: string | null;
10047
9904
  /**
10048
9905
  *
10049
9906
  * @type {string}
10050
9907
  * @memberof UserModel
10051
9908
  */
10052
- 'firstName'?: string | null;
9909
+ 'middleName'?: string | null;
10053
9910
  /**
10054
9911
  *
10055
9912
  * @type {string}
@@ -10061,7 +9918,13 @@ export interface UserModel {
10061
9918
  * @type {string}
10062
9919
  * @memberof UserModel
10063
9920
  */
10064
- 'fullname'?: string | null;
9921
+ 'fullName'?: string | null;
9922
+ /**
9923
+ *
9924
+ * @type {string}
9925
+ * @memberof UserModel
9926
+ */
9927
+ 'slug'?: string | null;
10065
9928
  /**
10066
9929
  *
10067
9930
  * @type {string}
@@ -10116,6 +9979,12 @@ export interface UserModel {
10116
9979
  * @memberof UserModel
10117
9980
  */
10118
9981
  'auditableEntity'?: AuditableEntity;
9982
+ /**
9983
+ *
9984
+ * @type {string}
9985
+ * @memberof UserModel
9986
+ */
9987
+ 'userType'?: string | null;
10119
9988
  /**
10120
9989
  *
10121
9990
  * @type {Array<UserLanguageModel>}
@@ -10270,13 +10139,7 @@ export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration
10270
10139
  * @param {string} [hospitalId]
10271
10140
  * @param {string} [hospitalName]
10272
10141
  * @param {string} [hospitalSlug]
10273
- * @param {string} [overviewTitle]
10274
- * @param {string} [normalizedOverviewTitle]
10275
- * @param {string} [overview]
10276
- * @param {string} [content]
10277
- * @param {string} [customStyle]
10278
- * @param {string} [background]
10279
- * @param {string} [backgroundThumbnail]
10142
+ * @param {string} [name]
10280
10143
  * @param {string} [languageCode]
10281
10144
  * @param {boolean} [returnDefaultValue]
10282
10145
  * @param {boolean} [confirmed]
@@ -10286,7 +10149,7 @@ export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration
10286
10149
  * @param {*} [options] Override http request option.
10287
10150
  * @throws {RequiredError}
10288
10151
  */
10289
- 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>;
10290
10153
  /**
10291
10154
  *
10292
10155
  * @summary Get AboutUs.
@@ -10318,13 +10181,7 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
10318
10181
  * @param {string} [hospitalId]
10319
10182
  * @param {string} [hospitalName]
10320
10183
  * @param {string} [hospitalSlug]
10321
- * @param {string} [overviewTitle]
10322
- * @param {string} [normalizedOverviewTitle]
10323
- * @param {string} [overview]
10324
- * @param {string} [content]
10325
- * @param {string} [customStyle]
10326
- * @param {string} [background]
10327
- * @param {string} [backgroundThumbnail]
10184
+ * @param {string} [name]
10328
10185
  * @param {string} [languageCode]
10329
10186
  * @param {boolean} [returnDefaultValue]
10330
10187
  * @param {boolean} [confirmed]
@@ -10334,7 +10191,7 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
10334
10191
  * @param {*} [options] Override http request option.
10335
10192
  * @throws {RequiredError}
10336
10193
  */
10337
- 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>>;
10338
10195
  /**
10339
10196
  *
10340
10197
  * @summary Get AboutUs.
@@ -10366,13 +10223,7 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
10366
10223
  * @param {string} [hospitalId]
10367
10224
  * @param {string} [hospitalName]
10368
10225
  * @param {string} [hospitalSlug]
10369
- * @param {string} [overviewTitle]
10370
- * @param {string} [normalizedOverviewTitle]
10371
- * @param {string} [overview]
10372
- * @param {string} [content]
10373
- * @param {string} [customStyle]
10374
- * @param {string} [background]
10375
- * @param {string} [backgroundThumbnail]
10226
+ * @param {string} [name]
10376
10227
  * @param {string} [languageCode]
10377
10228
  * @param {boolean} [returnDefaultValue]
10378
10229
  * @param {boolean} [confirmed]
@@ -10382,7 +10233,7 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
10382
10233
  * @param {*} [options] Override http request option.
10383
10234
  * @throws {RequiredError}
10384
10235
  */
10385
- 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>;
10386
10237
  /**
10387
10238
  *
10388
10239
  * @summary Get AboutUs.
@@ -10416,13 +10267,7 @@ export declare class AboutUsApi extends BaseAPI {
10416
10267
  * @param {string} [hospitalId]
10417
10268
  * @param {string} [hospitalName]
10418
10269
  * @param {string} [hospitalSlug]
10419
- * @param {string} [overviewTitle]
10420
- * @param {string} [normalizedOverviewTitle]
10421
- * @param {string} [overview]
10422
- * @param {string} [content]
10423
- * @param {string} [customStyle]
10424
- * @param {string} [background]
10425
- * @param {string} [backgroundThumbnail]
10270
+ * @param {string} [name]
10426
10271
  * @param {string} [languageCode]
10427
10272
  * @param {boolean} [returnDefaultValue]
10428
10273
  * @param {boolean} [confirmed]
@@ -10433,7 +10278,7 @@ export declare class AboutUsApi extends BaseAPI {
10433
10278
  * @throws {RequiredError}
10434
10279
  * @memberof AboutUsApi
10435
10280
  */
10436
- 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>>;
10437
10282
  /**
10438
10283
  *
10439
10284
  * @summary Get AboutUs.
@@ -10590,16 +10435,17 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
10590
10435
  * @param {string} [contributorId]
10591
10436
  * @param {string} [contributorName]
10592
10437
  * @param {string} [email]
10593
- * @param {string} [description]
10594
10438
  * @param {string} [website]
10595
10439
  * @param {ContributionType} [contributionType]
10440
+ * @param {string} [languageCode]
10441
+ * @param {boolean} [showHidden]
10596
10442
  * @param {number} [page]
10597
10443
  * @param {number} [limit]
10598
10444
  * @param {Date} [lastRetrieved]
10599
10445
  * @param {*} [options] Override http request option.
10600
10446
  * @throws {RequiredError}
10601
10447
  */
10602
- 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>;
10603
10449
  /**
10604
10450
  *
10605
10451
  * @summary Get Article.
@@ -10677,7 +10523,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
10677
10523
  *
10678
10524
  * @summary Get all Articles.
10679
10525
  * @param {string} [id]
10680
- * @param {string} [title]
10526
+ * @param {string} [name]
10681
10527
  * @param {string} [description]
10682
10528
  * @param {ArticleStatus} [status]
10683
10529
  * @param {MarketingType} [marketingType]
@@ -10699,7 +10545,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
10699
10545
  * @param {*} [options] Override http request option.
10700
10546
  * @throws {RequiredError}
10701
10547
  */
10702
- 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>;
10703
10549
  /**
10704
10550
  *
10705
10551
  * @param {string} slug
@@ -10732,16 +10578,17 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
10732
10578
  * @param {string} [contributorId]
10733
10579
  * @param {string} [contributorName]
10734
10580
  * @param {string} [email]
10735
- * @param {string} [description]
10736
10581
  * @param {string} [website]
10737
10582
  * @param {ContributionType} [contributionType]
10583
+ * @param {string} [languageCode]
10584
+ * @param {boolean} [showHidden]
10738
10585
  * @param {number} [page]
10739
10586
  * @param {number} [limit]
10740
10587
  * @param {Date} [lastRetrieved]
10741
10588
  * @param {*} [options] Override http request option.
10742
10589
  * @throws {RequiredError}
10743
10590
  */
10744
- 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>>;
10745
10592
  /**
10746
10593
  *
10747
10594
  * @summary Get Article.
@@ -10819,7 +10666,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
10819
10666
  *
10820
10667
  * @summary Get all Articles.
10821
10668
  * @param {string} [id]
10822
- * @param {string} [title]
10669
+ * @param {string} [name]
10823
10670
  * @param {string} [description]
10824
10671
  * @param {ArticleStatus} [status]
10825
10672
  * @param {MarketingType} [marketingType]
@@ -10841,7 +10688,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
10841
10688
  * @param {*} [options] Override http request option.
10842
10689
  * @throws {RequiredError}
10843
10690
  */
10844
- 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>>;
10845
10692
  /**
10846
10693
  *
10847
10694
  * @param {string} slug
@@ -10874,16 +10721,17 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
10874
10721
  * @param {string} [contributorId]
10875
10722
  * @param {string} [contributorName]
10876
10723
  * @param {string} [email]
10877
- * @param {string} [description]
10878
10724
  * @param {string} [website]
10879
10725
  * @param {ContributionType} [contributionType]
10726
+ * @param {string} [languageCode]
10727
+ * @param {boolean} [showHidden]
10880
10728
  * @param {number} [page]
10881
10729
  * @param {number} [limit]
10882
10730
  * @param {Date} [lastRetrieved]
10883
10731
  * @param {*} [options] Override http request option.
10884
10732
  * @throws {RequiredError}
10885
10733
  */
10886
- 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>;
10887
10735
  /**
10888
10736
  *
10889
10737
  * @summary Get Article.
@@ -10961,7 +10809,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
10961
10809
  *
10962
10810
  * @summary Get all Articles.
10963
10811
  * @param {string} [id]
10964
- * @param {string} [title]
10812
+ * @param {string} [name]
10965
10813
  * @param {string} [description]
10966
10814
  * @param {ArticleStatus} [status]
10967
10815
  * @param {MarketingType} [marketingType]
@@ -10983,7 +10831,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
10983
10831
  * @param {*} [options] Override http request option.
10984
10832
  * @throws {RequiredError}
10985
10833
  */
10986
- 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>;
10987
10835
  /**
10988
10836
  *
10989
10837
  * @param {string} slug
@@ -11019,9 +10867,10 @@ export declare class ArticlesApi extends BaseAPI {
11019
10867
  * @param {string} [contributorId]
11020
10868
  * @param {string} [contributorName]
11021
10869
  * @param {string} [email]
11022
- * @param {string} [description]
11023
10870
  * @param {string} [website]
11024
10871
  * @param {ContributionType} [contributionType]
10872
+ * @param {string} [languageCode]
10873
+ * @param {boolean} [showHidden]
11025
10874
  * @param {number} [page]
11026
10875
  * @param {number} [limit]
11027
10876
  * @param {Date} [lastRetrieved]
@@ -11029,7 +10878,7 @@ export declare class ArticlesApi extends BaseAPI {
11029
10878
  * @throws {RequiredError}
11030
10879
  * @memberof ArticlesApi
11031
10880
  */
11032
- 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>>;
11033
10882
  /**
11034
10883
  *
11035
10884
  * @summary Get Article.
@@ -11114,7 +10963,7 @@ export declare class ArticlesApi extends BaseAPI {
11114
10963
  *
11115
10964
  * @summary Get all Articles.
11116
10965
  * @param {string} [id]
11117
- * @param {string} [title]
10966
+ * @param {string} [name]
11118
10967
  * @param {string} [description]
11119
10968
  * @param {ArticleStatus} [status]
11120
10969
  * @param {MarketingType} [marketingType]
@@ -11137,7 +10986,7 @@ export declare class ArticlesApi extends BaseAPI {
11137
10986
  * @throws {RequiredError}
11138
10987
  * @memberof ArticlesApi
11139
10988
  */
11140
- 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>>;
11141
10990
  /**
11142
10991
  *
11143
10992
  * @param {string} slug
@@ -11162,14 +11011,6 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
11162
11011
  * @throws {RequiredError}
11163
11012
  */
11164
11013
  apiV2BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11165
- /**
11166
- *
11167
- * @summary Mark as Paid booking.
11168
- * @param {string} bookingId
11169
- * @param {*} [options] Override http request option.
11170
- * @throws {RequiredError}
11171
- */
11172
- apiV2BookingsBookingIdPaidPost: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11173
11014
  /**
11174
11015
  *
11175
11016
  * @summary Pay booking.
@@ -11226,14 +11067,6 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
11226
11067
  * @throws {RequiredError}
11227
11068
  */
11228
11069
  apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
11229
- /**
11230
- *
11231
- * @summary Mark as Paid booking.
11232
- * @param {string} bookingId
11233
- * @param {*} [options] Override http request option.
11234
- * @throws {RequiredError}
11235
- */
11236
- apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
11237
11070
  /**
11238
11071
  *
11239
11072
  * @summary Pay booking.
@@ -11290,14 +11123,6 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
11290
11123
  * @throws {RequiredError}
11291
11124
  */
11292
11125
  apiV2BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
11293
- /**
11294
- *
11295
- * @summary Mark as Paid booking.
11296
- * @param {string} bookingId
11297
- * @param {*} [options] Override http request option.
11298
- * @throws {RequiredError}
11299
- */
11300
- apiV2BookingsBookingIdPaidPost(bookingId: string, options?: any): AxiosPromise<string>;
11301
11126
  /**
11302
11127
  *
11303
11128
  * @summary Pay booking.
@@ -11357,15 +11182,6 @@ export declare class BookingsApi extends BaseAPI {
11357
11182
  * @memberof BookingsApi
11358
11183
  */
11359
11184
  apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
11360
- /**
11361
- *
11362
- * @summary Mark as Paid booking.
11363
- * @param {string} bookingId
11364
- * @param {*} [options] Override http request option.
11365
- * @throws {RequiredError}
11366
- * @memberof BookingsApi
11367
- */
11368
- apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
11369
11185
  /**
11370
11186
  *
11371
11187
  * @summary Pay booking.
@@ -11775,14 +11591,6 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
11775
11591
  * @throws {RequiredError}
11776
11592
  */
11777
11593
  apiV2ConsultationsConsultationIdGet: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11778
- /**
11779
- *
11780
- * @summary Mark as Paid booking.
11781
- * @param {string} consultationId
11782
- * @param {*} [options] Override http request option.
11783
- * @throws {RequiredError}
11784
- */
11785
- apiV2ConsultationsConsultationIdPaidPost: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11786
11594
  /**
11787
11595
  *
11788
11596
  * @summary Pay consultation.
@@ -11839,14 +11647,6 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
11839
11647
  * @throws {RequiredError}
11840
11648
  */
11841
11649
  apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
11842
- /**
11843
- *
11844
- * @summary Mark as Paid booking.
11845
- * @param {string} consultationId
11846
- * @param {*} [options] Override http request option.
11847
- * @throws {RequiredError}
11848
- */
11849
- apiV2ConsultationsConsultationIdPaidPost(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
11850
11650
  /**
11851
11651
  *
11852
11652
  * @summary Pay consultation.
@@ -11903,14 +11703,6 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
11903
11703
  * @throws {RequiredError}
11904
11704
  */
11905
11705
  apiV2ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel>;
11906
- /**
11907
- *
11908
- * @summary Mark as Paid booking.
11909
- * @param {string} consultationId
11910
- * @param {*} [options] Override http request option.
11911
- * @throws {RequiredError}
11912
- */
11913
- apiV2ConsultationsConsultationIdPaidPost(consultationId: string, options?: any): AxiosPromise<string>;
11914
11706
  /**
11915
11707
  *
11916
11708
  * @summary Pay consultation.
@@ -11970,15 +11762,6 @@ export declare class ConsultationsApi extends BaseAPI {
11970
11762
  * @memberof ConsultationsApi
11971
11763
  */
11972
11764
  apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel, any>>;
11973
- /**
11974
- *
11975
- * @summary Mark as Paid booking.
11976
- * @param {string} consultationId
11977
- * @param {*} [options] Override http request option.
11978
- * @throws {RequiredError}
11979
- * @memberof ConsultationsApi
11980
- */
11981
- apiV2ConsultationsConsultationIdPaidPost(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
11982
11765
  /**
11983
11766
  *
11984
11767
  * @summary Pay consultation.
@@ -12071,7 +11854,6 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
12071
11854
  * @param {string} [id]
12072
11855
  * @param {string} [name]
12073
11856
  * @param {string} [email]
12074
- * @param {string} [description]
12075
11857
  * @param {string} [website]
12076
11858
  * @param {string} [hospitalId]
12077
11859
  * @param {boolean} [interviewerOnly]
@@ -12084,7 +11866,7 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
12084
11866
  * @param {*} [options] Override http request option.
12085
11867
  * @throws {RequiredError}
12086
11868
  */
12087
- 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>;
12088
11870
  /**
12089
11871
  *
12090
11872
  * @summary Get Contributor by slug.
@@ -12141,7 +11923,6 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
12141
11923
  * @param {string} [id]
12142
11924
  * @param {string} [name]
12143
11925
  * @param {string} [email]
12144
- * @param {string} [description]
12145
11926
  * @param {string} [website]
12146
11927
  * @param {string} [hospitalId]
12147
11928
  * @param {boolean} [interviewerOnly]
@@ -12154,7 +11935,7 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
12154
11935
  * @param {*} [options] Override http request option.
12155
11936
  * @throws {RequiredError}
12156
11937
  */
12157
- 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>>;
12158
11939
  /**
12159
11940
  *
12160
11941
  * @summary Get Contributor by slug.
@@ -12211,7 +11992,6 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
12211
11992
  * @param {string} [id]
12212
11993
  * @param {string} [name]
12213
11994
  * @param {string} [email]
12214
- * @param {string} [description]
12215
11995
  * @param {string} [website]
12216
11996
  * @param {string} [hospitalId]
12217
11997
  * @param {boolean} [interviewerOnly]
@@ -12224,7 +12004,7 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
12224
12004
  * @param {*} [options] Override http request option.
12225
12005
  * @throws {RequiredError}
12226
12006
  */
12227
- 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>;
12228
12008
  /**
12229
12009
  *
12230
12010
  * @summary Get Contributor by slug.
@@ -12286,7 +12066,6 @@ export declare class ContributorsApi extends BaseAPI {
12286
12066
  * @param {string} [id]
12287
12067
  * @param {string} [name]
12288
12068
  * @param {string} [email]
12289
- * @param {string} [description]
12290
12069
  * @param {string} [website]
12291
12070
  * @param {string} [hospitalId]
12292
12071
  * @param {boolean} [interviewerOnly]
@@ -12300,7 +12079,7 @@ export declare class ContributorsApi extends BaseAPI {
12300
12079
  * @throws {RequiredError}
12301
12080
  * @memberof ContributorsApi
12302
12081
  */
12303
- 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>>;
12304
12083
  /**
12305
12084
  *
12306
12085
  * @summary Get Contributor by slug.
@@ -12643,8 +12422,11 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
12643
12422
  * @param {string} [hospitalId]
12644
12423
  * @param {string} [hospitalName]
12645
12424
  * @param {string} [specialtyId]
12425
+ * @param {string} [specialtyName]
12646
12426
  * @param {string} [specialtyTypeId]
12427
+ * @param {string} [specialtyTypeName]
12647
12428
  * @param {string} [serviceId]
12429
+ * @param {string} [serviceName]
12648
12430
  * @param {string} [exceptHospitalId]
12649
12431
  * @param {string} [exceptDealId]
12650
12432
  * @param {Array<string>} [ids]
@@ -12658,7 +12440,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
12658
12440
  * @param {*} [options] Override http request option.
12659
12441
  * @throws {RequiredError}
12660
12442
  */
12661
- 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>;
12662
12444
  /**
12663
12445
  *
12664
12446
  * @summary Get all deals.
@@ -12669,8 +12451,11 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
12669
12451
  * @param {string} [hospitalId]
12670
12452
  * @param {string} [hospitalName]
12671
12453
  * @param {string} [specialtyId]
12454
+ * @param {string} [specialtyName]
12672
12455
  * @param {string} [specialtyTypeId]
12456
+ * @param {string} [specialtyTypeName]
12673
12457
  * @param {string} [serviceId]
12458
+ * @param {string} [serviceName]
12674
12459
  * @param {string} [exceptHospitalId]
12675
12460
  * @param {string} [exceptDealId]
12676
12461
  * @param {Array<string>} [ids]
@@ -12684,7 +12469,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
12684
12469
  * @param {*} [options] Override http request option.
12685
12470
  * @throws {RequiredError}
12686
12471
  */
12687
- 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>;
12688
12473
  /**
12689
12474
  *
12690
12475
  * @summary Get deal by slug.
@@ -12767,8 +12552,11 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
12767
12552
  * @param {string} [hospitalId]
12768
12553
  * @param {string} [hospitalName]
12769
12554
  * @param {string} [specialtyId]
12555
+ * @param {string} [specialtyName]
12770
12556
  * @param {string} [specialtyTypeId]
12557
+ * @param {string} [specialtyTypeName]
12771
12558
  * @param {string} [serviceId]
12559
+ * @param {string} [serviceName]
12772
12560
  * @param {string} [exceptHospitalId]
12773
12561
  * @param {string} [exceptDealId]
12774
12562
  * @param {Array<string>} [ids]
@@ -12782,7 +12570,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
12782
12570
  * @param {*} [options] Override http request option.
12783
12571
  * @throws {RequiredError}
12784
12572
  */
12785
- 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>>;
12786
12574
  /**
12787
12575
  *
12788
12576
  * @summary Get all deals.
@@ -12793,8 +12581,11 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
12793
12581
  * @param {string} [hospitalId]
12794
12582
  * @param {string} [hospitalName]
12795
12583
  * @param {string} [specialtyId]
12584
+ * @param {string} [specialtyName]
12796
12585
  * @param {string} [specialtyTypeId]
12586
+ * @param {string} [specialtyTypeName]
12797
12587
  * @param {string} [serviceId]
12588
+ * @param {string} [serviceName]
12798
12589
  * @param {string} [exceptHospitalId]
12799
12590
  * @param {string} [exceptDealId]
12800
12591
  * @param {Array<string>} [ids]
@@ -12808,7 +12599,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
12808
12599
  * @param {*} [options] Override http request option.
12809
12600
  * @throws {RequiredError}
12810
12601
  */
12811
- 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>>;
12812
12603
  /**
12813
12604
  *
12814
12605
  * @summary Get deal by slug.
@@ -12891,8 +12682,11 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
12891
12682
  * @param {string} [hospitalId]
12892
12683
  * @param {string} [hospitalName]
12893
12684
  * @param {string} [specialtyId]
12685
+ * @param {string} [specialtyName]
12894
12686
  * @param {string} [specialtyTypeId]
12687
+ * @param {string} [specialtyTypeName]
12895
12688
  * @param {string} [serviceId]
12689
+ * @param {string} [serviceName]
12896
12690
  * @param {string} [exceptHospitalId]
12897
12691
  * @param {string} [exceptDealId]
12898
12692
  * @param {Array<string>} [ids]
@@ -12906,7 +12700,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
12906
12700
  * @param {*} [options] Override http request option.
12907
12701
  * @throws {RequiredError}
12908
12702
  */
12909
- 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>;
12910
12704
  /**
12911
12705
  *
12912
12706
  * @summary Get all deals.
@@ -12917,8 +12711,11 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
12917
12711
  * @param {string} [hospitalId]
12918
12712
  * @param {string} [hospitalName]
12919
12713
  * @param {string} [specialtyId]
12714
+ * @param {string} [specialtyName]
12920
12715
  * @param {string} [specialtyTypeId]
12716
+ * @param {string} [specialtyTypeName]
12921
12717
  * @param {string} [serviceId]
12718
+ * @param {string} [serviceName]
12922
12719
  * @param {string} [exceptHospitalId]
12923
12720
  * @param {string} [exceptDealId]
12924
12721
  * @param {Array<string>} [ids]
@@ -12932,7 +12729,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
12932
12729
  * @param {*} [options] Override http request option.
12933
12730
  * @throws {RequiredError}
12934
12731
  */
12935
- 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>;
12936
12733
  /**
12937
12734
  *
12938
12735
  * @summary Get deal by slug.
@@ -13022,8 +12819,11 @@ export declare class DealsApi extends BaseAPI {
13022
12819
  * @param {string} [hospitalId]
13023
12820
  * @param {string} [hospitalName]
13024
12821
  * @param {string} [specialtyId]
12822
+ * @param {string} [specialtyName]
13025
12823
  * @param {string} [specialtyTypeId]
12824
+ * @param {string} [specialtyTypeName]
13026
12825
  * @param {string} [serviceId]
12826
+ * @param {string} [serviceName]
13027
12827
  * @param {string} [exceptHospitalId]
13028
12828
  * @param {string} [exceptDealId]
13029
12829
  * @param {Array<string>} [ids]
@@ -13038,7 +12838,7 @@ export declare class DealsApi extends BaseAPI {
13038
12838
  * @throws {RequiredError}
13039
12839
  * @memberof DealsApi
13040
12840
  */
13041
- 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>>;
13042
12842
  /**
13043
12843
  *
13044
12844
  * @summary Get all deals.
@@ -13049,8 +12849,11 @@ export declare class DealsApi extends BaseAPI {
13049
12849
  * @param {string} [hospitalId]
13050
12850
  * @param {string} [hospitalName]
13051
12851
  * @param {string} [specialtyId]
12852
+ * @param {string} [specialtyName]
13052
12853
  * @param {string} [specialtyTypeId]
12854
+ * @param {string} [specialtyTypeName]
13053
12855
  * @param {string} [serviceId]
12856
+ * @param {string} [serviceName]
13054
12857
  * @param {string} [exceptHospitalId]
13055
12858
  * @param {string} [exceptDealId]
13056
12859
  * @param {Array<string>} [ids]
@@ -13065,7 +12868,7 @@ export declare class DealsApi extends BaseAPI {
13065
12868
  * @throws {RequiredError}
13066
12869
  * @memberof DealsApi
13067
12870
  */
13068
- 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>>;
13069
12872
  /**
13070
12873
  *
13071
12874
  * @summary Get deal by slug.
@@ -13256,6 +13059,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
13256
13059
  *
13257
13060
  * @summary Get all Doctors.
13258
13061
  * @param {string} [hospitalId]
13062
+ * @param {string} [hospitalName]
13259
13063
  * @param {string} [languageCode]
13260
13064
  * @param {boolean} [returnDefaultValue]
13261
13065
  * @param {Array<string>} [ids]
@@ -13274,11 +13078,12 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
13274
13078
  * @param {*} [options] Override http request option.
13275
13079
  * @throws {RequiredError}
13276
13080
  */
13277
- 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>;
13278
13082
  /**
13279
13083
  *
13280
13084
  * @summary Get all Doctors.
13281
13085
  * @param {string} [hospitalId]
13086
+ * @param {string} [hospitalName]
13282
13087
  * @param {string} [languageCode]
13283
13088
  * @param {boolean} [returnDefaultValue]
13284
13089
  * @param {Array<string>} [ids]
@@ -13297,7 +13102,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
13297
13102
  * @param {*} [options] Override http request option.
13298
13103
  * @throws {RequiredError}
13299
13104
  */
13300
- 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>;
13301
13106
  /**
13302
13107
  *
13303
13108
  * @param {string} slug
@@ -13486,6 +13291,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
13486
13291
  *
13487
13292
  * @summary Get all Doctors.
13488
13293
  * @param {string} [hospitalId]
13294
+ * @param {string} [hospitalName]
13489
13295
  * @param {string} [languageCode]
13490
13296
  * @param {boolean} [returnDefaultValue]
13491
13297
  * @param {Array<string>} [ids]
@@ -13504,11 +13310,12 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
13504
13310
  * @param {*} [options] Override http request option.
13505
13311
  * @throws {RequiredError}
13506
13312
  */
13507
- 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>>;
13508
13314
  /**
13509
13315
  *
13510
13316
  * @summary Get all Doctors.
13511
13317
  * @param {string} [hospitalId]
13318
+ * @param {string} [hospitalName]
13512
13319
  * @param {string} [languageCode]
13513
13320
  * @param {boolean} [returnDefaultValue]
13514
13321
  * @param {Array<string>} [ids]
@@ -13527,7 +13334,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
13527
13334
  * @param {*} [options] Override http request option.
13528
13335
  * @throws {RequiredError}
13529
13336
  */
13530
- 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>>;
13531
13338
  /**
13532
13339
  *
13533
13340
  * @param {string} slug
@@ -13716,6 +13523,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
13716
13523
  *
13717
13524
  * @summary Get all Doctors.
13718
13525
  * @param {string} [hospitalId]
13526
+ * @param {string} [hospitalName]
13719
13527
  * @param {string} [languageCode]
13720
13528
  * @param {boolean} [returnDefaultValue]
13721
13529
  * @param {Array<string>} [ids]
@@ -13734,11 +13542,12 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
13734
13542
  * @param {*} [options] Override http request option.
13735
13543
  * @throws {RequiredError}
13736
13544
  */
13737
- 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>;
13738
13546
  /**
13739
13547
  *
13740
13548
  * @summary Get all Doctors.
13741
13549
  * @param {string} [hospitalId]
13550
+ * @param {string} [hospitalName]
13742
13551
  * @param {string} [languageCode]
13743
13552
  * @param {boolean} [returnDefaultValue]
13744
13553
  * @param {Array<string>} [ids]
@@ -13757,7 +13566,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
13757
13566
  * @param {*} [options] Override http request option.
13758
13567
  * @throws {RequiredError}
13759
13568
  */
13760
- 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>;
13761
13570
  /**
13762
13571
  *
13763
13572
  * @param {string} slug
@@ -13963,6 +13772,7 @@ export declare class DoctorsApi extends BaseAPI {
13963
13772
  *
13964
13773
  * @summary Get all Doctors.
13965
13774
  * @param {string} [hospitalId]
13775
+ * @param {string} [hospitalName]
13966
13776
  * @param {string} [languageCode]
13967
13777
  * @param {boolean} [returnDefaultValue]
13968
13778
  * @param {Array<string>} [ids]
@@ -13982,11 +13792,12 @@ export declare class DoctorsApi extends BaseAPI {
13982
13792
  * @throws {RequiredError}
13983
13793
  * @memberof DoctorsApi
13984
13794
  */
13985
- 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>>;
13986
13796
  /**
13987
13797
  *
13988
13798
  * @summary Get all Doctors.
13989
13799
  * @param {string} [hospitalId]
13800
+ * @param {string} [hospitalName]
13990
13801
  * @param {string} [languageCode]
13991
13802
  * @param {boolean} [returnDefaultValue]
13992
13803
  * @param {Array<string>} [ids]
@@ -14006,7 +13817,7 @@ export declare class DoctorsApi extends BaseAPI {
14006
13817
  * @throws {RequiredError}
14007
13818
  * @memberof DoctorsApi
14008
13819
  */
14009
- 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>>;
14010
13821
  /**
14011
13822
  *
14012
13823
  * @param {string} slug
@@ -14047,15 +13858,18 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
14047
13858
  * @param {string} [id]
14048
13859
  * @param {string} [parentId]
14049
13860
  * @param {string} [name]
14050
- * @param {string} [description]
13861
+ * @param {string} [hospitalId]
13862
+ * @param {string} [hospitalName]
14051
13863
  * @param {string} [languageCode]
13864
+ * @param {boolean} [showHidden]
13865
+ * @param {boolean} [returnDefaultValue]
14052
13866
  * @param {number} [page]
14053
13867
  * @param {number} [limit]
14054
13868
  * @param {Date} [lastRetrieved]
14055
13869
  * @param {*} [options] Override http request option.
14056
13870
  * @throws {RequiredError}
14057
13871
  */
14058
- 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>;
14059
13873
  /**
14060
13874
  *
14061
13875
  * @summary Get FaqCategory by slug.
@@ -14095,15 +13909,18 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
14095
13909
  * @param {string} [id]
14096
13910
  * @param {string} [parentId]
14097
13911
  * @param {string} [name]
14098
- * @param {string} [description]
13912
+ * @param {string} [hospitalId]
13913
+ * @param {string} [hospitalName]
14099
13914
  * @param {string} [languageCode]
13915
+ * @param {boolean} [showHidden]
13916
+ * @param {boolean} [returnDefaultValue]
14100
13917
  * @param {number} [page]
14101
13918
  * @param {number} [limit]
14102
13919
  * @param {Date} [lastRetrieved]
14103
13920
  * @param {*} [options] Override http request option.
14104
13921
  * @throws {RequiredError}
14105
13922
  */
14106
- 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>>;
14107
13924
  /**
14108
13925
  *
14109
13926
  * @summary Get FaqCategory by slug.
@@ -14143,15 +13960,18 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
14143
13960
  * @param {string} [id]
14144
13961
  * @param {string} [parentId]
14145
13962
  * @param {string} [name]
14146
- * @param {string} [description]
13963
+ * @param {string} [hospitalId]
13964
+ * @param {string} [hospitalName]
14147
13965
  * @param {string} [languageCode]
13966
+ * @param {boolean} [showHidden]
13967
+ * @param {boolean} [returnDefaultValue]
14148
13968
  * @param {number} [page]
14149
13969
  * @param {number} [limit]
14150
13970
  * @param {Date} [lastRetrieved]
14151
13971
  * @param {*} [options] Override http request option.
14152
13972
  * @throws {RequiredError}
14153
13973
  */
14154
- 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>;
14155
13975
  /**
14156
13976
  *
14157
13977
  * @summary Get FaqCategory by slug.
@@ -14195,8 +14015,11 @@ export declare class FaqCategoriesApi extends BaseAPI {
14195
14015
  * @param {string} [id]
14196
14016
  * @param {string} [parentId]
14197
14017
  * @param {string} [name]
14198
- * @param {string} [description]
14018
+ * @param {string} [hospitalId]
14019
+ * @param {string} [hospitalName]
14199
14020
  * @param {string} [languageCode]
14021
+ * @param {boolean} [showHidden]
14022
+ * @param {boolean} [returnDefaultValue]
14200
14023
  * @param {number} [page]
14201
14024
  * @param {number} [limit]
14202
14025
  * @param {Date} [lastRetrieved]
@@ -14204,7 +14027,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
14204
14027
  * @throws {RequiredError}
14205
14028
  * @memberof FaqCategoriesApi
14206
14029
  */
14207
- 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>>;
14208
14031
  /**
14209
14032
  *
14210
14033
  * @summary Get FaqCategory by slug.
@@ -14225,51 +14048,73 @@ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration |
14225
14048
  *
14226
14049
  * @summary Get faq.
14227
14050
  * @param {string} faqId
14228
- * @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
14229
14074
  * @param {*} [options] Override http request option.
14230
14075
  * @throws {RequiredError}
14231
14076
  */
14232
- apiV2FaqsFaqIdGet: (faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14077
+ apiV2FaqsFaqIdMediasMediaIdGet: (faqId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14233
14078
  /**
14234
14079
  *
14235
- * @summary Get all FaqMedias.
14080
+ * @summary GetAll FaqTags.
14236
14081
  * @param {string} faqId
14237
- * @param {string} [id]
14238
- * @param {MediaType} [mediaType]
14082
+ * @param {string} [tagId]
14239
14083
  * @param {number} [page]
14240
14084
  * @param {number} [limit]
14241
14085
  * @param {Date} [lastRetrieved]
14242
14086
  * @param {*} [options] Override http request option.
14243
14087
  * @throws {RequiredError}
14244
14088
  */
14245
- 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>;
14246
14090
  /**
14247
14091
  *
14248
- * @summary Get FaqMedia.
14092
+ * @summary Get FaqTag.
14249
14093
  * @param {string} faqId
14250
- * @param {string} mediaId
14094
+ * @param {string} tagId
14251
14095
  * @param {*} [options] Override http request option.
14252
14096
  * @throws {RequiredError}
14253
14097
  */
14254
- apiV2FaqsFaqIdMediasMediaIdGet: (faqId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14098
+ apiV2FaqsFaqIdTagsTagIdGet: (faqId: string, tagId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14255
14099
  /**
14256
14100
  *
14257
14101
  * @summary Get all Faqs.
14258
14102
  * @param {string} [id]
14259
- * @param {string} [title]
14260
- * @param {string} [content]
14103
+ * @param {string} [name]
14104
+ * @param {string} [slug]
14261
14105
  * @param {string} [categoryId]
14262
14106
  * @param {string} [hospitalId]
14263
14107
  * @param {string} [hospitalName]
14264
14108
  * @param {string} [languageCode]
14265
14109
  * @param {boolean} [showHidden]
14110
+ * @param {boolean} [returnDefaultValue]
14266
14111
  * @param {number} [page]
14267
14112
  * @param {number} [limit]
14268
14113
  * @param {Date} [lastRetrieved]
14269
14114
  * @param {*} [options] Override http request option.
14270
14115
  * @throws {RequiredError}
14271
14116
  */
14272
- 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>;
14273
14118
  /**
14274
14119
  *
14275
14120
  * @summary Get faq by slug.
@@ -14316,24 +14161,46 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
14316
14161
  * @throws {RequiredError}
14317
14162
  */
14318
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>>;
14319
14185
  /**
14320
14186
  *
14321
14187
  * @summary Get all Faqs.
14322
14188
  * @param {string} [id]
14323
- * @param {string} [title]
14324
- * @param {string} [content]
14189
+ * @param {string} [name]
14190
+ * @param {string} [slug]
14325
14191
  * @param {string} [categoryId]
14326
14192
  * @param {string} [hospitalId]
14327
14193
  * @param {string} [hospitalName]
14328
14194
  * @param {string} [languageCode]
14329
14195
  * @param {boolean} [showHidden]
14196
+ * @param {boolean} [returnDefaultValue]
14330
14197
  * @param {number} [page]
14331
14198
  * @param {number} [limit]
14332
14199
  * @param {Date} [lastRetrieved]
14333
14200
  * @param {*} [options] Override http request option.
14334
14201
  * @throws {RequiredError}
14335
14202
  */
14336
- 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>>;
14337
14204
  /**
14338
14205
  *
14339
14206
  * @summary Get faq by slug.
@@ -14380,24 +14247,46 @@ export declare const FaqsApiFactory: (configuration?: Configuration | undefined,
14380
14247
  * @throws {RequiredError}
14381
14248
  */
14382
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>;
14383
14271
  /**
14384
14272
  *
14385
14273
  * @summary Get all Faqs.
14386
14274
  * @param {string} [id]
14387
- * @param {string} [title]
14388
- * @param {string} [content]
14275
+ * @param {string} [name]
14276
+ * @param {string} [slug]
14389
14277
  * @param {string} [categoryId]
14390
14278
  * @param {string} [hospitalId]
14391
14279
  * @param {string} [hospitalName]
14392
14280
  * @param {string} [languageCode]
14393
14281
  * @param {boolean} [showHidden]
14282
+ * @param {boolean} [returnDefaultValue]
14394
14283
  * @param {number} [page]
14395
14284
  * @param {number} [limit]
14396
14285
  * @param {Date} [lastRetrieved]
14397
14286
  * @param {*} [options] Override http request option.
14398
14287
  * @throws {RequiredError}
14399
14288
  */
14400
- 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>;
14401
14290
  /**
14402
14291
  *
14403
14292
  * @summary Get faq by slug.
@@ -14449,17 +14338,41 @@ export declare class FaqsApi extends BaseAPI {
14449
14338
  * @memberof FaqsApi
14450
14339
  */
14451
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>>;
14452
14364
  /**
14453
14365
  *
14454
14366
  * @summary Get all Faqs.
14455
14367
  * @param {string} [id]
14456
- * @param {string} [title]
14457
- * @param {string} [content]
14368
+ * @param {string} [name]
14369
+ * @param {string} [slug]
14458
14370
  * @param {string} [categoryId]
14459
14371
  * @param {string} [hospitalId]
14460
14372
  * @param {string} [hospitalName]
14461
14373
  * @param {string} [languageCode]
14462
14374
  * @param {boolean} [showHidden]
14375
+ * @param {boolean} [returnDefaultValue]
14463
14376
  * @param {number} [page]
14464
14377
  * @param {number} [limit]
14465
14378
  * @param {Date} [lastRetrieved]
@@ -14467,7 +14380,7 @@ export declare class FaqsApi extends BaseAPI {
14467
14380
  * @throws {RequiredError}
14468
14381
  * @memberof FaqsApi
14469
14382
  */
14470
- 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>>;
14471
14384
  /**
14472
14385
  *
14473
14386
  * @summary Get faq by slug.
@@ -14654,13 +14567,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14654
14567
  * @param {string} [languageCode]
14655
14568
  * @param {Array<string>} [ids]
14656
14569
  * @param {boolean} [returnDefaultValue]
14570
+ * @param {boolean} [paymentEnabled]
14657
14571
  * @param {number} [page]
14658
14572
  * @param {number} [limit]
14659
14573
  * @param {Date} [lastRetrieved]
14660
14574
  * @param {*} [options] Override http request option.
14661
14575
  * @throws {RequiredError}
14662
14576
  */
14663
- 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>;
14664
14578
  /**
14665
14579
  *
14666
14580
  * @summary Get HospitalAccreditation.
@@ -14815,25 +14729,25 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14815
14729
  *
14816
14730
  * @summary Get all HospitalSpecialties.
14817
14731
  * @param {string} hospitalId
14818
- * @param {string} [hospitalName]
14819
- * @param {string} [hospitalSlug]
14820
14732
  * @param {string} [specialtyId]
14821
14733
  * @param {string} [specialtyName]
14822
14734
  * @param {string} [specialtyTypeId]
14823
- * @param {string} [hospitalSpecialtySlug]
14824
- * @param {string} [title]
14735
+ * @param {string} [specialtyTypeName]
14736
+ * @param {string} [hospitalSpecialtyId]
14737
+ * @param {string} [name]
14738
+ * @param {string} [slug]
14825
14739
  * @param {MarketingType} [marketingType]
14826
- * @param {string} [languageCode]
14827
- * @param {boolean} [showHidden]
14828
14740
  * @param {boolean} [returnDefaultValue]
14829
14741
  * @param {boolean} [includeServices]
14742
+ * @param {string} [languageCode]
14743
+ * @param {boolean} [showHidden]
14830
14744
  * @param {number} [page]
14831
14745
  * @param {number} [limit]
14832
14746
  * @param {Date} [lastRetrieved]
14833
14747
  * @param {*} [options] Override http request option.
14834
14748
  * @throws {RequiredError}
14835
14749
  */
14836
- 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>;
14837
14751
  /**
14838
14752
  *
14839
14753
  * @summary Get all HospitalServiceMedias.
@@ -14862,25 +14776,37 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14862
14776
  *
14863
14777
  * @summary Get all HospitalSpecialties.
14864
14778
  * @param {string} hospitalId
14865
- * @param {string} [hospitalName]
14866
- * @param {string} [hospitalSlug]
14867
14779
  * @param {string} [specialtyId]
14868
14780
  * @param {string} [specialtyName]
14869
14781
  * @param {string} [specialtyTypeId]
14870
- * @param {string} [hospitalSpecialtySlug]
14871
- * @param {string} [title]
14782
+ * @param {string} [specialtyTypeName]
14783
+ * @param {string} [hospitalSpecialtyId]
14784
+ * @param {string} [name]
14785
+ * @param {string} [slug]
14872
14786
  * @param {MarketingType} [marketingType]
14873
- * @param {string} [languageCode]
14874
- * @param {boolean} [showHidden]
14875
14787
  * @param {boolean} [returnDefaultValue]
14876
14788
  * @param {boolean} [includeServices]
14789
+ * @param {string} [languageCode]
14790
+ * @param {boolean} [showHidden]
14877
14791
  * @param {number} [page]
14878
14792
  * @param {number} [limit]
14879
14793
  * @param {Date} [lastRetrieved]
14880
14794
  * @param {*} [options] Override http request option.
14881
14795
  * @throws {RequiredError}
14882
14796
  */
14883
- 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>;
14884
14810
  /**
14885
14811
  *
14886
14812
  * @summary Get HospitalSpecialty.
@@ -14898,14 +14824,9 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14898
14824
  * @summary Get all HospitalServices.
14899
14825
  * @param {string} hospitalId
14900
14826
  * @param {string} specialtyId
14901
- * @param {string} [hospitalName]
14902
- * @param {string} [hospitalSlug]
14903
14827
  * @param {string} [id]
14904
14828
  * @param {string} [name]
14905
- * @param {string} [description]
14906
- * @param {string} [specialtyName]
14907
- * @param {string} [specialtyTypeId]
14908
- * @param {string} [specialtyTypeName]
14829
+ * @param {string} [slug]
14909
14830
  * @param {string} [serviceCategoryId]
14910
14831
  * @param {MarketingType} [marketingType]
14911
14832
  * @param {Procedure} [procedure]
@@ -14918,7 +14839,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14918
14839
  * @param {*} [options] Override http request option.
14919
14840
  * @throws {RequiredError}
14920
14841
  */
14921
- 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>;
14922
14843
  /**
14923
14844
  *
14924
14845
  * @summary Get HospitalService.
@@ -14998,13 +14919,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14998
14919
  * @param {string} [languageCode]
14999
14920
  * @param {Array<string>} [ids]
15000
14921
  * @param {boolean} [returnDefaultValue]
14922
+ * @param {boolean} [paymentEnabled]
15001
14923
  * @param {number} [page]
15002
14924
  * @param {number} [limit]
15003
14925
  * @param {Date} [lastRetrieved]
15004
14926
  * @param {*} [options] Override http request option.
15005
14927
  * @throws {RequiredError}
15006
14928
  */
15007
- 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>;
15008
14930
  /**
15009
14931
  *
15010
14932
  * @param {string} slug
@@ -15036,13 +14958,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
15036
14958
  * @param {string} [languageCode]
15037
14959
  * @param {Array<string>} [ids]
15038
14960
  * @param {boolean} [returnDefaultValue]
14961
+ * @param {boolean} [paymentEnabled]
15039
14962
  * @param {number} [page]
15040
14963
  * @param {number} [limit]
15041
14964
  * @param {Date} [lastRetrieved]
15042
14965
  * @param {*} [options] Override http request option.
15043
14966
  * @throws {RequiredError}
15044
14967
  */
15045
- 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>>;
15046
14969
  /**
15047
14970
  *
15048
14971
  * @summary Get HospitalAccreditation.
@@ -15197,25 +15120,25 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
15197
15120
  *
15198
15121
  * @summary Get all HospitalSpecialties.
15199
15122
  * @param {string} hospitalId
15200
- * @param {string} [hospitalName]
15201
- * @param {string} [hospitalSlug]
15202
15123
  * @param {string} [specialtyId]
15203
15124
  * @param {string} [specialtyName]
15204
15125
  * @param {string} [specialtyTypeId]
15205
- * @param {string} [hospitalSpecialtySlug]
15206
- * @param {string} [title]
15126
+ * @param {string} [specialtyTypeName]
15127
+ * @param {string} [hospitalSpecialtyId]
15128
+ * @param {string} [name]
15129
+ * @param {string} [slug]
15207
15130
  * @param {MarketingType} [marketingType]
15208
- * @param {string} [languageCode]
15209
- * @param {boolean} [showHidden]
15210
15131
  * @param {boolean} [returnDefaultValue]
15211
15132
  * @param {boolean} [includeServices]
15133
+ * @param {string} [languageCode]
15134
+ * @param {boolean} [showHidden]
15212
15135
  * @param {number} [page]
15213
15136
  * @param {number} [limit]
15214
15137
  * @param {Date} [lastRetrieved]
15215
15138
  * @param {*} [options] Override http request option.
15216
15139
  * @throws {RequiredError}
15217
15140
  */
15218
- 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>>;
15219
15142
  /**
15220
15143
  *
15221
15144
  * @summary Get all HospitalServiceMedias.
@@ -15244,25 +15167,37 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
15244
15167
  *
15245
15168
  * @summary Get all HospitalSpecialties.
15246
15169
  * @param {string} hospitalId
15247
- * @param {string} [hospitalName]
15248
- * @param {string} [hospitalSlug]
15249
15170
  * @param {string} [specialtyId]
15250
15171
  * @param {string} [specialtyName]
15251
15172
  * @param {string} [specialtyTypeId]
15252
- * @param {string} [hospitalSpecialtySlug]
15253
- * @param {string} [title]
15173
+ * @param {string} [specialtyTypeName]
15174
+ * @param {string} [hospitalSpecialtyId]
15175
+ * @param {string} [name]
15176
+ * @param {string} [slug]
15254
15177
  * @param {MarketingType} [marketingType]
15255
- * @param {string} [languageCode]
15256
- * @param {boolean} [showHidden]
15257
15178
  * @param {boolean} [returnDefaultValue]
15258
15179
  * @param {boolean} [includeServices]
15180
+ * @param {string} [languageCode]
15181
+ * @param {boolean} [showHidden]
15259
15182
  * @param {number} [page]
15260
15183
  * @param {number} [limit]
15261
15184
  * @param {Date} [lastRetrieved]
15262
15185
  * @param {*} [options] Override http request option.
15263
15186
  * @throws {RequiredError}
15264
15187
  */
15265
- 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>>;
15266
15201
  /**
15267
15202
  *
15268
15203
  * @summary Get HospitalSpecialty.
@@ -15280,14 +15215,9 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
15280
15215
  * @summary Get all HospitalServices.
15281
15216
  * @param {string} hospitalId
15282
15217
  * @param {string} specialtyId
15283
- * @param {string} [hospitalName]
15284
- * @param {string} [hospitalSlug]
15285
15218
  * @param {string} [id]
15286
15219
  * @param {string} [name]
15287
- * @param {string} [description]
15288
- * @param {string} [specialtyName]
15289
- * @param {string} [specialtyTypeId]
15290
- * @param {string} [specialtyTypeName]
15220
+ * @param {string} [slug]
15291
15221
  * @param {string} [serviceCategoryId]
15292
15222
  * @param {MarketingType} [marketingType]
15293
15223
  * @param {Procedure} [procedure]
@@ -15300,7 +15230,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
15300
15230
  * @param {*} [options] Override http request option.
15301
15231
  * @throws {RequiredError}
15302
15232
  */
15303
- 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>>;
15304
15234
  /**
15305
15235
  *
15306
15236
  * @summary Get HospitalService.
@@ -15380,13 +15310,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
15380
15310
  * @param {string} [languageCode]
15381
15311
  * @param {Array<string>} [ids]
15382
15312
  * @param {boolean} [returnDefaultValue]
15313
+ * @param {boolean} [paymentEnabled]
15383
15314
  * @param {number} [page]
15384
15315
  * @param {number} [limit]
15385
15316
  * @param {Date} [lastRetrieved]
15386
15317
  * @param {*} [options] Override http request option.
15387
15318
  * @throws {RequiredError}
15388
15319
  */
15389
- 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>>;
15390
15321
  /**
15391
15322
  *
15392
15323
  * @param {string} slug
@@ -15418,13 +15349,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15418
15349
  * @param {string} [languageCode]
15419
15350
  * @param {Array<string>} [ids]
15420
15351
  * @param {boolean} [returnDefaultValue]
15352
+ * @param {boolean} [paymentEnabled]
15421
15353
  * @param {number} [page]
15422
15354
  * @param {number} [limit]
15423
15355
  * @param {Date} [lastRetrieved]
15424
15356
  * @param {*} [options] Override http request option.
15425
15357
  * @throws {RequiredError}
15426
15358
  */
15427
- 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>;
15428
15360
  /**
15429
15361
  *
15430
15362
  * @summary Get HospitalAccreditation.
@@ -15579,25 +15511,25 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15579
15511
  *
15580
15512
  * @summary Get all HospitalSpecialties.
15581
15513
  * @param {string} hospitalId
15582
- * @param {string} [hospitalName]
15583
- * @param {string} [hospitalSlug]
15584
15514
  * @param {string} [specialtyId]
15585
15515
  * @param {string} [specialtyName]
15586
15516
  * @param {string} [specialtyTypeId]
15587
- * @param {string} [hospitalSpecialtySlug]
15588
- * @param {string} [title]
15517
+ * @param {string} [specialtyTypeName]
15518
+ * @param {string} [hospitalSpecialtyId]
15519
+ * @param {string} [name]
15520
+ * @param {string} [slug]
15589
15521
  * @param {MarketingType} [marketingType]
15590
- * @param {string} [languageCode]
15591
- * @param {boolean} [showHidden]
15592
15522
  * @param {boolean} [returnDefaultValue]
15593
15523
  * @param {boolean} [includeServices]
15524
+ * @param {string} [languageCode]
15525
+ * @param {boolean} [showHidden]
15594
15526
  * @param {number} [page]
15595
15527
  * @param {number} [limit]
15596
15528
  * @param {Date} [lastRetrieved]
15597
15529
  * @param {*} [options] Override http request option.
15598
15530
  * @throws {RequiredError}
15599
15531
  */
15600
- 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>;
15601
15533
  /**
15602
15534
  *
15603
15535
  * @summary Get all HospitalServiceMedias.
@@ -15626,25 +15558,37 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15626
15558
  *
15627
15559
  * @summary Get all HospitalSpecialties.
15628
15560
  * @param {string} hospitalId
15629
- * @param {string} [hospitalName]
15630
- * @param {string} [hospitalSlug]
15631
15561
  * @param {string} [specialtyId]
15632
15562
  * @param {string} [specialtyName]
15633
15563
  * @param {string} [specialtyTypeId]
15634
- * @param {string} [hospitalSpecialtySlug]
15635
- * @param {string} [title]
15564
+ * @param {string} [specialtyTypeName]
15565
+ * @param {string} [hospitalSpecialtyId]
15566
+ * @param {string} [name]
15567
+ * @param {string} [slug]
15636
15568
  * @param {MarketingType} [marketingType]
15637
- * @param {string} [languageCode]
15638
- * @param {boolean} [showHidden]
15639
15569
  * @param {boolean} [returnDefaultValue]
15640
15570
  * @param {boolean} [includeServices]
15571
+ * @param {string} [languageCode]
15572
+ * @param {boolean} [showHidden]
15641
15573
  * @param {number} [page]
15642
15574
  * @param {number} [limit]
15643
15575
  * @param {Date} [lastRetrieved]
15644
15576
  * @param {*} [options] Override http request option.
15645
15577
  * @throws {RequiredError}
15646
15578
  */
15647
- 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>;
15648
15592
  /**
15649
15593
  *
15650
15594
  * @summary Get HospitalSpecialty.
@@ -15662,14 +15606,9 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15662
15606
  * @summary Get all HospitalServices.
15663
15607
  * @param {string} hospitalId
15664
15608
  * @param {string} specialtyId
15665
- * @param {string} [hospitalName]
15666
- * @param {string} [hospitalSlug]
15667
15609
  * @param {string} [id]
15668
15610
  * @param {string} [name]
15669
- * @param {string} [description]
15670
- * @param {string} [specialtyName]
15671
- * @param {string} [specialtyTypeId]
15672
- * @param {string} [specialtyTypeName]
15611
+ * @param {string} [slug]
15673
15612
  * @param {string} [serviceCategoryId]
15674
15613
  * @param {MarketingType} [marketingType]
15675
15614
  * @param {Procedure} [procedure]
@@ -15682,7 +15621,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15682
15621
  * @param {*} [options] Override http request option.
15683
15622
  * @throws {RequiredError}
15684
15623
  */
15685
- 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>;
15686
15625
  /**
15687
15626
  *
15688
15627
  * @summary Get HospitalService.
@@ -15762,13 +15701,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15762
15701
  * @param {string} [languageCode]
15763
15702
  * @param {Array<string>} [ids]
15764
15703
  * @param {boolean} [returnDefaultValue]
15704
+ * @param {boolean} [paymentEnabled]
15765
15705
  * @param {number} [page]
15766
15706
  * @param {number} [limit]
15767
15707
  * @param {Date} [lastRetrieved]
15768
15708
  * @param {*} [options] Override http request option.
15769
15709
  * @throws {RequiredError}
15770
15710
  */
15771
- 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>;
15772
15712
  /**
15773
15713
  *
15774
15714
  * @param {string} slug
@@ -15802,6 +15742,7 @@ export declare class HospitalsApi extends BaseAPI {
15802
15742
  * @param {string} [languageCode]
15803
15743
  * @param {Array<string>} [ids]
15804
15744
  * @param {boolean} [returnDefaultValue]
15745
+ * @param {boolean} [paymentEnabled]
15805
15746
  * @param {number} [page]
15806
15747
  * @param {number} [limit]
15807
15748
  * @param {Date} [lastRetrieved]
@@ -15809,7 +15750,7 @@ export declare class HospitalsApi extends BaseAPI {
15809
15750
  * @throws {RequiredError}
15810
15751
  * @memberof HospitalsApi
15811
15752
  */
15812
- 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>>;
15813
15754
  /**
15814
15755
  *
15815
15756
  * @summary Get HospitalAccreditation.
@@ -15977,18 +15918,18 @@ export declare class HospitalsApi extends BaseAPI {
15977
15918
  *
15978
15919
  * @summary Get all HospitalSpecialties.
15979
15920
  * @param {string} hospitalId
15980
- * @param {string} [hospitalName]
15981
- * @param {string} [hospitalSlug]
15982
15921
  * @param {string} [specialtyId]
15983
15922
  * @param {string} [specialtyName]
15984
15923
  * @param {string} [specialtyTypeId]
15985
- * @param {string} [hospitalSpecialtySlug]
15986
- * @param {string} [title]
15924
+ * @param {string} [specialtyTypeName]
15925
+ * @param {string} [hospitalSpecialtyId]
15926
+ * @param {string} [name]
15927
+ * @param {string} [slug]
15987
15928
  * @param {MarketingType} [marketingType]
15988
- * @param {string} [languageCode]
15989
- * @param {boolean} [showHidden]
15990
15929
  * @param {boolean} [returnDefaultValue]
15991
15930
  * @param {boolean} [includeServices]
15931
+ * @param {string} [languageCode]
15932
+ * @param {boolean} [showHidden]
15992
15933
  * @param {number} [page]
15993
15934
  * @param {number} [limit]
15994
15935
  * @param {Date} [lastRetrieved]
@@ -15996,7 +15937,7 @@ export declare class HospitalsApi extends BaseAPI {
15996
15937
  * @throws {RequiredError}
15997
15938
  * @memberof HospitalsApi
15998
15939
  */
15999
- 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>>;
16000
15941
  /**
16001
15942
  *
16002
15943
  * @summary Get all HospitalServiceMedias.
@@ -16027,18 +15968,18 @@ export declare class HospitalsApi extends BaseAPI {
16027
15968
  *
16028
15969
  * @summary Get all HospitalSpecialties.
16029
15970
  * @param {string} hospitalId
16030
- * @param {string} [hospitalName]
16031
- * @param {string} [hospitalSlug]
16032
15971
  * @param {string} [specialtyId]
16033
15972
  * @param {string} [specialtyName]
16034
15973
  * @param {string} [specialtyTypeId]
16035
- * @param {string} [hospitalSpecialtySlug]
16036
- * @param {string} [title]
15974
+ * @param {string} [specialtyTypeName]
15975
+ * @param {string} [hospitalSpecialtyId]
15976
+ * @param {string} [name]
15977
+ * @param {string} [slug]
16037
15978
  * @param {MarketingType} [marketingType]
16038
- * @param {string} [languageCode]
16039
- * @param {boolean} [showHidden]
16040
15979
  * @param {boolean} [returnDefaultValue]
16041
15980
  * @param {boolean} [includeServices]
15981
+ * @param {string} [languageCode]
15982
+ * @param {boolean} [showHidden]
16042
15983
  * @param {number} [page]
16043
15984
  * @param {number} [limit]
16044
15985
  * @param {Date} [lastRetrieved]
@@ -16046,7 +15987,20 @@ export declare class HospitalsApi extends BaseAPI {
16046
15987
  * @throws {RequiredError}
16047
15988
  * @memberof HospitalsApi
16048
15989
  */
16049
- 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>>;
16050
16004
  /**
16051
16005
  *
16052
16006
  * @summary Get HospitalSpecialty.
@@ -16065,14 +16019,9 @@ export declare class HospitalsApi extends BaseAPI {
16065
16019
  * @summary Get all HospitalServices.
16066
16020
  * @param {string} hospitalId
16067
16021
  * @param {string} specialtyId
16068
- * @param {string} [hospitalName]
16069
- * @param {string} [hospitalSlug]
16070
16022
  * @param {string} [id]
16071
16023
  * @param {string} [name]
16072
- * @param {string} [description]
16073
- * @param {string} [specialtyName]
16074
- * @param {string} [specialtyTypeId]
16075
- * @param {string} [specialtyTypeName]
16024
+ * @param {string} [slug]
16076
16025
  * @param {string} [serviceCategoryId]
16077
16026
  * @param {MarketingType} [marketingType]
16078
16027
  * @param {Procedure} [procedure]
@@ -16086,7 +16035,7 @@ export declare class HospitalsApi extends BaseAPI {
16086
16035
  * @throws {RequiredError}
16087
16036
  * @memberof HospitalsApi
16088
16037
  */
16089
- 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>>;
16090
16039
  /**
16091
16040
  *
16092
16041
  * @summary Get HospitalService.
@@ -16171,6 +16120,7 @@ export declare class HospitalsApi extends BaseAPI {
16171
16120
  * @param {string} [languageCode]
16172
16121
  * @param {Array<string>} [ids]
16173
16122
  * @param {boolean} [returnDefaultValue]
16123
+ * @param {boolean} [paymentEnabled]
16174
16124
  * @param {number} [page]
16175
16125
  * @param {number} [limit]
16176
16126
  * @param {Date} [lastRetrieved]
@@ -16178,7 +16128,7 @@ export declare class HospitalsApi extends BaseAPI {
16178
16128
  * @throws {RequiredError}
16179
16129
  * @memberof HospitalsApi
16180
16130
  */
16181
- 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>>;
16182
16132
  /**
16183
16133
  *
16184
16134
  * @param {string} slug
@@ -17700,12 +17650,10 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
17700
17650
  /**
17701
17651
  *
17702
17652
  * @param {string} serviceReviewId
17703
- * @param {string} [languageCode]
17704
- * @param {boolean} [returnDefaultValue]
17705
17653
  * @param {*} [options] Override http request option.
17706
17654
  * @throws {RequiredError}
17707
17655
  */
17708
- apiV2ServicereviewsServiceReviewIdGet: (serviceReviewId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17656
+ apiV2ServicereviewsServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17709
17657
  /**
17710
17658
  *
17711
17659
  * @summary Get all ServiceReviewMedias.
@@ -17811,12 +17759,10 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
17811
17759
  /**
17812
17760
  *
17813
17761
  * @param {string} serviceReviewId
17814
- * @param {string} [languageCode]
17815
- * @param {boolean} [returnDefaultValue]
17816
17762
  * @param {*} [options] Override http request option.
17817
17763
  * @throws {RequiredError}
17818
17764
  */
17819
- 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>>;
17820
17766
  /**
17821
17767
  *
17822
17768
  * @summary Get all ServiceReviewMedias.
@@ -17922,12 +17868,10 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
17922
17868
  /**
17923
17869
  *
17924
17870
  * @param {string} serviceReviewId
17925
- * @param {string} [languageCode]
17926
- * @param {boolean} [returnDefaultValue]
17927
17871
  * @param {*} [options] Override http request option.
17928
17872
  * @throws {RequiredError}
17929
17873
  */
17930
- apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
17874
+ apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel>;
17931
17875
  /**
17932
17876
  *
17933
17877
  * @summary Get all ServiceReviewMedias.
@@ -18038,13 +17982,11 @@ export declare class ServiceReviewsApi extends BaseAPI {
18038
17982
  /**
18039
17983
  *
18040
17984
  * @param {string} serviceReviewId
18041
- * @param {string} [languageCode]
18042
- * @param {boolean} [returnDefaultValue]
18043
17985
  * @param {*} [options] Override http request option.
18044
17986
  * @throws {RequiredError}
18045
17987
  * @memberof ServiceReviewsApi
18046
17988
  */
18047
- 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>>;
18048
17990
  /**
18049
17991
  *
18050
17992
  * @summary Get all ServiceReviewMedias.
@@ -18119,12 +18061,12 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
18119
18061
  /**
18120
18062
  *
18121
18063
  * @summary Get all HospitalServices.
18064
+ * @param {string} [id]
18065
+ * @param {string} [name]
18066
+ * @param {string} [slug]
18122
18067
  * @param {string} [hospitalId]
18123
18068
  * @param {string} [hospitalName]
18124
18069
  * @param {string} [hospitalSlug]
18125
- * @param {string} [id]
18126
- * @param {string} [name]
18127
- * @param {string} [description]
18128
18070
  * @param {string} [specialtyId]
18129
18071
  * @param {string} [specialtyName]
18130
18072
  * @param {string} [specialtyTypeId]
@@ -18141,7 +18083,7 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
18141
18083
  * @param {*} [options] Override http request option.
18142
18084
  * @throws {RequiredError}
18143
18085
  */
18144
- 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>;
18145
18087
  /**
18146
18088
  *
18147
18089
  * @param {string} serviceId
@@ -18169,12 +18111,12 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
18169
18111
  /**
18170
18112
  *
18171
18113
  * @summary Get all HospitalServices.
18114
+ * @param {string} [id]
18115
+ * @param {string} [name]
18116
+ * @param {string} [slug]
18172
18117
  * @param {string} [hospitalId]
18173
18118
  * @param {string} [hospitalName]
18174
18119
  * @param {string} [hospitalSlug]
18175
- * @param {string} [id]
18176
- * @param {string} [name]
18177
- * @param {string} [description]
18178
18120
  * @param {string} [specialtyId]
18179
18121
  * @param {string} [specialtyName]
18180
18122
  * @param {string} [specialtyTypeId]
@@ -18191,7 +18133,7 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
18191
18133
  * @param {*} [options] Override http request option.
18192
18134
  * @throws {RequiredError}
18193
18135
  */
18194
- 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>>;
18195
18137
  /**
18196
18138
  *
18197
18139
  * @param {string} serviceId
@@ -18219,12 +18161,12 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
18219
18161
  /**
18220
18162
  *
18221
18163
  * @summary Get all HospitalServices.
18164
+ * @param {string} [id]
18165
+ * @param {string} [name]
18166
+ * @param {string} [slug]
18222
18167
  * @param {string} [hospitalId]
18223
18168
  * @param {string} [hospitalName]
18224
18169
  * @param {string} [hospitalSlug]
18225
- * @param {string} [id]
18226
- * @param {string} [name]
18227
- * @param {string} [description]
18228
18170
  * @param {string} [specialtyId]
18229
18171
  * @param {string} [specialtyName]
18230
18172
  * @param {string} [specialtyTypeId]
@@ -18241,7 +18183,7 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
18241
18183
  * @param {*} [options] Override http request option.
18242
18184
  * @throws {RequiredError}
18243
18185
  */
18244
- 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>;
18245
18187
  /**
18246
18188
  *
18247
18189
  * @param {string} serviceId
@@ -18271,12 +18213,12 @@ export declare class ServicesApi extends BaseAPI {
18271
18213
  /**
18272
18214
  *
18273
18215
  * @summary Get all HospitalServices.
18216
+ * @param {string} [id]
18217
+ * @param {string} [name]
18218
+ * @param {string} [slug]
18274
18219
  * @param {string} [hospitalId]
18275
18220
  * @param {string} [hospitalName]
18276
18221
  * @param {string} [hospitalSlug]
18277
- * @param {string} [id]
18278
- * @param {string} [name]
18279
- * @param {string} [description]
18280
18222
  * @param {string} [specialtyId]
18281
18223
  * @param {string} [specialtyName]
18282
18224
  * @param {string} [specialtyTypeId]
@@ -18294,7 +18236,7 @@ export declare class ServicesApi extends BaseAPI {
18294
18236
  * @throws {RequiredError}
18295
18237
  * @memberof ServicesApi
18296
18238
  */
18297
- 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>>;
18298
18240
  /**
18299
18241
  *
18300
18242
  * @param {string} serviceId
@@ -18782,9 +18724,10 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
18782
18724
  * @param {MarketingType} [marketingType]
18783
18725
  * @param {string} [hospitalId]
18784
18726
  * @param {Date} [created]
18785
- * @param {string} [languageCode]
18786
18727
  * @param {Array<string>} [ids]
18787
18728
  * @param {string} [specialtyTypeCategoryId]
18729
+ * @param {string} [languageCode]
18730
+ * @param {boolean} [showHidden]
18788
18731
  * @param {boolean} [returnDefaultValue]
18789
18732
  * @param {number} [page]
18790
18733
  * @param {number} [limit]
@@ -18792,7 +18735,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
18792
18735
  * @param {*} [options] Override http request option.
18793
18736
  * @throws {RequiredError}
18794
18737
  */
18795
- 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>;
18796
18739
  /**
18797
18740
  *
18798
18741
  * @summary Get all Hospitals.
@@ -18802,9 +18745,10 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
18802
18745
  * @param {MarketingType} [marketingType]
18803
18746
  * @param {string} [hospitalId]
18804
18747
  * @param {Date} [created]
18805
- * @param {string} [languageCode]
18806
18748
  * @param {Array<string>} [ids]
18807
18749
  * @param {string} [specialtyTypeCategoryId]
18750
+ * @param {string} [languageCode]
18751
+ * @param {boolean} [showHidden]
18808
18752
  * @param {boolean} [returnDefaultValue]
18809
18753
  * @param {number} [page]
18810
18754
  * @param {number} [limit]
@@ -18812,7 +18756,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
18812
18756
  * @param {*} [options] Override http request option.
18813
18757
  * @throws {RequiredError}
18814
18758
  */
18815
- 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>;
18816
18760
  /**
18817
18761
  *
18818
18762
  * @param {string} slug
@@ -18868,9 +18812,10 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
18868
18812
  * @param {MarketingType} [marketingType]
18869
18813
  * @param {string} [hospitalId]
18870
18814
  * @param {Date} [created]
18871
- * @param {string} [languageCode]
18872
18815
  * @param {Array<string>} [ids]
18873
18816
  * @param {string} [specialtyTypeCategoryId]
18817
+ * @param {string} [languageCode]
18818
+ * @param {boolean} [showHidden]
18874
18819
  * @param {boolean} [returnDefaultValue]
18875
18820
  * @param {number} [page]
18876
18821
  * @param {number} [limit]
@@ -18878,7 +18823,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
18878
18823
  * @param {*} [options] Override http request option.
18879
18824
  * @throws {RequiredError}
18880
18825
  */
18881
- 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>>;
18882
18827
  /**
18883
18828
  *
18884
18829
  * @summary Get all Hospitals.
@@ -18888,9 +18833,10 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
18888
18833
  * @param {MarketingType} [marketingType]
18889
18834
  * @param {string} [hospitalId]
18890
18835
  * @param {Date} [created]
18891
- * @param {string} [languageCode]
18892
18836
  * @param {Array<string>} [ids]
18893
18837
  * @param {string} [specialtyTypeCategoryId]
18838
+ * @param {string} [languageCode]
18839
+ * @param {boolean} [showHidden]
18894
18840
  * @param {boolean} [returnDefaultValue]
18895
18841
  * @param {number} [page]
18896
18842
  * @param {number} [limit]
@@ -18898,7 +18844,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
18898
18844
  * @param {*} [options] Override http request option.
18899
18845
  * @throws {RequiredError}
18900
18846
  */
18901
- 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>>;
18902
18848
  /**
18903
18849
  *
18904
18850
  * @param {string} slug
@@ -18954,9 +18900,10 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
18954
18900
  * @param {MarketingType} [marketingType]
18955
18901
  * @param {string} [hospitalId]
18956
18902
  * @param {Date} [created]
18957
- * @param {string} [languageCode]
18958
18903
  * @param {Array<string>} [ids]
18959
18904
  * @param {string} [specialtyTypeCategoryId]
18905
+ * @param {string} [languageCode]
18906
+ * @param {boolean} [showHidden]
18960
18907
  * @param {boolean} [returnDefaultValue]
18961
18908
  * @param {number} [page]
18962
18909
  * @param {number} [limit]
@@ -18964,7 +18911,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
18964
18911
  * @param {*} [options] Override http request option.
18965
18912
  * @throws {RequiredError}
18966
18913
  */
18967
- 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>;
18968
18915
  /**
18969
18916
  *
18970
18917
  * @summary Get all Hospitals.
@@ -18974,9 +18921,10 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
18974
18921
  * @param {MarketingType} [marketingType]
18975
18922
  * @param {string} [hospitalId]
18976
18923
  * @param {Date} [created]
18977
- * @param {string} [languageCode]
18978
18924
  * @param {Array<string>} [ids]
18979
18925
  * @param {string} [specialtyTypeCategoryId]
18926
+ * @param {string} [languageCode]
18927
+ * @param {boolean} [showHidden]
18980
18928
  * @param {boolean} [returnDefaultValue]
18981
18929
  * @param {number} [page]
18982
18930
  * @param {number} [limit]
@@ -18984,7 +18932,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
18984
18932
  * @param {*} [options] Override http request option.
18985
18933
  * @throws {RequiredError}
18986
18934
  */
18987
- 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>;
18988
18936
  /**
18989
18937
  *
18990
18938
  * @param {string} slug
@@ -19042,9 +18990,10 @@ export declare class SpecialtyTypesApi extends BaseAPI {
19042
18990
  * @param {MarketingType} [marketingType]
19043
18991
  * @param {string} [hospitalId]
19044
18992
  * @param {Date} [created]
19045
- * @param {string} [languageCode]
19046
18993
  * @param {Array<string>} [ids]
19047
18994
  * @param {string} [specialtyTypeCategoryId]
18995
+ * @param {string} [languageCode]
18996
+ * @param {boolean} [showHidden]
19048
18997
  * @param {boolean} [returnDefaultValue]
19049
18998
  * @param {number} [page]
19050
18999
  * @param {number} [limit]
@@ -19053,7 +19002,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
19053
19002
  * @throws {RequiredError}
19054
19003
  * @memberof SpecialtyTypesApi
19055
19004
  */
19056
- 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>>;
19057
19006
  /**
19058
19007
  *
19059
19008
  * @summary Get all Hospitals.
@@ -19063,9 +19012,10 @@ export declare class SpecialtyTypesApi extends BaseAPI {
19063
19012
  * @param {MarketingType} [marketingType]
19064
19013
  * @param {string} [hospitalId]
19065
19014
  * @param {Date} [created]
19066
- * @param {string} [languageCode]
19067
19015
  * @param {Array<string>} [ids]
19068
19016
  * @param {string} [specialtyTypeCategoryId]
19017
+ * @param {string} [languageCode]
19018
+ * @param {boolean} [showHidden]
19069
19019
  * @param {boolean} [returnDefaultValue]
19070
19020
  * @param {number} [page]
19071
19021
  * @param {number} [limit]
@@ -19074,7 +19024,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
19074
19024
  * @throws {RequiredError}
19075
19025
  * @memberof SpecialtyTypesApi
19076
19026
  */
19077
- 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>>;
19078
19028
  /**
19079
19029
  *
19080
19030
  * @param {string} slug