ch-admin-api-client-typescript 2.4.9 → 2.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/api.d.ts CHANGED
@@ -3528,6 +3528,68 @@ export interface CreateDoctorSpecialtyCommand {
3528
3528
  */
3529
3529
  'order'?: number;
3530
3530
  }
3531
+ /**
3532
+ *
3533
+ * @export
3534
+ * @interface CreateFaqCategoryCommand
3535
+ */
3536
+ export interface CreateFaqCategoryCommand {
3537
+ /**
3538
+ *
3539
+ * @type {string}
3540
+ * @memberof CreateFaqCategoryCommand
3541
+ */
3542
+ 'parentId'?: string | null;
3543
+ /**
3544
+ *
3545
+ * @type {string}
3546
+ * @memberof CreateFaqCategoryCommand
3547
+ */
3548
+ 'name'?: string | null;
3549
+ /**
3550
+ *
3551
+ * @type {string}
3552
+ * @memberof CreateFaqCategoryCommand
3553
+ */
3554
+ 'description'?: string | null;
3555
+ /**
3556
+ *
3557
+ * @type {number}
3558
+ * @memberof CreateFaqCategoryCommand
3559
+ */
3560
+ 'order'?: number;
3561
+ }
3562
+ /**
3563
+ *
3564
+ * @export
3565
+ * @interface CreateFaqCommand
3566
+ */
3567
+ export interface CreateFaqCommand {
3568
+ /**
3569
+ *
3570
+ * @type {string}
3571
+ * @memberof CreateFaqCommand
3572
+ */
3573
+ 'title'?: string | null;
3574
+ /**
3575
+ *
3576
+ * @type {string}
3577
+ * @memberof CreateFaqCommand
3578
+ */
3579
+ 'content'?: string | null;
3580
+ /**
3581
+ *
3582
+ * @type {number}
3583
+ * @memberof CreateFaqCommand
3584
+ */
3585
+ 'order'?: number;
3586
+ /**
3587
+ *
3588
+ * @type {string}
3589
+ * @memberof CreateFaqCommand
3590
+ */
3591
+ 'faqCategoryId'?: string | null;
3592
+ }
3531
3593
  /**
3532
3594
  *
3533
3595
  * @export
@@ -4150,6 +4212,31 @@ export interface CreateTagCommand {
4150
4212
  */
4151
4213
  'tagId'?: string | null;
4152
4214
  }
4215
+ /**
4216
+ *
4217
+ * @export
4218
+ * @interface CreateTemplateVersionCommand
4219
+ */
4220
+ export interface CreateTemplateVersionCommand {
4221
+ /**
4222
+ *
4223
+ * @type {string}
4224
+ * @memberof CreateTemplateVersionCommand
4225
+ */
4226
+ 'name'?: string | null;
4227
+ /**
4228
+ *
4229
+ * @type {string}
4230
+ * @memberof CreateTemplateVersionCommand
4231
+ */
4232
+ 'subject'?: string | null;
4233
+ /**
4234
+ *
4235
+ * @type {string}
4236
+ * @memberof CreateTemplateVersionCommand
4237
+ */
4238
+ 'htmlContent'?: string | null;
4239
+ }
4153
4240
  /**
4154
4241
  *
4155
4242
  * @export
@@ -4714,13 +4801,13 @@ export interface DoctorCertificateItemModel {
4714
4801
  * @type {string}
4715
4802
  * @memberof DoctorCertificateItemModel
4716
4803
  */
4717
- 'doctorId'?: string;
4804
+ 'id'?: string;
4718
4805
  /**
4719
4806
  *
4720
4807
  * @type {string}
4721
4808
  * @memberof DoctorCertificateItemModel
4722
4809
  */
4723
- 'id'?: string;
4810
+ 'doctorId'?: string;
4724
4811
  /**
4725
4812
  *
4726
4813
  * @type {string}
@@ -4757,13 +4844,13 @@ export interface DoctorCertificateModel {
4757
4844
  * @type {string}
4758
4845
  * @memberof DoctorCertificateModel
4759
4846
  */
4760
- 'doctorId'?: string;
4847
+ 'id'?: string;
4761
4848
  /**
4762
4849
  *
4763
4850
  * @type {string}
4764
4851
  * @memberof DoctorCertificateModel
4765
4852
  */
4766
- 'id'?: string;
4853
+ 'doctorId'?: string;
4767
4854
  /**
4768
4855
  *
4769
4856
  * @type {string}
@@ -5250,6 +5337,12 @@ export interface DoctorModel {
5250
5337
  * @memberof DoctorModel
5251
5338
  */
5252
5339
  'confirmed'?: boolean;
5340
+ /**
5341
+ *
5342
+ * @type {string}
5343
+ * @memberof DoctorModel
5344
+ */
5345
+ 'languageCode'?: string | null;
5253
5346
  }
5254
5347
  /**
5255
5348
  *
@@ -5464,483 +5557,814 @@ export interface DoctorsModel {
5464
5557
  /**
5465
5558
  *
5466
5559
  * @export
5467
- * @enum {string}
5560
+ * @interface FaqCategoriesModel
5468
5561
  */
5469
- export declare enum Gender {
5470
- NotSpecified = "NotSpecified",
5471
- Male = "Male",
5472
- Female = "Female",
5473
- NonBinary = "NonBinary",
5474
- PreferNotToSay = "PreferNotToSay"
5562
+ export interface FaqCategoriesModel {
5563
+ /**
5564
+ *
5565
+ * @type {Array<FaqCategoryItemModel>}
5566
+ * @memberof FaqCategoriesModel
5567
+ */
5568
+ 'items'?: Array<FaqCategoryItemModel> | null;
5569
+ /**
5570
+ *
5571
+ * @type {PagedListMetaData}
5572
+ * @memberof FaqCategoriesModel
5573
+ */
5574
+ 'metaData'?: PagedListMetaData;
5475
5575
  }
5476
5576
  /**
5477
5577
  *
5478
5578
  * @export
5479
- * @interface HospitalAccreditationItemModel
5579
+ * @interface FaqCategoryBreadCrumbModel
5480
5580
  */
5481
- export interface HospitalAccreditationItemModel {
5581
+ export interface FaqCategoryBreadCrumbModel {
5482
5582
  /**
5483
5583
  *
5484
5584
  * @type {string}
5485
- * @memberof HospitalAccreditationItemModel
5585
+ * @memberof FaqCategoryBreadCrumbModel
5486
5586
  */
5487
- 'hospitalId'?: string;
5587
+ 'id'?: string;
5488
5588
  /**
5489
5589
  *
5490
5590
  * @type {string}
5491
- * @memberof HospitalAccreditationItemModel
5591
+ * @memberof FaqCategoryBreadCrumbModel
5492
5592
  */
5493
- 'accreditationId'?: string;
5593
+ 'name'?: string | null;
5494
5594
  /**
5495
5595
  *
5496
5596
  * @type {string}
5497
- * @memberof HospitalAccreditationItemModel
5597
+ * @memberof FaqCategoryBreadCrumbModel
5498
5598
  */
5499
- 'accreditationName'?: string | null;
5599
+ 'slug'?: string | null;
5500
5600
  /**
5501
5601
  *
5502
5602
  * @type {string}
5503
- * @memberof HospitalAccreditationItemModel
5603
+ * @memberof FaqCategoryBreadCrumbModel
5504
5604
  */
5505
- 'accreditationLogo'?: string | null;
5605
+ 'parentId'?: string | null;
5606
+ /**
5607
+ *
5608
+ * @type {boolean}
5609
+ * @memberof FaqCategoryBreadCrumbModel
5610
+ */
5611
+ 'confirmed'?: boolean;
5506
5612
  }
5507
5613
  /**
5508
5614
  *
5509
5615
  * @export
5510
- * @interface HospitalAccreditationModel
5616
+ * @interface FaqCategoryItemModel
5511
5617
  */
5512
- export interface HospitalAccreditationModel {
5618
+ export interface FaqCategoryItemModel {
5513
5619
  /**
5514
5620
  *
5515
5621
  * @type {string}
5516
- * @memberof HospitalAccreditationModel
5622
+ * @memberof FaqCategoryItemModel
5517
5623
  */
5518
- 'hospitalId'?: string;
5624
+ 'id'?: string;
5519
5625
  /**
5520
5626
  *
5521
5627
  * @type {string}
5522
- * @memberof HospitalAccreditationModel
5628
+ * @memberof FaqCategoryItemModel
5523
5629
  */
5524
- 'accreditationId'?: string;
5630
+ 'parentId'?: string | null;
5525
5631
  /**
5526
5632
  *
5527
5633
  * @type {string}
5528
- * @memberof HospitalAccreditationModel
5634
+ * @memberof FaqCategoryItemModel
5529
5635
  */
5530
- 'accreditationName'?: string | null;
5636
+ 'name'?: string | null;
5531
5637
  /**
5532
5638
  *
5533
5639
  * @type {string}
5534
- * @memberof HospitalAccreditationModel
5640
+ * @memberof FaqCategoryItemModel
5535
5641
  */
5536
- 'accreditationLogo'?: string | null;
5537
- }
5538
- /**
5539
- *
5540
- * @export
5541
- * @interface HospitalAccreditationsModel
5542
- */
5543
- export interface HospitalAccreditationsModel {
5642
+ 'slug'?: string | null;
5544
5643
  /**
5545
5644
  *
5546
- * @type {Array<HospitalAccreditationItemModel>}
5547
- * @memberof HospitalAccreditationsModel
5645
+ * @type {string}
5646
+ * @memberof FaqCategoryItemModel
5548
5647
  */
5549
- 'items'?: Array<HospitalAccreditationItemModel> | null;
5648
+ 'description'?: string | null;
5550
5649
  /**
5551
5650
  *
5552
- * @type {PagedListMetaData}
5553
- * @memberof HospitalAccreditationsModel
5651
+ * @type {number}
5652
+ * @memberof FaqCategoryItemModel
5554
5653
  */
5555
- 'metaData'?: PagedListMetaData;
5654
+ 'order'?: number;
5655
+ /**
5656
+ *
5657
+ * @type {Array<FaqItemModel>}
5658
+ * @memberof FaqCategoryItemModel
5659
+ */
5660
+ 'faqs'?: Array<FaqItemModel> | null;
5661
+ /**
5662
+ *
5663
+ * @type {Array<LocalizedUrlModel>}
5664
+ * @memberof FaqCategoryItemModel
5665
+ */
5666
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5667
+ /**
5668
+ *
5669
+ * @type {boolean}
5670
+ * @memberof FaqCategoryItemModel
5671
+ */
5672
+ 'confirmed'?: boolean;
5556
5673
  }
5557
5674
  /**
5558
5675
  *
5559
5676
  * @export
5560
- * @interface HospitalEquipmentItemModel
5677
+ * @interface FaqCategoryModel
5561
5678
  */
5562
- export interface HospitalEquipmentItemModel {
5679
+ export interface FaqCategoryModel {
5563
5680
  /**
5564
5681
  *
5565
5682
  * @type {string}
5566
- * @memberof HospitalEquipmentItemModel
5683
+ * @memberof FaqCategoryModel
5567
5684
  */
5568
5685
  'id'?: string;
5569
5686
  /**
5570
5687
  *
5571
5688
  * @type {string}
5572
- * @memberof HospitalEquipmentItemModel
5689
+ * @memberof FaqCategoryModel
5573
5690
  */
5574
- 'name'?: string | null;
5691
+ 'parentId'?: string | null;
5575
5692
  /**
5576
5693
  *
5577
5694
  * @type {string}
5578
- * @memberof HospitalEquipmentItemModel
5695
+ * @memberof FaqCategoryModel
5579
5696
  */
5580
- 'description'?: string | null;
5697
+ 'name'?: string | null;
5581
5698
  /**
5582
5699
  *
5583
5700
  * @type {string}
5584
- * @memberof HospitalEquipmentItemModel
5701
+ * @memberof FaqCategoryModel
5585
5702
  */
5586
- 'hospitalId'?: string;
5703
+ 'slug'?: string | null;
5587
5704
  /**
5588
5705
  *
5589
5706
  * @type {string}
5590
- * @memberof HospitalEquipmentItemModel
5707
+ * @memberof FaqCategoryModel
5591
5708
  */
5592
- 'hospitalName'?: string | null;
5709
+ 'description'?: string | null;
5593
5710
  /**
5594
5711
  *
5595
- * @type {Array<MediaModel>}
5596
- * @memberof HospitalEquipmentItemModel
5712
+ * @type {number}
5713
+ * @memberof FaqCategoryModel
5597
5714
  */
5598
- 'medias'?: Array<MediaModel> | null;
5715
+ 'order'?: number;
5599
5716
  /**
5600
5717
  *
5601
- * @type {AuditableEntity}
5602
- * @memberof HospitalEquipmentItemModel
5718
+ * @type {Array<FaqItemModel>}
5719
+ * @memberof FaqCategoryModel
5603
5720
  */
5604
- 'auditableEntity'?: AuditableEntity;
5721
+ 'faqs'?: Array<FaqItemModel> | null;
5722
+ /**
5723
+ *
5724
+ * @type {Array<LocalizedUrlModel>}
5725
+ * @memberof FaqCategoryModel
5726
+ */
5727
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5728
+ /**
5729
+ *
5730
+ * @type {boolean}
5731
+ * @memberof FaqCategoryModel
5732
+ */
5733
+ 'confirmed'?: boolean;
5734
+ /**
5735
+ *
5736
+ * @type {string}
5737
+ * @memberof FaqCategoryModel
5738
+ */
5739
+ 'languageCode'?: string | null;
5605
5740
  }
5606
5741
  /**
5607
5742
  *
5608
5743
  * @export
5609
- * @interface HospitalEquipmentModel
5744
+ * @interface FaqItemModel
5610
5745
  */
5611
- export interface HospitalEquipmentModel {
5746
+ export interface FaqItemModel {
5612
5747
  /**
5613
5748
  *
5614
5749
  * @type {string}
5615
- * @memberof HospitalEquipmentModel
5750
+ * @memberof FaqItemModel
5616
5751
  */
5617
5752
  'id'?: string;
5618
5753
  /**
5619
5754
  *
5620
5755
  * @type {string}
5621
- * @memberof HospitalEquipmentModel
5756
+ * @memberof FaqItemModel
5622
5757
  */
5623
- 'name'?: string | null;
5758
+ 'title'?: string | null;
5624
5759
  /**
5625
5760
  *
5626
5761
  * @type {string}
5627
- * @memberof HospitalEquipmentModel
5762
+ * @memberof FaqItemModel
5628
5763
  */
5629
- 'description'?: string | null;
5764
+ 'slug'?: string | null;
5630
5765
  /**
5631
5766
  *
5632
5767
  * @type {string}
5633
- * @memberof HospitalEquipmentModel
5768
+ * @memberof FaqItemModel
5634
5769
  */
5635
- 'hospitalId'?: string;
5770
+ 'content'?: string | null;
5636
5771
  /**
5637
5772
  *
5638
- * @type {string}
5639
- * @memberof HospitalEquipmentModel
5773
+ * @type {number}
5774
+ * @memberof FaqItemModel
5640
5775
  */
5641
- 'hospitalName'?: string | null;
5776
+ 'order'?: number;
5642
5777
  /**
5643
5778
  *
5644
5779
  * @type {Array<MediaModel>}
5645
- * @memberof HospitalEquipmentModel
5780
+ * @memberof FaqItemModel
5646
5781
  */
5647
5782
  'medias'?: Array<MediaModel> | null;
5648
5783
  /**
5649
5784
  *
5650
5785
  * @type {AuditableEntity}
5651
- * @memberof HospitalEquipmentModel
5786
+ * @memberof FaqItemModel
5652
5787
  */
5653
5788
  'auditableEntity'?: AuditableEntity;
5654
- }
5655
- /**
5656
- *
5657
- * @export
5658
- * @interface HospitalEquipmentsModel
5659
- */
5660
- export interface HospitalEquipmentsModel {
5661
5789
  /**
5662
5790
  *
5663
- * @type {Array<HospitalEquipmentItemModel>}
5664
- * @memberof HospitalEquipmentsModel
5791
+ * @type {Array<LocalizedUrlModel>}
5792
+ * @memberof FaqItemModel
5665
5793
  */
5666
- 'items'?: Array<HospitalEquipmentItemModel> | null;
5794
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5667
5795
  /**
5668
5796
  *
5669
- * @type {PagedListMetaData}
5670
- * @memberof HospitalEquipmentsModel
5797
+ * @type {boolean}
5798
+ * @memberof FaqItemModel
5671
5799
  */
5672
- 'metaData'?: PagedListMetaData;
5800
+ 'confirmed'?: boolean;
5673
5801
  }
5674
5802
  /**
5675
5803
  *
5676
5804
  * @export
5677
- * @interface HospitalEvaluationItemModel
5805
+ * @interface FaqModel
5678
5806
  */
5679
- export interface HospitalEvaluationItemModel {
5807
+ export interface FaqModel {
5680
5808
  /**
5681
5809
  *
5682
5810
  * @type {string}
5683
- * @memberof HospitalEvaluationItemModel
5811
+ * @memberof FaqModel
5684
5812
  */
5685
5813
  'id'?: string;
5686
5814
  /**
5687
5815
  *
5688
5816
  * @type {string}
5689
- * @memberof HospitalEvaluationItemModel
5817
+ * @memberof FaqModel
5690
5818
  */
5691
- 'hospitalId'?: string;
5819
+ 'title'?: string | null;
5692
5820
  /**
5693
5821
  *
5694
5822
  * @type {string}
5695
- * @memberof HospitalEvaluationItemModel
5823
+ * @memberof FaqModel
5696
5824
  */
5697
- 'hospitalName'?: string | null;
5825
+ 'slug'?: string | null;
5698
5826
  /**
5699
5827
  *
5700
5828
  * @type {string}
5701
- * @memberof HospitalEvaluationItemModel
5829
+ * @memberof FaqModel
5702
5830
  */
5703
- 'name'?: string | null;
5831
+ 'content'?: string | null;
5704
5832
  /**
5705
5833
  *
5706
5834
  * @type {number}
5707
- * @memberof HospitalEvaluationItemModel
5835
+ * @memberof FaqModel
5708
5836
  */
5709
- 'stars'?: number;
5837
+ 'order'?: number;
5710
5838
  /**
5711
5839
  *
5712
- * @type {string}
5713
- * @memberof HospitalEvaluationItemModel
5840
+ * @type {Array<MediaModel>}
5841
+ * @memberof FaqModel
5714
5842
  */
5715
- 'description'?: string | null;
5843
+ 'medias'?: Array<MediaModel> | null;
5716
5844
  /**
5717
5845
  *
5718
- * @type {string}
5719
- * @memberof HospitalEvaluationItemModel
5846
+ * @type {AuditableEntity}
5847
+ * @memberof FaqModel
5720
5848
  */
5721
- 'referenceUrl'?: string | null;
5722
- }
5723
- /**
5724
- *
5849
+ 'auditableEntity'?: AuditableEntity;
5850
+ /**
5851
+ *
5852
+ * @type {Array<LocalizedUrlModel>}
5853
+ * @memberof FaqModel
5854
+ */
5855
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5856
+ /**
5857
+ *
5858
+ * @type {boolean}
5859
+ * @memberof FaqModel
5860
+ */
5861
+ 'confirmed'?: boolean;
5862
+ /**
5863
+ *
5864
+ * @type {Array<FaqCategoryBreadCrumbModel>}
5865
+ * @memberof FaqModel
5866
+ */
5867
+ 'categories'?: Array<FaqCategoryBreadCrumbModel> | null;
5868
+ }
5869
+ /**
5870
+ *
5725
5871
  * @export
5726
- * @interface HospitalEvaluationModel
5872
+ * @interface FaqsModel
5727
5873
  */
5728
- export interface HospitalEvaluationModel {
5874
+ export interface FaqsModel {
5729
5875
  /**
5730
5876
  *
5731
- * @type {string}
5732
- * @memberof HospitalEvaluationModel
5877
+ * @type {Array<FaqItemModel>}
5878
+ * @memberof FaqsModel
5733
5879
  */
5734
- 'id'?: string;
5880
+ 'items'?: Array<FaqItemModel> | null;
5881
+ /**
5882
+ *
5883
+ * @type {PagedListMetaData}
5884
+ * @memberof FaqsModel
5885
+ */
5886
+ 'metaData'?: PagedListMetaData;
5887
+ }
5888
+ /**
5889
+ *
5890
+ * @export
5891
+ * @enum {string}
5892
+ */
5893
+ export declare enum Gender {
5894
+ NotSpecified = "NotSpecified",
5895
+ Male = "Male",
5896
+ Female = "Female",
5897
+ NonBinary = "NonBinary",
5898
+ PreferNotToSay = "PreferNotToSay"
5899
+ }
5900
+ /**
5901
+ *
5902
+ * @export
5903
+ * @interface HospitalAccreditationItemModel
5904
+ */
5905
+ export interface HospitalAccreditationItemModel {
5735
5906
  /**
5736
5907
  *
5737
5908
  * @type {string}
5738
- * @memberof HospitalEvaluationModel
5909
+ * @memberof HospitalAccreditationItemModel
5739
5910
  */
5740
5911
  'hospitalId'?: string;
5741
5912
  /**
5742
5913
  *
5743
5914
  * @type {string}
5744
- * @memberof HospitalEvaluationModel
5915
+ * @memberof HospitalAccreditationItemModel
5745
5916
  */
5746
- 'hospitalName'?: string | null;
5917
+ 'accreditationId'?: string;
5747
5918
  /**
5748
5919
  *
5749
5920
  * @type {string}
5750
- * @memberof HospitalEvaluationModel
5921
+ * @memberof HospitalAccreditationItemModel
5751
5922
  */
5752
- 'name'?: string | null;
5923
+ 'accreditationName'?: string | null;
5753
5924
  /**
5754
5925
  *
5755
- * @type {number}
5756
- * @memberof HospitalEvaluationModel
5926
+ * @type {string}
5927
+ * @memberof HospitalAccreditationItemModel
5757
5928
  */
5758
- 'stars'?: number;
5929
+ 'accreditationLogo'?: string | null;
5930
+ }
5931
+ /**
5932
+ *
5933
+ * @export
5934
+ * @interface HospitalAccreditationModel
5935
+ */
5936
+ export interface HospitalAccreditationModel {
5759
5937
  /**
5760
5938
  *
5761
5939
  * @type {string}
5762
- * @memberof HospitalEvaluationModel
5940
+ * @memberof HospitalAccreditationModel
5763
5941
  */
5764
- 'description'?: string | null;
5942
+ 'hospitalId'?: string;
5765
5943
  /**
5766
5944
  *
5767
5945
  * @type {string}
5768
- * @memberof HospitalEvaluationModel
5946
+ * @memberof HospitalAccreditationModel
5769
5947
  */
5770
- 'referenceUrl'?: string | null;
5948
+ 'accreditationId'?: string;
5949
+ /**
5950
+ *
5951
+ * @type {string}
5952
+ * @memberof HospitalAccreditationModel
5953
+ */
5954
+ 'accreditationName'?: string | null;
5955
+ /**
5956
+ *
5957
+ * @type {string}
5958
+ * @memberof HospitalAccreditationModel
5959
+ */
5960
+ 'accreditationLogo'?: string | null;
5771
5961
  }
5772
5962
  /**
5773
5963
  *
5774
5964
  * @export
5775
- * @interface HospitalEvaluationsModel
5965
+ * @interface HospitalAccreditationsModel
5776
5966
  */
5777
- export interface HospitalEvaluationsModel {
5967
+ export interface HospitalAccreditationsModel {
5778
5968
  /**
5779
5969
  *
5780
- * @type {Array<HospitalEvaluationItemModel>}
5781
- * @memberof HospitalEvaluationsModel
5970
+ * @type {Array<HospitalAccreditationItemModel>}
5971
+ * @memberof HospitalAccreditationsModel
5782
5972
  */
5783
- 'items'?: Array<HospitalEvaluationItemModel> | null;
5973
+ 'items'?: Array<HospitalAccreditationItemModel> | null;
5784
5974
  /**
5785
5975
  *
5786
5976
  * @type {PagedListMetaData}
5787
- * @memberof HospitalEvaluationsModel
5977
+ * @memberof HospitalAccreditationsModel
5788
5978
  */
5789
5979
  'metaData'?: PagedListMetaData;
5790
5980
  }
5791
5981
  /**
5792
5982
  *
5793
5983
  * @export
5794
- * @interface HospitalItemModel
5984
+ * @interface HospitalEquipmentItemModel
5795
5985
  */
5796
- export interface HospitalItemModel {
5986
+ export interface HospitalEquipmentItemModel {
5797
5987
  /**
5798
5988
  *
5799
5989
  * @type {string}
5800
- * @memberof HospitalItemModel
5990
+ * @memberof HospitalEquipmentItemModel
5801
5991
  */
5802
5992
  'id'?: string;
5803
5993
  /**
5804
5994
  *
5805
5995
  * @type {string}
5806
- * @memberof HospitalItemModel
5996
+ * @memberof HospitalEquipmentItemModel
5807
5997
  */
5808
5998
  'name'?: string | null;
5809
5999
  /**
5810
6000
  *
5811
6001
  * @type {string}
5812
- * @memberof HospitalItemModel
5813
- */
5814
- 'slug'?: string | null;
5815
- /**
5816
- *
5817
- * @type {string}
5818
- * @memberof HospitalItemModel
6002
+ * @memberof HospitalEquipmentItemModel
5819
6003
  */
5820
6004
  'description'?: string | null;
5821
6005
  /**
5822
6006
  *
5823
6007
  * @type {string}
5824
- * @memberof HospitalItemModel
6008
+ * @memberof HospitalEquipmentItemModel
5825
6009
  */
5826
- 'logo'?: string | null;
6010
+ 'hospitalId'?: string;
5827
6011
  /**
5828
6012
  *
5829
6013
  * @type {string}
5830
- * @memberof HospitalItemModel
6014
+ * @memberof HospitalEquipmentItemModel
5831
6015
  */
5832
- 'overview'?: string | null;
6016
+ 'hospitalName'?: string | null;
5833
6017
  /**
5834
6018
  *
5835
- * @type {number}
5836
- * @memberof HospitalItemModel
6019
+ * @type {Array<MediaModel>}
6020
+ * @memberof HospitalEquipmentItemModel
5837
6021
  */
5838
- 'bedsCount'?: number | null;
6022
+ 'medias'?: Array<MediaModel> | null;
5839
6023
  /**
5840
6024
  *
5841
- * @type {number}
5842
- * @memberof HospitalItemModel
6025
+ * @type {AuditableEntity}
6026
+ * @memberof HospitalEquipmentItemModel
5843
6027
  */
5844
- 'operationsPerYear'?: number | null;
6028
+ 'auditableEntity'?: AuditableEntity;
6029
+ }
6030
+ /**
6031
+ *
6032
+ * @export
6033
+ * @interface HospitalEquipmentModel
6034
+ */
6035
+ export interface HospitalEquipmentModel {
5845
6036
  /**
5846
6037
  *
5847
- * @type {number}
5848
- * @memberof HospitalItemModel
6038
+ * @type {string}
6039
+ * @memberof HospitalEquipmentModel
5849
6040
  */
5850
- 'foundationYear'?: number | null;
6041
+ 'id'?: string;
5851
6042
  /**
5852
6043
  *
5853
- * @type {number}
5854
- * @memberof HospitalItemModel
6044
+ * @type {string}
6045
+ * @memberof HospitalEquipmentModel
5855
6046
  */
5856
- 'medicalStaffCount'?: number | null;
6047
+ 'name'?: string | null;
5857
6048
  /**
5858
6049
  *
5859
- * @type {number}
5860
- * @memberof HospitalItemModel
6050
+ * @type {string}
6051
+ * @memberof HospitalEquipmentModel
5861
6052
  */
5862
- 'doctorCount'?: number | null;
6053
+ 'description'?: string | null;
5863
6054
  /**
5864
6055
  *
5865
6056
  * @type {string}
5866
- * @memberof HospitalItemModel
6057
+ * @memberof HospitalEquipmentModel
5867
6058
  */
5868
- 'countryId'?: string;
6059
+ 'hospitalId'?: string;
5869
6060
  /**
5870
6061
  *
5871
6062
  * @type {string}
5872
- * @memberof HospitalItemModel
6063
+ * @memberof HospitalEquipmentModel
5873
6064
  */
5874
- 'countryName'?: string | null;
6065
+ 'hospitalName'?: string | null;
5875
6066
  /**
5876
6067
  *
5877
- * @type {MarketingType}
5878
- * @memberof HospitalItemModel
6068
+ * @type {Array<MediaModel>}
6069
+ * @memberof HospitalEquipmentModel
5879
6070
  */
5880
- 'marketingType'?: MarketingType;
6071
+ 'medias'?: Array<MediaModel> | null;
5881
6072
  /**
5882
6073
  *
5883
- * @type {boolean}
5884
- * @memberof HospitalItemModel
6074
+ * @type {AuditableEntity}
6075
+ * @memberof HospitalEquipmentModel
5885
6076
  */
5886
- 'consultationEnabled'?: boolean | null;
6077
+ 'auditableEntity'?: AuditableEntity;
6078
+ }
6079
+ /**
6080
+ *
6081
+ * @export
6082
+ * @interface HospitalEquipmentsModel
6083
+ */
6084
+ export interface HospitalEquipmentsModel {
5887
6085
  /**
5888
6086
  *
5889
- * @type {number}
5890
- * @memberof HospitalItemModel
6087
+ * @type {Array<HospitalEquipmentItemModel>}
6088
+ * @memberof HospitalEquipmentsModel
5891
6089
  */
5892
- 'consultationFee'?: number | null;
6090
+ 'items'?: Array<HospitalEquipmentItemModel> | null;
5893
6091
  /**
5894
6092
  *
5895
- * @type {string}
5896
- * @memberof HospitalItemModel
6093
+ * @type {PagedListMetaData}
6094
+ * @memberof HospitalEquipmentsModel
5897
6095
  */
5898
- 'timeZone'?: string | null;
6096
+ 'metaData'?: PagedListMetaData;
6097
+ }
6098
+ /**
6099
+ *
6100
+ * @export
6101
+ * @interface HospitalEvaluationItemModel
6102
+ */
6103
+ export interface HospitalEvaluationItemModel {
5899
6104
  /**
5900
6105
  *
5901
- * @type {number}
5902
- * @memberof HospitalItemModel
6106
+ * @type {string}
6107
+ * @memberof HospitalEvaluationItemModel
5903
6108
  */
5904
- 'articlesCount'?: number;
6109
+ 'id'?: string;
5905
6110
  /**
5906
6111
  *
5907
- * @type {number}
5908
- * @memberof HospitalItemModel
6112
+ * @type {string}
6113
+ * @memberof HospitalEvaluationItemModel
5909
6114
  */
5910
- 'packagesCount'?: number;
6115
+ 'hospitalId'?: string;
5911
6116
  /**
5912
6117
  *
5913
- * @type {number}
5914
- * @memberof HospitalItemModel
6118
+ * @type {string}
6119
+ * @memberof HospitalEvaluationItemModel
5915
6120
  */
5916
- 'equipmentsCount'?: number;
6121
+ 'hospitalName'?: string | null;
5917
6122
  /**
5918
6123
  *
5919
- * @type {number}
5920
- * @memberof HospitalItemModel
6124
+ * @type {string}
6125
+ * @memberof HospitalEvaluationItemModel
5921
6126
  */
5922
- 'reviewsCount'?: number;
6127
+ 'name'?: string | null;
5923
6128
  /**
5924
6129
  *
5925
6130
  * @type {number}
5926
- * @memberof HospitalItemModel
6131
+ * @memberof HospitalEvaluationItemModel
5927
6132
  */
5928
- 'departmentsCount'?: number;
6133
+ 'stars'?: number;
5929
6134
  /**
5930
6135
  *
5931
- * @type {number}
5932
- * @memberof HospitalItemModel
6136
+ * @type {string}
6137
+ * @memberof HospitalEvaluationItemModel
5933
6138
  */
5934
- 'specialtiesCount'?: number;
6139
+ 'description'?: string | null;
5935
6140
  /**
5936
6141
  *
5937
- * @type {number}
5938
- * @memberof HospitalItemModel
6142
+ * @type {string}
6143
+ * @memberof HospitalEvaluationItemModel
5939
6144
  */
5940
- 'accreditationsCount'?: number;
6145
+ 'referenceUrl'?: string | null;
6146
+ }
6147
+ /**
6148
+ *
6149
+ * @export
6150
+ * @interface HospitalEvaluationModel
6151
+ */
6152
+ export interface HospitalEvaluationModel {
5941
6153
  /**
5942
6154
  *
5943
- * @type {number}
6155
+ * @type {string}
6156
+ * @memberof HospitalEvaluationModel
6157
+ */
6158
+ 'id'?: string;
6159
+ /**
6160
+ *
6161
+ * @type {string}
6162
+ * @memberof HospitalEvaluationModel
6163
+ */
6164
+ 'hospitalId'?: string;
6165
+ /**
6166
+ *
6167
+ * @type {string}
6168
+ * @memberof HospitalEvaluationModel
6169
+ */
6170
+ 'hospitalName'?: string | null;
6171
+ /**
6172
+ *
6173
+ * @type {string}
6174
+ * @memberof HospitalEvaluationModel
6175
+ */
6176
+ 'name'?: string | null;
6177
+ /**
6178
+ *
6179
+ * @type {number}
6180
+ * @memberof HospitalEvaluationModel
6181
+ */
6182
+ 'stars'?: number;
6183
+ /**
6184
+ *
6185
+ * @type {string}
6186
+ * @memberof HospitalEvaluationModel
6187
+ */
6188
+ 'description'?: string | null;
6189
+ /**
6190
+ *
6191
+ * @type {string}
6192
+ * @memberof HospitalEvaluationModel
6193
+ */
6194
+ 'referenceUrl'?: string | null;
6195
+ }
6196
+ /**
6197
+ *
6198
+ * @export
6199
+ * @interface HospitalEvaluationsModel
6200
+ */
6201
+ export interface HospitalEvaluationsModel {
6202
+ /**
6203
+ *
6204
+ * @type {Array<HospitalEvaluationItemModel>}
6205
+ * @memberof HospitalEvaluationsModel
6206
+ */
6207
+ 'items'?: Array<HospitalEvaluationItemModel> | null;
6208
+ /**
6209
+ *
6210
+ * @type {PagedListMetaData}
6211
+ * @memberof HospitalEvaluationsModel
6212
+ */
6213
+ 'metaData'?: PagedListMetaData;
6214
+ }
6215
+ /**
6216
+ *
6217
+ * @export
6218
+ * @interface HospitalItemModel
6219
+ */
6220
+ export interface HospitalItemModel {
6221
+ /**
6222
+ *
6223
+ * @type {string}
6224
+ * @memberof HospitalItemModel
6225
+ */
6226
+ 'id'?: string;
6227
+ /**
6228
+ *
6229
+ * @type {string}
6230
+ * @memberof HospitalItemModel
6231
+ */
6232
+ 'name'?: string | null;
6233
+ /**
6234
+ *
6235
+ * @type {string}
6236
+ * @memberof HospitalItemModel
6237
+ */
6238
+ 'slug'?: string | null;
6239
+ /**
6240
+ *
6241
+ * @type {string}
6242
+ * @memberof HospitalItemModel
6243
+ */
6244
+ 'description'?: string | null;
6245
+ /**
6246
+ *
6247
+ * @type {string}
6248
+ * @memberof HospitalItemModel
6249
+ */
6250
+ 'logo'?: string | null;
6251
+ /**
6252
+ *
6253
+ * @type {string}
6254
+ * @memberof HospitalItemModel
6255
+ */
6256
+ 'overview'?: string | null;
6257
+ /**
6258
+ *
6259
+ * @type {number}
6260
+ * @memberof HospitalItemModel
6261
+ */
6262
+ 'bedsCount'?: number | null;
6263
+ /**
6264
+ *
6265
+ * @type {number}
6266
+ * @memberof HospitalItemModel
6267
+ */
6268
+ 'operationsPerYear'?: number | null;
6269
+ /**
6270
+ *
6271
+ * @type {number}
6272
+ * @memberof HospitalItemModel
6273
+ */
6274
+ 'foundationYear'?: number | null;
6275
+ /**
6276
+ *
6277
+ * @type {number}
6278
+ * @memberof HospitalItemModel
6279
+ */
6280
+ 'medicalStaffCount'?: number | null;
6281
+ /**
6282
+ *
6283
+ * @type {number}
6284
+ * @memberof HospitalItemModel
6285
+ */
6286
+ 'doctorCount'?: number | null;
6287
+ /**
6288
+ *
6289
+ * @type {string}
6290
+ * @memberof HospitalItemModel
6291
+ */
6292
+ 'countryId'?: string;
6293
+ /**
6294
+ *
6295
+ * @type {string}
6296
+ * @memberof HospitalItemModel
6297
+ */
6298
+ 'countryName'?: string | null;
6299
+ /**
6300
+ *
6301
+ * @type {MarketingType}
6302
+ * @memberof HospitalItemModel
6303
+ */
6304
+ 'marketingType'?: MarketingType;
6305
+ /**
6306
+ *
6307
+ * @type {boolean}
6308
+ * @memberof HospitalItemModel
6309
+ */
6310
+ 'consultationEnabled'?: boolean | null;
6311
+ /**
6312
+ *
6313
+ * @type {number}
6314
+ * @memberof HospitalItemModel
6315
+ */
6316
+ 'consultationFee'?: number | null;
6317
+ /**
6318
+ *
6319
+ * @type {string}
6320
+ * @memberof HospitalItemModel
6321
+ */
6322
+ 'timeZone'?: string | null;
6323
+ /**
6324
+ *
6325
+ * @type {number}
6326
+ * @memberof HospitalItemModel
6327
+ */
6328
+ 'articlesCount'?: number;
6329
+ /**
6330
+ *
6331
+ * @type {number}
6332
+ * @memberof HospitalItemModel
6333
+ */
6334
+ 'packagesCount'?: number;
6335
+ /**
6336
+ *
6337
+ * @type {number}
6338
+ * @memberof HospitalItemModel
6339
+ */
6340
+ 'equipmentsCount'?: number;
6341
+ /**
6342
+ *
6343
+ * @type {number}
6344
+ * @memberof HospitalItemModel
6345
+ */
6346
+ 'reviewsCount'?: number;
6347
+ /**
6348
+ *
6349
+ * @type {number}
6350
+ * @memberof HospitalItemModel
6351
+ */
6352
+ 'departmentsCount'?: number;
6353
+ /**
6354
+ *
6355
+ * @type {number}
6356
+ * @memberof HospitalItemModel
6357
+ */
6358
+ 'specialtiesCount'?: number;
6359
+ /**
6360
+ *
6361
+ * @type {number}
6362
+ * @memberof HospitalItemModel
6363
+ */
6364
+ 'accreditationsCount'?: number;
6365
+ /**
6366
+ *
6367
+ * @type {number}
5944
6368
  * @memberof HospitalItemModel
5945
6369
  */
5946
6370
  'doctorAffiliationsCount'?: number;
@@ -6531,6 +6955,12 @@ export interface HospitalSimpleItemModel {
6531
6955
  * @memberof HospitalSimpleItemModel
6532
6956
  */
6533
6957
  'name'?: string | null;
6958
+ /**
6959
+ *
6960
+ * @type {boolean}
6961
+ * @memberof HospitalSimpleItemModel
6962
+ */
6963
+ 'confirmed'?: boolean;
6534
6964
  }
6535
6965
  /**
6536
6966
  *
@@ -8267,6 +8697,19 @@ export declare enum RejectReason {
8267
8697
  ScheduleNotAvailable = "ScheduleNotAvailable",
8268
8698
  OtherReason = "OtherReason"
8269
8699
  }
8700
+ /**
8701
+ *
8702
+ * @export
8703
+ * @interface SendTemplateVersionCommand
8704
+ */
8705
+ export interface SendTemplateVersionCommand {
8706
+ /**
8707
+ *
8708
+ * @type {string}
8709
+ * @memberof SendTemplateVersionCommand
8710
+ */
8711
+ 'testEmail'?: string | null;
8712
+ }
8270
8713
  /**
8271
8714
  *
8272
8715
  * @export
@@ -8889,58 +9332,187 @@ export interface TagsModel {
8889
9332
  /**
8890
9333
  *
8891
9334
  * @export
8892
- * @interface TranslateCommand
9335
+ * @interface TemplateVersionItemModel
8893
9336
  */
8894
- export interface TranslateCommand {
8895
- /**
8896
- *
8897
- * @type {string}
8898
- * @memberof TranslateCommand
8899
- */
8900
- 'languageCodeFrom'?: string | null;
9337
+ export interface TemplateVersionItemModel {
8901
9338
  /**
8902
9339
  *
8903
9340
  * @type {string}
8904
- * @memberof TranslateCommand
9341
+ * @memberof TemplateVersionItemModel
8905
9342
  */
8906
- 'languageCodeTo'?: string | null;
9343
+ 'id'?: string | null;
8907
9344
  /**
8908
9345
  *
8909
9346
  * @type {string}
8910
- * @memberof TranslateCommand
9347
+ * @memberof TemplateVersionItemModel
8911
9348
  */
8912
- 'content'?: string | null;
9349
+ 'templateId'?: string | null;
8913
9350
  /**
8914
9351
  *
8915
9352
  * @type {boolean}
8916
- * @memberof TranslateCommand
9353
+ * @memberof TemplateVersionItemModel
8917
9354
  */
8918
- 'isHtml'?: boolean;
8919
- }
8920
- /**
8921
- *
8922
- * @export
8923
- * @interface UpdateAccreditationCommand
8924
- */
8925
- export interface UpdateAccreditationCommand {
9355
+ 'isActive'?: boolean;
8926
9356
  /**
8927
9357
  *
8928
9358
  * @type {string}
8929
- * @memberof UpdateAccreditationCommand
9359
+ * @memberof TemplateVersionItemModel
8930
9360
  */
8931
9361
  'name'?: string | null;
8932
9362
  /**
8933
9363
  *
8934
9364
  * @type {string}
8935
- * @memberof UpdateAccreditationCommand
9365
+ * @memberof TemplateVersionItemModel
8936
9366
  */
8937
- 'logo'?: string | null;
9367
+ 'htmlContent'?: string | null;
8938
9368
  /**
8939
9369
  *
8940
9370
  * @type {string}
8941
- * @memberof UpdateAccreditationCommand
9371
+ * @memberof TemplateVersionItemModel
8942
9372
  */
8943
- 'country'?: string | null;
9373
+ 'textContent'?: string | null;
9374
+ /**
9375
+ *
9376
+ * @type {string}
9377
+ * @memberof TemplateVersionItemModel
9378
+ */
9379
+ 'subject'?: string | null;
9380
+ /**
9381
+ *
9382
+ * @type {Date}
9383
+ * @memberof TemplateVersionItemModel
9384
+ */
9385
+ 'updatedOn'?: Date;
9386
+ }
9387
+ /**
9388
+ *
9389
+ * @export
9390
+ * @interface TemplateVersionModel
9391
+ */
9392
+ export interface TemplateVersionModel {
9393
+ /**
9394
+ *
9395
+ * @type {string}
9396
+ * @memberof TemplateVersionModel
9397
+ */
9398
+ 'id'?: string | null;
9399
+ /**
9400
+ *
9401
+ * @type {string}
9402
+ * @memberof TemplateVersionModel
9403
+ */
9404
+ 'templateId'?: string | null;
9405
+ /**
9406
+ *
9407
+ * @type {boolean}
9408
+ * @memberof TemplateVersionModel
9409
+ */
9410
+ 'isActive'?: boolean;
9411
+ /**
9412
+ *
9413
+ * @type {string}
9414
+ * @memberof TemplateVersionModel
9415
+ */
9416
+ 'name'?: string | null;
9417
+ /**
9418
+ *
9419
+ * @type {string}
9420
+ * @memberof TemplateVersionModel
9421
+ */
9422
+ 'htmlContent'?: string | null;
9423
+ /**
9424
+ *
9425
+ * @type {string}
9426
+ * @memberof TemplateVersionModel
9427
+ */
9428
+ 'textContent'?: string | null;
9429
+ /**
9430
+ *
9431
+ * @type {string}
9432
+ * @memberof TemplateVersionModel
9433
+ */
9434
+ 'subject'?: string | null;
9435
+ /**
9436
+ *
9437
+ * @type {Date}
9438
+ * @memberof TemplateVersionModel
9439
+ */
9440
+ 'updatedOn'?: Date;
9441
+ }
9442
+ /**
9443
+ *
9444
+ * @export
9445
+ * @interface TemplateVersionsModel
9446
+ */
9447
+ export interface TemplateVersionsModel {
9448
+ /**
9449
+ *
9450
+ * @type {Array<TemplateVersionItemModel>}
9451
+ * @memberof TemplateVersionsModel
9452
+ */
9453
+ 'items'?: Array<TemplateVersionItemModel> | null;
9454
+ /**
9455
+ *
9456
+ * @type {PagedListMetaData}
9457
+ * @memberof TemplateVersionsModel
9458
+ */
9459
+ 'metaData'?: PagedListMetaData;
9460
+ }
9461
+ /**
9462
+ *
9463
+ * @export
9464
+ * @interface TranslateCommand
9465
+ */
9466
+ export interface TranslateCommand {
9467
+ /**
9468
+ *
9469
+ * @type {string}
9470
+ * @memberof TranslateCommand
9471
+ */
9472
+ 'languageCodeFrom'?: string | null;
9473
+ /**
9474
+ *
9475
+ * @type {string}
9476
+ * @memberof TranslateCommand
9477
+ */
9478
+ 'languageCodeTo'?: string | null;
9479
+ /**
9480
+ *
9481
+ * @type {string}
9482
+ * @memberof TranslateCommand
9483
+ */
9484
+ 'content'?: string | null;
9485
+ /**
9486
+ *
9487
+ * @type {boolean}
9488
+ * @memberof TranslateCommand
9489
+ */
9490
+ 'isHtml'?: boolean;
9491
+ }
9492
+ /**
9493
+ *
9494
+ * @export
9495
+ * @interface UpdateAccreditationCommand
9496
+ */
9497
+ export interface UpdateAccreditationCommand {
9498
+ /**
9499
+ *
9500
+ * @type {string}
9501
+ * @memberof UpdateAccreditationCommand
9502
+ */
9503
+ 'name'?: string | null;
9504
+ /**
9505
+ *
9506
+ * @type {string}
9507
+ * @memberof UpdateAccreditationCommand
9508
+ */
9509
+ 'logo'?: string | null;
9510
+ /**
9511
+ *
9512
+ * @type {string}
9513
+ * @memberof UpdateAccreditationCommand
9514
+ */
9515
+ 'country'?: string | null;
8944
9516
  }
8945
9517
  /**
8946
9518
  *
@@ -9334,6 +9906,18 @@ export interface UpdateCountryCommand {
9334
9906
  * @memberof UpdateCountryCommand
9335
9907
  */
9336
9908
  'content'?: string | null;
9909
+ /**
9910
+ *
9911
+ * @type {string}
9912
+ * @memberof UpdateCountryCommand
9913
+ */
9914
+ 'languageCode'?: string | null;
9915
+ /**
9916
+ *
9917
+ * @type {boolean}
9918
+ * @memberof UpdateCountryCommand
9919
+ */
9920
+ 'confirmed'?: boolean;
9337
9921
  /**
9338
9922
  *
9339
9923
  * @type {Array<MediaModel>}
@@ -9573,6 +10157,18 @@ export interface UpdateDoctorCommand {
9573
10157
  * @memberof UpdateDoctorCommand
9574
10158
  */
9575
10159
  'hospitalId'?: string | null;
10160
+ /**
10161
+ *
10162
+ * @type {string}
10163
+ * @memberof UpdateDoctorCommand
10164
+ */
10165
+ 'languageCode'?: string | null;
10166
+ /**
10167
+ *
10168
+ * @type {boolean}
10169
+ * @memberof UpdateDoctorCommand
10170
+ */
10171
+ 'confirmed'?: boolean;
9576
10172
  }
9577
10173
  /**
9578
10174
  *
@@ -9655,6 +10251,104 @@ export interface UpdateDoctorSpecialtyCommand {
9655
10251
  */
9656
10252
  'order'?: number;
9657
10253
  }
10254
+ /**
10255
+ *
10256
+ * @export
10257
+ * @interface UpdateFaqCategoryCommand
10258
+ */
10259
+ export interface UpdateFaqCategoryCommand {
10260
+ /**
10261
+ *
10262
+ * @type {string}
10263
+ * @memberof UpdateFaqCategoryCommand
10264
+ */
10265
+ 'id'?: string | null;
10266
+ /**
10267
+ *
10268
+ * @type {string}
10269
+ * @memberof UpdateFaqCategoryCommand
10270
+ */
10271
+ 'name'?: string | null;
10272
+ /**
10273
+ *
10274
+ * @type {string}
10275
+ * @memberof UpdateFaqCategoryCommand
10276
+ */
10277
+ 'slug'?: string | null;
10278
+ /**
10279
+ *
10280
+ * @type {string}
10281
+ * @memberof UpdateFaqCategoryCommand
10282
+ */
10283
+ 'description'?: string | null;
10284
+ /**
10285
+ *
10286
+ * @type {number}
10287
+ * @memberof UpdateFaqCategoryCommand
10288
+ */
10289
+ 'order'?: number;
10290
+ /**
10291
+ *
10292
+ * @type {string}
10293
+ * @memberof UpdateFaqCategoryCommand
10294
+ */
10295
+ 'languageCode'?: string | null;
10296
+ /**
10297
+ *
10298
+ * @type {boolean}
10299
+ * @memberof UpdateFaqCategoryCommand
10300
+ */
10301
+ 'confirmed'?: boolean;
10302
+ }
10303
+ /**
10304
+ *
10305
+ * @export
10306
+ * @interface UpdateFaqCommand
10307
+ */
10308
+ export interface UpdateFaqCommand {
10309
+ /**
10310
+ *
10311
+ * @type {string}
10312
+ * @memberof UpdateFaqCommand
10313
+ */
10314
+ 'id'?: string;
10315
+ /**
10316
+ *
10317
+ * @type {string}
10318
+ * @memberof UpdateFaqCommand
10319
+ */
10320
+ 'title'?: string | null;
10321
+ /**
10322
+ *
10323
+ * @type {string}
10324
+ * @memberof UpdateFaqCommand
10325
+ */
10326
+ 'slug'?: string | null;
10327
+ /**
10328
+ *
10329
+ * @type {string}
10330
+ * @memberof UpdateFaqCommand
10331
+ */
10332
+ 'content'?: string | null;
10333
+ /**
10334
+ *
10335
+ * @type {number}
10336
+ * @memberof UpdateFaqCommand
10337
+ */
10338
+ 'order'?: number;
10339
+ /**
10340
+ *
10341
+ * @type {string}
10342
+ * @memberof UpdateFaqCommand
10343
+ */
10344
+ 'languageCode'?: string | null;
10345
+ /**
10346
+ *
10347
+ * @type {boolean}
10348
+ * @memberof UpdateFaqCommand
10349
+ */
10350
+ 'confirmed'?: boolean;
10351
+ }
9658
10352
  /**
9659
10353
  *
9660
10354
  * @export
@@ -9873,6 +10567,18 @@ export interface UpdateHospitalServiceCommand {
9873
10567
  * @memberof UpdateHospitalServiceCommand
9874
10568
  */
9875
10569
  'order'?: number;
10570
+ /**
10571
+ *
10572
+ * @type {string}
10573
+ * @memberof UpdateHospitalServiceCommand
10574
+ */
10575
+ 'languageCode'?: string | null;
10576
+ /**
10577
+ *
10578
+ * @type {boolean}
10579
+ * @memberof UpdateHospitalServiceCommand
10580
+ */
10581
+ 'confirmed'?: boolean;
9876
10582
  }
9877
10583
  /**
9878
10584
  *
@@ -10242,42 +10948,24 @@ export interface UpdateSpecialtyCommand {
10242
10948
  * @memberof UpdateSpecialtyCommand
10243
10949
  */
10244
10950
  'content'?: string | null;
10245
- /**
10246
- *
10247
- * @type {number}
10248
- * @memberof UpdateSpecialtyCommand
10249
- */
10250
- 'hospitalSpecialtyCount'?: number;
10251
- /**
10252
- *
10253
- * @type {number}
10254
- * @memberof UpdateSpecialtyCommand
10255
- */
10256
- 'serviceCount'?: number;
10257
10951
  /**
10258
10952
  *
10259
10953
  * @type {string}
10260
10954
  * @memberof UpdateSpecialtyCommand
10261
10955
  */
10262
- 'specialtyTypeId'?: string;
10956
+ 'languageCode'?: string | null;
10263
10957
  /**
10264
10958
  *
10265
10959
  * @type {string}
10266
10960
  * @memberof UpdateSpecialtyCommand
10267
10961
  */
10268
- 'specialtyTypeName'?: string | null;
10962
+ 'specialtyTypeId'?: string;
10269
10963
  /**
10270
10964
  *
10271
10965
  * @type {boolean}
10272
10966
  * @memberof UpdateSpecialtyCommand
10273
10967
  */
10274
10968
  'confirmed'?: boolean;
10275
- /**
10276
- *
10277
- * @type {AuditableEntity}
10278
- * @memberof UpdateSpecialtyCommand
10279
- */
10280
- 'auditableEntity'?: AuditableEntity;
10281
10969
  }
10282
10970
  /**
10283
10971
  *
@@ -10345,7 +11033,38 @@ export interface UpdateSpecialtyTypeCommand {
10345
11033
  * @memberof UpdateSpecialtyTypeCommand
10346
11034
  */
10347
11035
  'confirmed'?: boolean;
10348
- }
11036
+ /**
11037
+ *
11038
+ * @type {string}
11039
+ * @memberof UpdateSpecialtyTypeCommand
11040
+ */
11041
+ 'languageCode'?: string | null;
11042
+ }
11043
+ /**
11044
+ *
11045
+ * @export
11046
+ * @interface UpdateTemplateVersionCommand
11047
+ */
11048
+ export interface UpdateTemplateVersionCommand {
11049
+ /**
11050
+ *
11051
+ * @type {string}
11052
+ * @memberof UpdateTemplateVersionCommand
11053
+ */
11054
+ 'name'?: string | null;
11055
+ /**
11056
+ *
11057
+ * @type {string}
11058
+ * @memberof UpdateTemplateVersionCommand
11059
+ */
11060
+ 'subject'?: string | null;
11061
+ /**
11062
+ *
11063
+ * @type {string}
11064
+ * @memberof UpdateTemplateVersionCommand
11065
+ */
11066
+ 'htmlContent'?: string | null;
11067
+ }
10349
11068
  /**
10350
11069
  *
10351
11070
  * @export
@@ -12612,6 +13331,12 @@ export declare class CHManagersApi extends BaseAPI {
12612
13331
  * @export
12613
13332
  */
12614
13333
  export declare const ChatUsersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
13334
+ /**
13335
+ *
13336
+ * @param {*} [options] Override http request option.
13337
+ * @throws {RequiredError}
13338
+ */
13339
+ apiV1ChatusersCurrentGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
12615
13340
  /**
12616
13341
  *
12617
13342
  * @summary Get all chatUsers.
@@ -12663,6 +13388,12 @@ export declare const ChatUsersApiAxiosParamCreator: (configuration?: Configurati
12663
13388
  * @export
12664
13389
  */
12665
13390
  export declare const ChatUsersApiFp: (configuration?: Configuration | undefined) => {
13391
+ /**
13392
+ *
13393
+ * @param {*} [options] Override http request option.
13394
+ * @throws {RequiredError}
13395
+ */
13396
+ apiV1ChatusersCurrentGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
12666
13397
  /**
12667
13398
  *
12668
13399
  * @summary Get all chatUsers.
@@ -12714,6 +13445,12 @@ export declare const ChatUsersApiFp: (configuration?: Configuration | undefined)
12714
13445
  * @export
12715
13446
  */
12716
13447
  export declare const ChatUsersApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
13448
+ /**
13449
+ *
13450
+ * @param {*} [options] Override http request option.
13451
+ * @throws {RequiredError}
13452
+ */
13453
+ apiV1ChatusersCurrentGet(options?: any): AxiosPromise<ChatUserModel>;
12717
13454
  /**
12718
13455
  *
12719
13456
  * @summary Get all chatUsers.
@@ -12767,6 +13504,13 @@ export declare const ChatUsersApiFactory: (configuration?: Configuration | undef
12767
13504
  * @extends {BaseAPI}
12768
13505
  */
12769
13506
  export declare class ChatUsersApi extends BaseAPI {
13507
+ /**
13508
+ *
13509
+ * @param {*} [options] Override http request option.
13510
+ * @throws {RequiredError}
13511
+ * @memberof ChatUsersApi
13512
+ */
13513
+ apiV1ChatusersCurrentGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel>>;
12770
13514
  /**
12771
13515
  *
12772
13516
  * @summary Get all chatUsers.
@@ -14657,238 +15401,966 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
14657
15401
  * @param {*} [options] Override http request option.
14658
15402
  * @throws {RequiredError}
14659
15403
  */
14660
- apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand | undefined, options?: any): AxiosPromise<DealServiceModel>;
15404
+ apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand | undefined, options?: any): AxiosPromise<DealServiceModel>;
15405
+ /**
15406
+ *
15407
+ * @summary Get all deals.
15408
+ * @param {string} [id]
15409
+ * @param {string} [name]
15410
+ * @param {MarketingType} [marketingType]
15411
+ * @param {string} [countryId]
15412
+ * @param {string} [hospitalId]
15413
+ * @param {string} [hospitalName]
15414
+ * @param {string} [specialtyId]
15415
+ * @param {string} [specialtyTypeId]
15416
+ * @param {string} [exceptHospitalId]
15417
+ * @param {string} [exceptDealId]
15418
+ * @param {Array<string>} [ids]
15419
+ * @param {number} [page]
15420
+ * @param {number} [limit]
15421
+ * @param {Date} [lastRetrieved]
15422
+ * @param {*} [options] Override http request option.
15423
+ * @throws {RequiredError}
15424
+ */
15425
+ apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
15426
+ /**
15427
+ *
15428
+ * @summary Create a deal.
15429
+ * @param {CreateDealCommand} [createDealCommand]
15430
+ * @param {*} [options] Override http request option.
15431
+ * @throws {RequiredError}
15432
+ */
15433
+ apiV1DealsPost(createDealCommand?: CreateDealCommand | undefined, options?: any): AxiosPromise<DealModel>;
15434
+ /**
15435
+ *
15436
+ * @summary Get deal by slug.
15437
+ * @param {string} slug
15438
+ * @param {*} [options] Override http request option.
15439
+ * @throws {RequiredError}
15440
+ */
15441
+ apiV1DealsSlugGet(slug: string, options?: any): AxiosPromise<DealModel>;
15442
+ };
15443
+ /**
15444
+ * DealsApi - object-oriented interface
15445
+ * @export
15446
+ * @class DealsApi
15447
+ * @extends {BaseAPI}
15448
+ */
15449
+ export declare class DealsApi extends BaseAPI {
15450
+ /**
15451
+ *
15452
+ * @summary Delete deal.
15453
+ * @param {string} dealId
15454
+ * @param {*} [options] Override http request option.
15455
+ * @throws {RequiredError}
15456
+ * @memberof DealsApi
15457
+ */
15458
+ apiV1DealsDealIdDelete(dealId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15459
+ /**
15460
+ *
15461
+ * @summary Get deal.
15462
+ * @param {string} dealId
15463
+ * @param {*} [options] Override http request option.
15464
+ * @throws {RequiredError}
15465
+ * @memberof DealsApi
15466
+ */
15467
+ apiV1DealsDealIdGet(dealId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
15468
+ /**
15469
+ *
15470
+ * @summary Get all DealPackage.
15471
+ * @param {string} dealId
15472
+ * @param {string} [relatedDealPackageId]
15473
+ * @param {string} [dealName]
15474
+ * @param {string} [name]
15475
+ * @param {string} [countryId]
15476
+ * @param {string} [hospitalId]
15477
+ * @param {string} [hospitalName]
15478
+ * @param {number} [page]
15479
+ * @param {number} [limit]
15480
+ * @param {Date} [lastRetrieved]
15481
+ * @param {*} [options] Override http request option.
15482
+ * @throws {RequiredError}
15483
+ * @memberof DealsApi
15484
+ */
15485
+ apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackagesModel>>;
15486
+ /**
15487
+ *
15488
+ * @summary Delete DealPackage.
15489
+ * @param {string} dealId
15490
+ * @param {string} packageId
15491
+ * @param {*} [options] Override http request option.
15492
+ * @throws {RequiredError}
15493
+ * @memberof DealsApi
15494
+ */
15495
+ apiV1DealsDealIdPackagesPackageIdDelete(dealId: string, packageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15496
+ /**
15497
+ *
15498
+ * @summary Get DealPackage.
15499
+ * @param {string} dealId
15500
+ * @param {string} packageId
15501
+ * @param {*} [options] Override http request option.
15502
+ * @throws {RequiredError}
15503
+ * @memberof DealsApi
15504
+ */
15505
+ apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackageModel>>;
15506
+ /**
15507
+ *
15508
+ * @summary Update DealPackage.
15509
+ * @param {string} dealId
15510
+ * @param {string} packageId
15511
+ * @param {UpdateDealPackageCommand} [updateDealPackageCommand]
15512
+ * @param {*} [options] Override http request option.
15513
+ * @throws {RequiredError}
15514
+ * @memberof DealsApi
15515
+ */
15516
+ apiV1DealsDealIdPackagesPackageIdPut(dealId: string, packageId: string, updateDealPackageCommand?: UpdateDealPackageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackageModel>>;
15517
+ /**
15518
+ *
15519
+ * @summary Create DealPackage.
15520
+ * @param {string} dealId
15521
+ * @param {CreateDealPackageCommand} [createDealPackageCommand]
15522
+ * @param {*} [options] Override http request option.
15523
+ * @throws {RequiredError}
15524
+ * @memberof DealsApi
15525
+ */
15526
+ apiV1DealsDealIdPackagesPost(dealId: string, createDealPackageCommand?: CreateDealPackageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackageModel>>;
15527
+ /**
15528
+ *
15529
+ * @summary Update deal.
15530
+ * @param {string} dealId
15531
+ * @param {UpdateDealCommand} [updateDealCommand]
15532
+ * @param {*} [options] Override http request option.
15533
+ * @throws {RequiredError}
15534
+ * @memberof DealsApi
15535
+ */
15536
+ apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
15537
+ /**
15538
+ *
15539
+ * @summary Get all DealService.
15540
+ * @param {string} dealId
15541
+ * @param {number} [page]
15542
+ * @param {number} [limit]
15543
+ * @param {Date} [lastRetrieved]
15544
+ * @param {*} [options] Override http request option.
15545
+ * @throws {RequiredError}
15546
+ * @memberof DealsApi
15547
+ */
15548
+ apiV1DealsDealIdServicesGet(dealId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServicesModel>>;
15549
+ /**
15550
+ *
15551
+ * @summary Create DealService.
15552
+ * @param {string} dealId
15553
+ * @param {CreateDealServiceCommand} [createDealServiceCommand]
15554
+ * @param {*} [options] Override http request option.
15555
+ * @throws {RequiredError}
15556
+ * @memberof DealsApi
15557
+ */
15558
+ apiV1DealsDealIdServicesPost(dealId: string, createDealServiceCommand?: CreateDealServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServiceModel>>;
15559
+ /**
15560
+ *
15561
+ * @summary Delete DealService.
15562
+ * @param {string} dealId
15563
+ * @param {string} serviceId
15564
+ * @param {*} [options] Override http request option.
15565
+ * @throws {RequiredError}
15566
+ * @memberof DealsApi
15567
+ */
15568
+ apiV1DealsDealIdServicesServiceIdDelete(dealId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15569
+ /**
15570
+ *
15571
+ * @summary Get DealService.
15572
+ * @param {string} dealId
15573
+ * @param {string} serviceId
15574
+ * @param {*} [options] Override http request option.
15575
+ * @throws {RequiredError}
15576
+ * @memberof DealsApi
15577
+ */
15578
+ apiV1DealsDealIdServicesServiceIdGet(dealId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServiceModel>>;
15579
+ /**
15580
+ *
15581
+ * @summary Update DealService.
15582
+ * @param {string} dealId
15583
+ * @param {string} serviceId
15584
+ * @param {UpdateDealServiceCommand} [updateDealServiceCommand]
15585
+ * @param {*} [options] Override http request option.
15586
+ * @throws {RequiredError}
15587
+ * @memberof DealsApi
15588
+ */
15589
+ apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServiceModel>>;
15590
+ /**
15591
+ *
15592
+ * @summary Get all deals.
15593
+ * @param {string} [id]
15594
+ * @param {string} [name]
15595
+ * @param {MarketingType} [marketingType]
15596
+ * @param {string} [countryId]
15597
+ * @param {string} [hospitalId]
15598
+ * @param {string} [hospitalName]
15599
+ * @param {string} [specialtyId]
15600
+ * @param {string} [specialtyTypeId]
15601
+ * @param {string} [exceptHospitalId]
15602
+ * @param {string} [exceptDealId]
15603
+ * @param {Array<string>} [ids]
15604
+ * @param {number} [page]
15605
+ * @param {number} [limit]
15606
+ * @param {Date} [lastRetrieved]
15607
+ * @param {*} [options] Override http request option.
15608
+ * @throws {RequiredError}
15609
+ * @memberof DealsApi
15610
+ */
15611
+ apiV1DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
15612
+ /**
15613
+ *
15614
+ * @summary Create a deal.
15615
+ * @param {CreateDealCommand} [createDealCommand]
15616
+ * @param {*} [options] Override http request option.
15617
+ * @throws {RequiredError}
15618
+ * @memberof DealsApi
15619
+ */
15620
+ apiV1DealsPost(createDealCommand?: CreateDealCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
15621
+ /**
15622
+ *
15623
+ * @summary Get deal by slug.
15624
+ * @param {string} slug
15625
+ * @param {*} [options] Override http request option.
15626
+ * @throws {RequiredError}
15627
+ * @memberof DealsApi
15628
+ */
15629
+ apiV1DealsSlugGet(slug: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
15630
+ }
15631
+ /**
15632
+ * DoctorsApi - axios parameter creator
15633
+ * @export
15634
+ */
15635
+ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
15636
+ /**
15637
+ *
15638
+ * @summary Get all doctor affiliations.
15639
+ * @param {string} doctorId
15640
+ * @param {string} [hospitalName]
15641
+ * @param {number} [page]
15642
+ * @param {number} [limit]
15643
+ * @param {Date} [lastRetrieved]
15644
+ * @param {*} [options] Override http request option.
15645
+ * @throws {RequiredError}
15646
+ */
15647
+ apiV1DoctorsDoctorIdAffiliationsGet: (doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15648
+ /**
15649
+ *
15650
+ * @summary Delete doctor affiliation.
15651
+ * @param {string} doctorId
15652
+ * @param {string} hospitalId
15653
+ * @param {*} [options] Override http request option.
15654
+ * @throws {RequiredError}
15655
+ */
15656
+ apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete: (doctorId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15657
+ /**
15658
+ *
15659
+ * @summary Get doctor affiliation.
15660
+ * @param {string} doctorId
15661
+ * @param {string} hospitalId
15662
+ * @param {*} [options] Override http request option.
15663
+ * @throws {RequiredError}
15664
+ */
15665
+ apiV1DoctorsDoctorIdAffiliationsHospitalIdGet: (doctorId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15666
+ /**
15667
+ *
15668
+ * @param {string} doctorId
15669
+ * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
15670
+ * @param {*} [options] Override http request option.
15671
+ * @throws {RequiredError}
15672
+ */
15673
+ apiV1DoctorsDoctorIdAffiliationsPost: (doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15674
+ /**
15675
+ *
15676
+ * @summary Delete DoctorCertificate.
15677
+ * @param {string} doctorId
15678
+ * @param {string} certificateId
15679
+ * @param {*} [options] Override http request option.
15680
+ * @throws {RequiredError}
15681
+ */
15682
+ apiV1DoctorsDoctorIdCertificatesCertificateIdDelete: (doctorId: string, certificateId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15683
+ /**
15684
+ *
15685
+ * @summary Get DoctorCertificate.
15686
+ * @param {string} doctorId
15687
+ * @param {string} certificateId
15688
+ * @param {*} [options] Override http request option.
15689
+ * @throws {RequiredError}
15690
+ */
15691
+ apiV1DoctorsDoctorIdCertificatesCertificateIdGet: (doctorId: string, certificateId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15692
+ /**
15693
+ *
15694
+ * @summary Update DoctorCertificate.
15695
+ * @param {string} doctorId
15696
+ * @param {string} certificateId
15697
+ * @param {UpdateDoctorCertificateCommand} [updateDoctorCertificateCommand]
15698
+ * @param {*} [options] Override http request option.
15699
+ * @throws {RequiredError}
15700
+ */
15701
+ apiV1DoctorsDoctorIdCertificatesCertificateIdPut: (doctorId: string, certificateId: string, updateDoctorCertificateCommand?: UpdateDoctorCertificateCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15702
+ /**
15703
+ *
15704
+ * @summary Delete DoctorCertificate.
15705
+ * @param {string} doctorId
15706
+ * @param {string} [doctorName]
15707
+ * @param {string} [certificateId]
15708
+ * @param {string} [certificate]
15709
+ * @param {Date} [activeFrom]
15710
+ * @param {Date} [activeTo]
15711
+ * @param {number} [page]
15712
+ * @param {number} [limit]
15713
+ * @param {Date} [lastRetrieved]
15714
+ * @param {*} [options] Override http request option.
15715
+ * @throws {RequiredError}
15716
+ */
15717
+ apiV1DoctorsDoctorIdCertificatesGet: (doctorId: string, doctorName?: string | undefined, certificateId?: string | undefined, certificate?: string | undefined, activeFrom?: Date | undefined, activeTo?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15718
+ /**
15719
+ *
15720
+ * @summary Create DoctorCertificate.
15721
+ * @param {string} doctorId
15722
+ * @param {CreateDoctorCertificateCommand} [createDoctorCertificateCommand]
15723
+ * @param {*} [options] Override http request option.
15724
+ * @throws {RequiredError}
15725
+ */
15726
+ apiV1DoctorsDoctorIdCertificatesPost: (doctorId: string, createDoctorCertificateCommand?: CreateDoctorCertificateCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15727
+ /**
15728
+ *
15729
+ * @summary Delete Doctor.
15730
+ * @param {string} doctorId
15731
+ * @param {*} [options] Override http request option.
15732
+ * @throws {RequiredError}
15733
+ */
15734
+ apiV1DoctorsDoctorIdDelete: (doctorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15735
+ /**
15736
+ *
15737
+ * @summary Delete DoctorEducation
15738
+ * @param {string} doctorId
15739
+ * @param {string} educationId
15740
+ * @param {*} [options] Override http request option.
15741
+ * @throws {RequiredError}
15742
+ */
15743
+ apiV1DoctorsDoctorIdEducationsEducationIdDelete: (doctorId: string, educationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15744
+ /**
15745
+ *
15746
+ * @summary Get DoctorEducation.
15747
+ * @param {string} doctorId
15748
+ * @param {string} educationId
15749
+ * @param {*} [options] Override http request option.
15750
+ * @throws {RequiredError}
15751
+ */
15752
+ apiV1DoctorsDoctorIdEducationsEducationIdGet: (doctorId: string, educationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15753
+ /**
15754
+ *
15755
+ * @summary Update DoctorEducation.
15756
+ * @param {string} doctorId
15757
+ * @param {string} educationId
15758
+ * @param {UpdateDoctorEducationCommand} [updateDoctorEducationCommand]
15759
+ * @param {*} [options] Override http request option.
15760
+ * @throws {RequiredError}
15761
+ */
15762
+ apiV1DoctorsDoctorIdEducationsEducationIdPut: (doctorId: string, educationId: string, updateDoctorEducationCommand?: UpdateDoctorEducationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15763
+ /**
15764
+ *
15765
+ * @summary Get all DoctorEducations.
15766
+ * @param {string} doctorId
15767
+ * @param {string} [doctorName]
15768
+ * @param {string} [educationId]
15769
+ * @param {string} [institution]
15770
+ * @param {string} [qualification]
15771
+ * @param {Date} [graduationDate]
15772
+ * @param {number} [page]
15773
+ * @param {number} [limit]
15774
+ * @param {Date} [lastRetrieved]
15775
+ * @param {*} [options] Override http request option.
15776
+ * @throws {RequiredError}
15777
+ */
15778
+ apiV1DoctorsDoctorIdEducationsGet: (doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15779
+ /**
15780
+ *
15781
+ * @summary Create DoctorEducation.
15782
+ * @param {string} doctorId
15783
+ * @param {CreateDoctorEducationCommand} [createDoctorEducationCommand]
15784
+ * @param {*} [options] Override http request option.
15785
+ * @throws {RequiredError}
15786
+ */
15787
+ apiV1DoctorsDoctorIdEducationsPost: (doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15788
+ /**
15789
+ *
15790
+ * @summary Get Doctor.
15791
+ * @param {string} doctorId
15792
+ * @param {string} [languageCode]
15793
+ * @param {*} [options] Override http request option.
15794
+ * @throws {RequiredError}
15795
+ */
15796
+ apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15797
+ /**
15798
+ *
15799
+ * @summary Get all DoctorMedias.
15800
+ * @param {string} doctorId
15801
+ * @param {string} [id]
15802
+ * @param {MediaType} [mediaType]
15803
+ * @param {number} [page]
15804
+ * @param {number} [limit]
15805
+ * @param {Date} [lastRetrieved]
15806
+ * @param {*} [options] Override http request option.
15807
+ * @throws {RequiredError}
15808
+ */
15809
+ apiV1DoctorsDoctorIdMediasGet: (doctorId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15810
+ /**
15811
+ *
15812
+ * @summary Delete DoctorMedia
15813
+ * @param {string} doctorId
15814
+ * @param {string} mediaId
15815
+ * @param {*} [options] Override http request option.
15816
+ * @throws {RequiredError}
15817
+ */
15818
+ apiV1DoctorsDoctorIdMediasMediaIdDelete: (doctorId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15819
+ /**
15820
+ *
15821
+ * @summary Get DoctorMedia.
15822
+ * @param {string} doctorId
15823
+ * @param {string} mediaId
15824
+ * @param {*} [options] Override http request option.
15825
+ * @throws {RequiredError}
15826
+ */
15827
+ apiV1DoctorsDoctorIdMediasMediaIdGet: (doctorId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15828
+ /**
15829
+ *
15830
+ * @summary Update DoctorMedia.
15831
+ * @param {string} doctorId
15832
+ * @param {string} mediaId
15833
+ * @param {UpdateMediaCommand} [updateMediaCommand]
15834
+ * @param {*} [options] Override http request option.
15835
+ * @throws {RequiredError}
15836
+ */
15837
+ apiV1DoctorsDoctorIdMediasMediaIdPut: (doctorId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15838
+ /**
15839
+ *
15840
+ * @summary Create DoctorMedia.
15841
+ * @param {string} doctorId
15842
+ * @param {CreateMediaCommand} [createMediaCommand]
15843
+ * @param {*} [options] Override http request option.
15844
+ * @throws {RequiredError}
15845
+ */
15846
+ apiV1DoctorsDoctorIdMediasPost: (doctorId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15847
+ /**
15848
+ *
15849
+ * @summary Get All DoctorPortfolios
15850
+ * @param {string} doctorId
15851
+ * @param {string} [doctorName]
15852
+ * @param {string} [portfolioId]
15853
+ * @param {string} [name]
15854
+ * @param {number} [page]
15855
+ * @param {number} [limit]
15856
+ * @param {Date} [lastRetrieved]
15857
+ * @param {*} [options] Override http request option.
15858
+ * @throws {RequiredError}
15859
+ */
15860
+ apiV1DoctorsDoctorIdPortfoliosGet: (doctorId: string, doctorName?: string | undefined, portfolioId?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15861
+ /**
15862
+ *
15863
+ * @summary Delete DoctorPortfolio.
15864
+ * @param {string} doctorId
15865
+ * @param {string} portfolioId
15866
+ * @param {*} [options] Override http request option.
15867
+ * @throws {RequiredError}
15868
+ */
15869
+ apiV1DoctorsDoctorIdPortfoliosPortfolioIdDelete: (doctorId: string, portfolioId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15870
+ /**
15871
+ *
15872
+ * @summary Get DoctorPortfolio.
15873
+ * @param {string} doctorId
15874
+ * @param {string} portfolioId
15875
+ * @param {*} [options] Override http request option.
15876
+ * @throws {RequiredError}
15877
+ */
15878
+ apiV1DoctorsDoctorIdPortfoliosPortfolioIdGet: (doctorId: string, portfolioId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15879
+ /**
15880
+ *
15881
+ * @summary Update DoctorPortfolio.
15882
+ * @param {string} doctorId
15883
+ * @param {string} portfolioId
15884
+ * @param {UpdateDoctorPortfolioCommand} [updateDoctorPortfolioCommand]
15885
+ * @param {*} [options] Override http request option.
15886
+ * @throws {RequiredError}
15887
+ */
15888
+ apiV1DoctorsDoctorIdPortfoliosPortfolioIdPut: (doctorId: string, portfolioId: string, updateDoctorPortfolioCommand?: UpdateDoctorPortfolioCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15889
+ /**
15890
+ *
15891
+ * @summary Create DoctorPortfolio.
15892
+ * @param {string} doctorId
15893
+ * @param {CreateDoctorPortfolioCommand} [createDoctorPortfolioCommand]
15894
+ * @param {*} [options] Override http request option.
15895
+ * @throws {RequiredError}
15896
+ */
15897
+ apiV1DoctorsDoctorIdPortfoliosPost: (doctorId: string, createDoctorPortfolioCommand?: CreateDoctorPortfolioCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15898
+ /**
15899
+ *
15900
+ * @summary Update Doctor.
15901
+ * @param {string} doctorId
15902
+ * @param {UpdateDoctorCommand} [updateDoctorCommand]
15903
+ * @param {*} [options] Override http request option.
15904
+ * @throws {RequiredError}
15905
+ */
15906
+ apiV1DoctorsDoctorIdPut: (doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15907
+ /**
15908
+ *
15909
+ * @summary Get All DoctorSpecialties.
15910
+ * @param {string} doctorId
15911
+ * @param {string} [doctorName]
15912
+ * @param {string} [specialtyId]
15913
+ * @param {string} [specialtyName]
15914
+ * @param {number} [page]
15915
+ * @param {number} [limit]
15916
+ * @param {Date} [lastRetrieved]
15917
+ * @param {*} [options] Override http request option.
15918
+ * @throws {RequiredError}
15919
+ */
15920
+ apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15921
+ /**
15922
+ *
15923
+ * @summary Link a doctor to a specialty.
15924
+ * @param {string} doctorId
15925
+ * @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
15926
+ * @param {*} [options] Override http request option.
15927
+ * @throws {RequiredError}
15928
+ */
15929
+ apiV1DoctorsDoctorIdSpecialtiesPost: (doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15930
+ /**
15931
+ *
15932
+ * @summary Remove link between the doctor and the specialty.
15933
+ * @param {string} doctorId
15934
+ * @param {string} specialtyId
15935
+ * @param {*} [options] Override http request option.
15936
+ * @throws {RequiredError}
15937
+ */
15938
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdDelete: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15939
+ /**
15940
+ *
15941
+ * @summary Get DoctorSpecialty
15942
+ * @param {string} doctorId
15943
+ * @param {string} specialtyId
15944
+ * @param {*} [options] Override http request option.
15945
+ * @throws {RequiredError}
15946
+ */
15947
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15948
+ /**
15949
+ *
15950
+ * @summary Update DoctorSpecialty.
15951
+ * @param {string} doctorId
15952
+ * @param {string} specialtyId
15953
+ * @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
15954
+ * @param {*} [options] Override http request option.
15955
+ * @throws {RequiredError}
15956
+ */
15957
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut: (doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15958
+ /**
15959
+ *
15960
+ * @summary Get all Doctors.
15961
+ * @param {string} [hospitalId]
15962
+ * @param {string} [languageCode]
15963
+ * @param {string} [id]
15964
+ * @param {string} [fullname]
15965
+ * @param {string} [email]
15966
+ * @param {Gender} [gender]
15967
+ * @param {Date} [dateOfBirth]
15968
+ * @param {Date} [created]
15969
+ * @param {boolean} [showHidden]
15970
+ * @param {number} [page]
15971
+ * @param {number} [limit]
15972
+ * @param {Date} [lastRetrieved]
15973
+ * @param {*} [options] Override http request option.
15974
+ * @throws {RequiredError}
15975
+ */
15976
+ apiV1DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | 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>;
15977
+ /**
15978
+ *
15979
+ * @summary Create a Doctor.
15980
+ * @param {CreateDoctorCommand} [createDoctorCommand]
15981
+ * @param {*} [options] Override http request option.
15982
+ * @throws {RequiredError}
15983
+ */
15984
+ apiV1DoctorsPost: (createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15985
+ /**
15986
+ *
15987
+ * @summary Get Doctor by slug.
15988
+ * @param {string} slug
15989
+ * @param {string} [languageCode]
15990
+ * @param {*} [options] Override http request option.
15991
+ * @throws {RequiredError}
15992
+ */
15993
+ apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15994
+ };
15995
+ /**
15996
+ * DoctorsApi - functional programming interface
15997
+ * @export
15998
+ */
15999
+ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) => {
16000
+ /**
16001
+ *
16002
+ * @summary Get all doctor affiliations.
16003
+ * @param {string} doctorId
16004
+ * @param {string} [hospitalName]
16005
+ * @param {number} [page]
16006
+ * @param {number} [limit]
16007
+ * @param {Date} [lastRetrieved]
16008
+ * @param {*} [options] Override http request option.
16009
+ * @throws {RequiredError}
16010
+ */
16011
+ apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
16012
+ /**
16013
+ *
16014
+ * @summary Delete doctor affiliation.
16015
+ * @param {string} doctorId
16016
+ * @param {string} hospitalId
16017
+ * @param {*} [options] Override http request option.
16018
+ * @throws {RequiredError}
16019
+ */
16020
+ apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16021
+ /**
16022
+ *
16023
+ * @summary Get doctor affiliation.
16024
+ * @param {string} doctorId
16025
+ * @param {string} hospitalId
16026
+ * @param {*} [options] Override http request option.
16027
+ * @throws {RequiredError}
16028
+ */
16029
+ apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
16030
+ /**
16031
+ *
16032
+ * @param {string} doctorId
16033
+ * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
16034
+ * @param {*} [options] Override http request option.
16035
+ * @throws {RequiredError}
16036
+ */
16037
+ apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
16038
+ /**
16039
+ *
16040
+ * @summary Delete DoctorCertificate.
16041
+ * @param {string} doctorId
16042
+ * @param {string} certificateId
16043
+ * @param {*} [options] Override http request option.
16044
+ * @throws {RequiredError}
16045
+ */
16046
+ apiV1DoctorsDoctorIdCertificatesCertificateIdDelete(doctorId: string, certificateId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16047
+ /**
16048
+ *
16049
+ * @summary Get DoctorCertificate.
16050
+ * @param {string} doctorId
16051
+ * @param {string} certificateId
16052
+ * @param {*} [options] Override http request option.
16053
+ * @throws {RequiredError}
16054
+ */
16055
+ apiV1DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificateModel>>;
16056
+ /**
16057
+ *
16058
+ * @summary Update DoctorCertificate.
16059
+ * @param {string} doctorId
16060
+ * @param {string} certificateId
16061
+ * @param {UpdateDoctorCertificateCommand} [updateDoctorCertificateCommand]
16062
+ * @param {*} [options] Override http request option.
16063
+ * @throws {RequiredError}
16064
+ */
16065
+ apiV1DoctorsDoctorIdCertificatesCertificateIdPut(doctorId: string, certificateId: string, updateDoctorCertificateCommand?: UpdateDoctorCertificateCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificateModel>>;
16066
+ /**
16067
+ *
16068
+ * @summary Delete DoctorCertificate.
16069
+ * @param {string} doctorId
16070
+ * @param {string} [doctorName]
16071
+ * @param {string} [certificateId]
16072
+ * @param {string} [certificate]
16073
+ * @param {Date} [activeFrom]
16074
+ * @param {Date} [activeTo]
16075
+ * @param {number} [page]
16076
+ * @param {number} [limit]
16077
+ * @param {Date} [lastRetrieved]
16078
+ * @param {*} [options] Override http request option.
16079
+ * @throws {RequiredError}
16080
+ */
16081
+ apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string | undefined, certificateId?: string | undefined, certificate?: string | undefined, activeFrom?: Date | undefined, activeTo?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificatesModel>>;
16082
+ /**
16083
+ *
16084
+ * @summary Create DoctorCertificate.
16085
+ * @param {string} doctorId
16086
+ * @param {CreateDoctorCertificateCommand} [createDoctorCertificateCommand]
16087
+ * @param {*} [options] Override http request option.
16088
+ * @throws {RequiredError}
16089
+ */
16090
+ apiV1DoctorsDoctorIdCertificatesPost(doctorId: string, createDoctorCertificateCommand?: CreateDoctorCertificateCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificateModel>>;
16091
+ /**
16092
+ *
16093
+ * @summary Delete Doctor.
16094
+ * @param {string} doctorId
16095
+ * @param {*} [options] Override http request option.
16096
+ * @throws {RequiredError}
16097
+ */
16098
+ apiV1DoctorsDoctorIdDelete(doctorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16099
+ /**
16100
+ *
16101
+ * @summary Delete DoctorEducation
16102
+ * @param {string} doctorId
16103
+ * @param {string} educationId
16104
+ * @param {*} [options] Override http request option.
16105
+ * @throws {RequiredError}
16106
+ */
16107
+ apiV1DoctorsDoctorIdEducationsEducationIdDelete(doctorId: string, educationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16108
+ /**
16109
+ *
16110
+ * @summary Get DoctorEducation.
16111
+ * @param {string} doctorId
16112
+ * @param {string} educationId
16113
+ * @param {*} [options] Override http request option.
16114
+ * @throws {RequiredError}
16115
+ */
16116
+ apiV1DoctorsDoctorIdEducationsEducationIdGet(doctorId: string, educationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationModel>>;
16117
+ /**
16118
+ *
16119
+ * @summary Update DoctorEducation.
16120
+ * @param {string} doctorId
16121
+ * @param {string} educationId
16122
+ * @param {UpdateDoctorEducationCommand} [updateDoctorEducationCommand]
16123
+ * @param {*} [options] Override http request option.
16124
+ * @throws {RequiredError}
16125
+ */
16126
+ apiV1DoctorsDoctorIdEducationsEducationIdPut(doctorId: string, educationId: string, updateDoctorEducationCommand?: UpdateDoctorEducationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationModel>>;
16127
+ /**
16128
+ *
16129
+ * @summary Get all DoctorEducations.
16130
+ * @param {string} doctorId
16131
+ * @param {string} [doctorName]
16132
+ * @param {string} [educationId]
16133
+ * @param {string} [institution]
16134
+ * @param {string} [qualification]
16135
+ * @param {Date} [graduationDate]
16136
+ * @param {number} [page]
16137
+ * @param {number} [limit]
16138
+ * @param {Date} [lastRetrieved]
16139
+ * @param {*} [options] Override http request option.
16140
+ * @throws {RequiredError}
16141
+ */
16142
+ apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationsModel>>;
16143
+ /**
16144
+ *
16145
+ * @summary Create DoctorEducation.
16146
+ * @param {string} doctorId
16147
+ * @param {CreateDoctorEducationCommand} [createDoctorEducationCommand]
16148
+ * @param {*} [options] Override http request option.
16149
+ * @throws {RequiredError}
16150
+ */
16151
+ apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationModel>>;
16152
+ /**
16153
+ *
16154
+ * @summary Get Doctor.
16155
+ * @param {string} doctorId
16156
+ * @param {string} [languageCode]
16157
+ * @param {*} [options] Override http request option.
16158
+ * @throws {RequiredError}
16159
+ */
16160
+ apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
14661
16161
  /**
14662
16162
  *
14663
- * @summary Get all deals.
16163
+ * @summary Get all DoctorMedias.
16164
+ * @param {string} doctorId
14664
16165
  * @param {string} [id]
14665
- * @param {string} [name]
14666
- * @param {MarketingType} [marketingType]
14667
- * @param {string} [countryId]
14668
- * @param {string} [hospitalId]
14669
- * @param {string} [hospitalName]
14670
- * @param {string} [specialtyId]
14671
- * @param {string} [specialtyTypeId]
14672
- * @param {string} [exceptHospitalId]
14673
- * @param {string} [exceptDealId]
14674
- * @param {Array<string>} [ids]
16166
+ * @param {MediaType} [mediaType]
14675
16167
  * @param {number} [page]
14676
16168
  * @param {number} [limit]
14677
16169
  * @param {Date} [lastRetrieved]
14678
16170
  * @param {*} [options] Override http request option.
14679
16171
  * @throws {RequiredError}
14680
16172
  */
14681
- apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
16173
+ apiV1DoctorsDoctorIdMediasGet(doctorId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
14682
16174
  /**
14683
16175
  *
14684
- * @summary Create a deal.
14685
- * @param {CreateDealCommand} [createDealCommand]
16176
+ * @summary Delete DoctorMedia
16177
+ * @param {string} doctorId
16178
+ * @param {string} mediaId
14686
16179
  * @param {*} [options] Override http request option.
14687
16180
  * @throws {RequiredError}
14688
16181
  */
14689
- apiV1DealsPost(createDealCommand?: CreateDealCommand | undefined, options?: any): AxiosPromise<DealModel>;
16182
+ apiV1DoctorsDoctorIdMediasMediaIdDelete(doctorId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
14690
16183
  /**
14691
16184
  *
14692
- * @summary Get deal by slug.
14693
- * @param {string} slug
16185
+ * @summary Get DoctorMedia.
16186
+ * @param {string} doctorId
16187
+ * @param {string} mediaId
14694
16188
  * @param {*} [options] Override http request option.
14695
16189
  * @throws {RequiredError}
14696
16190
  */
14697
- apiV1DealsSlugGet(slug: string, options?: any): AxiosPromise<DealModel>;
14698
- };
14699
- /**
14700
- * DealsApi - object-oriented interface
14701
- * @export
14702
- * @class DealsApi
14703
- * @extends {BaseAPI}
14704
- */
14705
- export declare class DealsApi extends BaseAPI {
16191
+ apiV1DoctorsDoctorIdMediasMediaIdGet(doctorId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
14706
16192
  /**
14707
16193
  *
14708
- * @summary Delete deal.
14709
- * @param {string} dealId
16194
+ * @summary Update DoctorMedia.
16195
+ * @param {string} doctorId
16196
+ * @param {string} mediaId
16197
+ * @param {UpdateMediaCommand} [updateMediaCommand]
14710
16198
  * @param {*} [options] Override http request option.
14711
16199
  * @throws {RequiredError}
14712
- * @memberof DealsApi
14713
16200
  */
14714
- apiV1DealsDealIdDelete(dealId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
16201
+ apiV1DoctorsDoctorIdMediasMediaIdPut(doctorId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
14715
16202
  /**
14716
16203
  *
14717
- * @summary Get deal.
14718
- * @param {string} dealId
16204
+ * @summary Create DoctorMedia.
16205
+ * @param {string} doctorId
16206
+ * @param {CreateMediaCommand} [createMediaCommand]
14719
16207
  * @param {*} [options] Override http request option.
14720
16208
  * @throws {RequiredError}
14721
- * @memberof DealsApi
14722
16209
  */
14723
- apiV1DealsDealIdGet(dealId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
16210
+ apiV1DoctorsDoctorIdMediasPost(doctorId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
14724
16211
  /**
14725
16212
  *
14726
- * @summary Get all DealPackage.
14727
- * @param {string} dealId
14728
- * @param {string} [relatedDealPackageId]
14729
- * @param {string} [dealName]
16213
+ * @summary Get All DoctorPortfolios
16214
+ * @param {string} doctorId
16215
+ * @param {string} [doctorName]
16216
+ * @param {string} [portfolioId]
14730
16217
  * @param {string} [name]
14731
- * @param {string} [countryId]
14732
- * @param {string} [hospitalId]
14733
- * @param {string} [hospitalName]
14734
16218
  * @param {number} [page]
14735
16219
  * @param {number} [limit]
14736
16220
  * @param {Date} [lastRetrieved]
14737
16221
  * @param {*} [options] Override http request option.
14738
16222
  * @throws {RequiredError}
14739
- * @memberof DealsApi
14740
16223
  */
14741
- apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackagesModel>>;
16224
+ apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string | undefined, portfolioId?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfoliosModel>>;
14742
16225
  /**
14743
16226
  *
14744
- * @summary Delete DealPackage.
14745
- * @param {string} dealId
14746
- * @param {string} packageId
16227
+ * @summary Delete DoctorPortfolio.
16228
+ * @param {string} doctorId
16229
+ * @param {string} portfolioId
14747
16230
  * @param {*} [options] Override http request option.
14748
16231
  * @throws {RequiredError}
14749
- * @memberof DealsApi
14750
16232
  */
14751
- apiV1DealsDealIdPackagesPackageIdDelete(dealId: string, packageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
16233
+ apiV1DoctorsDoctorIdPortfoliosPortfolioIdDelete(doctorId: string, portfolioId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
14752
16234
  /**
14753
16235
  *
14754
- * @summary Get DealPackage.
14755
- * @param {string} dealId
14756
- * @param {string} packageId
16236
+ * @summary Get DoctorPortfolio.
16237
+ * @param {string} doctorId
16238
+ * @param {string} portfolioId
14757
16239
  * @param {*} [options] Override http request option.
14758
16240
  * @throws {RequiredError}
14759
- * @memberof DealsApi
14760
16241
  */
14761
- apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackageModel>>;
16242
+ apiV1DoctorsDoctorIdPortfoliosPortfolioIdGet(doctorId: string, portfolioId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfolioModel>>;
14762
16243
  /**
14763
16244
  *
14764
- * @summary Update DealPackage.
14765
- * @param {string} dealId
14766
- * @param {string} packageId
14767
- * @param {UpdateDealPackageCommand} [updateDealPackageCommand]
16245
+ * @summary Update DoctorPortfolio.
16246
+ * @param {string} doctorId
16247
+ * @param {string} portfolioId
16248
+ * @param {UpdateDoctorPortfolioCommand} [updateDoctorPortfolioCommand]
14768
16249
  * @param {*} [options] Override http request option.
14769
16250
  * @throws {RequiredError}
14770
- * @memberof DealsApi
14771
16251
  */
14772
- apiV1DealsDealIdPackagesPackageIdPut(dealId: string, packageId: string, updateDealPackageCommand?: UpdateDealPackageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackageModel>>;
16252
+ apiV1DoctorsDoctorIdPortfoliosPortfolioIdPut(doctorId: string, portfolioId: string, updateDoctorPortfolioCommand?: UpdateDoctorPortfolioCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfolioModel>>;
14773
16253
  /**
14774
16254
  *
14775
- * @summary Create DealPackage.
14776
- * @param {string} dealId
14777
- * @param {CreateDealPackageCommand} [createDealPackageCommand]
16255
+ * @summary Create DoctorPortfolio.
16256
+ * @param {string} doctorId
16257
+ * @param {CreateDoctorPortfolioCommand} [createDoctorPortfolioCommand]
14778
16258
  * @param {*} [options] Override http request option.
14779
16259
  * @throws {RequiredError}
14780
- * @memberof DealsApi
14781
16260
  */
14782
- apiV1DealsDealIdPackagesPost(dealId: string, createDealPackageCommand?: CreateDealPackageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackageModel>>;
16261
+ apiV1DoctorsDoctorIdPortfoliosPost(doctorId: string, createDoctorPortfolioCommand?: CreateDoctorPortfolioCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfolioModel>>;
14783
16262
  /**
14784
16263
  *
14785
- * @summary Update deal.
14786
- * @param {string} dealId
14787
- * @param {UpdateDealCommand} [updateDealCommand]
16264
+ * @summary Update Doctor.
16265
+ * @param {string} doctorId
16266
+ * @param {UpdateDoctorCommand} [updateDoctorCommand]
14788
16267
  * @param {*} [options] Override http request option.
14789
16268
  * @throws {RequiredError}
14790
- * @memberof DealsApi
14791
16269
  */
14792
- apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
16270
+ apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
14793
16271
  /**
14794
16272
  *
14795
- * @summary Get all DealService.
14796
- * @param {string} dealId
16273
+ * @summary Get All DoctorSpecialties.
16274
+ * @param {string} doctorId
16275
+ * @param {string} [doctorName]
16276
+ * @param {string} [specialtyId]
16277
+ * @param {string} [specialtyName]
14797
16278
  * @param {number} [page]
14798
16279
  * @param {number} [limit]
14799
16280
  * @param {Date} [lastRetrieved]
14800
16281
  * @param {*} [options] Override http request option.
14801
16282
  * @throws {RequiredError}
14802
- * @memberof DealsApi
14803
16283
  */
14804
- apiV1DealsDealIdServicesGet(dealId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServicesModel>>;
16284
+ apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
14805
16285
  /**
14806
16286
  *
14807
- * @summary Create DealService.
14808
- * @param {string} dealId
14809
- * @param {CreateDealServiceCommand} [createDealServiceCommand]
16287
+ * @summary Link a doctor to a specialty.
16288
+ * @param {string} doctorId
16289
+ * @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
14810
16290
  * @param {*} [options] Override http request option.
14811
16291
  * @throws {RequiredError}
14812
- * @memberof DealsApi
14813
16292
  */
14814
- apiV1DealsDealIdServicesPost(dealId: string, createDealServiceCommand?: CreateDealServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServiceModel>>;
16293
+ apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
14815
16294
  /**
14816
16295
  *
14817
- * @summary Delete DealService.
14818
- * @param {string} dealId
14819
- * @param {string} serviceId
16296
+ * @summary Remove link between the doctor and the specialty.
16297
+ * @param {string} doctorId
16298
+ * @param {string} specialtyId
14820
16299
  * @param {*} [options] Override http request option.
14821
16300
  * @throws {RequiredError}
14822
- * @memberof DealsApi
14823
16301
  */
14824
- apiV1DealsDealIdServicesServiceIdDelete(dealId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
16302
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdDelete(doctorId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
14825
16303
  /**
14826
16304
  *
14827
- * @summary Get DealService.
14828
- * @param {string} dealId
14829
- * @param {string} serviceId
16305
+ * @summary Get DoctorSpecialty
16306
+ * @param {string} doctorId
16307
+ * @param {string} specialtyId
14830
16308
  * @param {*} [options] Override http request option.
14831
16309
  * @throws {RequiredError}
14832
- * @memberof DealsApi
14833
16310
  */
14834
- apiV1DealsDealIdServicesServiceIdGet(dealId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServiceModel>>;
16311
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
14835
16312
  /**
14836
16313
  *
14837
- * @summary Update DealService.
14838
- * @param {string} dealId
14839
- * @param {string} serviceId
14840
- * @param {UpdateDealServiceCommand} [updateDealServiceCommand]
16314
+ * @summary Update DoctorSpecialty.
16315
+ * @param {string} doctorId
16316
+ * @param {string} specialtyId
16317
+ * @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
14841
16318
  * @param {*} [options] Override http request option.
14842
16319
  * @throws {RequiredError}
14843
- * @memberof DealsApi
14844
16320
  */
14845
- apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServiceModel>>;
16321
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
14846
16322
  /**
14847
16323
  *
14848
- * @summary Get all deals.
14849
- * @param {string} [id]
14850
- * @param {string} [name]
14851
- * @param {MarketingType} [marketingType]
14852
- * @param {string} [countryId]
16324
+ * @summary Get all Doctors.
14853
16325
  * @param {string} [hospitalId]
14854
- * @param {string} [hospitalName]
14855
- * @param {string} [specialtyId]
14856
- * @param {string} [specialtyTypeId]
14857
- * @param {string} [exceptHospitalId]
14858
- * @param {string} [exceptDealId]
14859
- * @param {Array<string>} [ids]
16326
+ * @param {string} [languageCode]
16327
+ * @param {string} [id]
16328
+ * @param {string} [fullname]
16329
+ * @param {string} [email]
16330
+ * @param {Gender} [gender]
16331
+ * @param {Date} [dateOfBirth]
16332
+ * @param {Date} [created]
16333
+ * @param {boolean} [showHidden]
14860
16334
  * @param {number} [page]
14861
16335
  * @param {number} [limit]
14862
16336
  * @param {Date} [lastRetrieved]
14863
16337
  * @param {*} [options] Override http request option.
14864
16338
  * @throws {RequiredError}
14865
- * @memberof DealsApi
14866
16339
  */
14867
- apiV1DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
16340
+ apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | 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 | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
14868
16341
  /**
14869
16342
  *
14870
- * @summary Create a deal.
14871
- * @param {CreateDealCommand} [createDealCommand]
16343
+ * @summary Create a Doctor.
16344
+ * @param {CreateDoctorCommand} [createDoctorCommand]
14872
16345
  * @param {*} [options] Override http request option.
14873
16346
  * @throws {RequiredError}
14874
- * @memberof DealsApi
14875
16347
  */
14876
- apiV1DealsPost(createDealCommand?: CreateDealCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
16348
+ apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
14877
16349
  /**
14878
16350
  *
14879
- * @summary Get deal by slug.
16351
+ * @summary Get Doctor by slug.
14880
16352
  * @param {string} slug
16353
+ * @param {string} [languageCode]
14881
16354
  * @param {*} [options] Override http request option.
14882
16355
  * @throws {RequiredError}
14883
- * @memberof DealsApi
14884
16356
  */
14885
- apiV1DealsSlugGet(slug: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
14886
- }
16357
+ apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
16358
+ };
14887
16359
  /**
14888
- * DoctorsApi - axios parameter creator
16360
+ * DoctorsApi - factory interface
14889
16361
  * @export
14890
16362
  */
14891
- export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
16363
+ export declare const DoctorsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
14892
16364
  /**
14893
16365
  *
14894
16366
  * @summary Get all doctor affiliations.
@@ -14900,7 +16372,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
14900
16372
  * @param {*} [options] Override http request option.
14901
16373
  * @throws {RequiredError}
14902
16374
  */
14903
- apiV1DoctorsDoctorIdAffiliationsGet: (doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16375
+ apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
14904
16376
  /**
14905
16377
  *
14906
16378
  * @summary Delete doctor affiliation.
@@ -14909,7 +16381,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
14909
16381
  * @param {*} [options] Override http request option.
14910
16382
  * @throws {RequiredError}
14911
16383
  */
14912
- apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete: (doctorId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16384
+ apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: any): AxiosPromise<boolean>;
14913
16385
  /**
14914
16386
  *
14915
16387
  * @summary Get doctor affiliation.
@@ -14918,7 +16390,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
14918
16390
  * @param {*} [options] Override http request option.
14919
16391
  * @throws {RequiredError}
14920
16392
  */
14921
- apiV1DoctorsDoctorIdAffiliationsHospitalIdGet: (doctorId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16393
+ apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: any): AxiosPromise<DoctorAffiliationModel>;
14922
16394
  /**
14923
16395
  *
14924
16396
  * @param {string} doctorId
@@ -14926,7 +16398,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
14926
16398
  * @param {*} [options] Override http request option.
14927
16399
  * @throws {RequiredError}
14928
16400
  */
14929
- apiV1DoctorsDoctorIdAffiliationsPost: (doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16401
+ apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
14930
16402
  /**
14931
16403
  *
14932
16404
  * @summary Delete DoctorCertificate.
@@ -14935,7 +16407,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
14935
16407
  * @param {*} [options] Override http request option.
14936
16408
  * @throws {RequiredError}
14937
16409
  */
14938
- apiV1DoctorsDoctorIdCertificatesCertificateIdDelete: (doctorId: string, certificateId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16410
+ apiV1DoctorsDoctorIdCertificatesCertificateIdDelete(doctorId: string, certificateId: string, options?: any): AxiosPromise<boolean>;
14939
16411
  /**
14940
16412
  *
14941
16413
  * @summary Get DoctorCertificate.
@@ -14944,7 +16416,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
14944
16416
  * @param {*} [options] Override http request option.
14945
16417
  * @throws {RequiredError}
14946
16418
  */
14947
- apiV1DoctorsDoctorIdCertificatesCertificateIdGet: (doctorId: string, certificateId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16419
+ apiV1DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: any): AxiosPromise<DoctorCertificateModel>;
14948
16420
  /**
14949
16421
  *
14950
16422
  * @summary Update DoctorCertificate.
@@ -14954,7 +16426,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
14954
16426
  * @param {*} [options] Override http request option.
14955
16427
  * @throws {RequiredError}
14956
16428
  */
14957
- apiV1DoctorsDoctorIdCertificatesCertificateIdPut: (doctorId: string, certificateId: string, updateDoctorCertificateCommand?: UpdateDoctorCertificateCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16429
+ apiV1DoctorsDoctorIdCertificatesCertificateIdPut(doctorId: string, certificateId: string, updateDoctorCertificateCommand?: UpdateDoctorCertificateCommand | undefined, options?: any): AxiosPromise<DoctorCertificateModel>;
14958
16430
  /**
14959
16431
  *
14960
16432
  * @summary Delete DoctorCertificate.
@@ -14970,7 +16442,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
14970
16442
  * @param {*} [options] Override http request option.
14971
16443
  * @throws {RequiredError}
14972
16444
  */
14973
- apiV1DoctorsDoctorIdCertificatesGet: (doctorId: string, doctorName?: string | undefined, certificateId?: string | undefined, certificate?: string | undefined, activeFrom?: Date | undefined, activeTo?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16445
+ apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string | undefined, certificateId?: string | undefined, certificate?: string | undefined, activeFrom?: Date | undefined, activeTo?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorCertificatesModel>;
14974
16446
  /**
14975
16447
  *
14976
16448
  * @summary Create DoctorCertificate.
@@ -14979,7 +16451,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
14979
16451
  * @param {*} [options] Override http request option.
14980
16452
  * @throws {RequiredError}
14981
16453
  */
14982
- apiV1DoctorsDoctorIdCertificatesPost: (doctorId: string, createDoctorCertificateCommand?: CreateDoctorCertificateCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16454
+ apiV1DoctorsDoctorIdCertificatesPost(doctorId: string, createDoctorCertificateCommand?: CreateDoctorCertificateCommand | undefined, options?: any): AxiosPromise<DoctorCertificateModel>;
14983
16455
  /**
14984
16456
  *
14985
16457
  * @summary Delete Doctor.
@@ -14987,7 +16459,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
14987
16459
  * @param {*} [options] Override http request option.
14988
16460
  * @throws {RequiredError}
14989
16461
  */
14990
- apiV1DoctorsDoctorIdDelete: (doctorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16462
+ apiV1DoctorsDoctorIdDelete(doctorId: string, options?: any): AxiosPromise<boolean>;
14991
16463
  /**
14992
16464
  *
14993
16465
  * @summary Delete DoctorEducation
@@ -14996,7 +16468,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
14996
16468
  * @param {*} [options] Override http request option.
14997
16469
  * @throws {RequiredError}
14998
16470
  */
14999
- apiV1DoctorsDoctorIdEducationsEducationIdDelete: (doctorId: string, educationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16471
+ apiV1DoctorsDoctorIdEducationsEducationIdDelete(doctorId: string, educationId: string, options?: any): AxiosPromise<boolean>;
15000
16472
  /**
15001
16473
  *
15002
16474
  * @summary Get DoctorEducation.
@@ -15005,7 +16477,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15005
16477
  * @param {*} [options] Override http request option.
15006
16478
  * @throws {RequiredError}
15007
16479
  */
15008
- apiV1DoctorsDoctorIdEducationsEducationIdGet: (doctorId: string, educationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16480
+ apiV1DoctorsDoctorIdEducationsEducationIdGet(doctorId: string, educationId: string, options?: any): AxiosPromise<DoctorEducationModel>;
15009
16481
  /**
15010
16482
  *
15011
16483
  * @summary Update DoctorEducation.
@@ -15015,7 +16487,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15015
16487
  * @param {*} [options] Override http request option.
15016
16488
  * @throws {RequiredError}
15017
16489
  */
15018
- apiV1DoctorsDoctorIdEducationsEducationIdPut: (doctorId: string, educationId: string, updateDoctorEducationCommand?: UpdateDoctorEducationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16490
+ apiV1DoctorsDoctorIdEducationsEducationIdPut(doctorId: string, educationId: string, updateDoctorEducationCommand?: UpdateDoctorEducationCommand | undefined, options?: any): AxiosPromise<DoctorEducationModel>;
15019
16491
  /**
15020
16492
  *
15021
16493
  * @summary Get all DoctorEducations.
@@ -15031,7 +16503,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15031
16503
  * @param {*} [options] Override http request option.
15032
16504
  * @throws {RequiredError}
15033
16505
  */
15034
- apiV1DoctorsDoctorIdEducationsGet: (doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16506
+ apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorEducationsModel>;
15035
16507
  /**
15036
16508
  *
15037
16509
  * @summary Create DoctorEducation.
@@ -15040,15 +16512,16 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15040
16512
  * @param {*} [options] Override http request option.
15041
16513
  * @throws {RequiredError}
15042
16514
  */
15043
- apiV1DoctorsDoctorIdEducationsPost: (doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16515
+ apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: any): AxiosPromise<DoctorEducationModel>;
15044
16516
  /**
15045
16517
  *
15046
16518
  * @summary Get Doctor.
15047
16519
  * @param {string} doctorId
16520
+ * @param {string} [languageCode]
15048
16521
  * @param {*} [options] Override http request option.
15049
16522
  * @throws {RequiredError}
15050
16523
  */
15051
- apiV1DoctorsDoctorIdGet: (doctorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16524
+ apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
15052
16525
  /**
15053
16526
  *
15054
16527
  * @summary Get all DoctorMedias.
@@ -15061,7 +16534,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15061
16534
  * @param {*} [options] Override http request option.
15062
16535
  * @throws {RequiredError}
15063
16536
  */
15064
- apiV1DoctorsDoctorIdMediasGet: (doctorId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16537
+ apiV1DoctorsDoctorIdMediasGet(doctorId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
15065
16538
  /**
15066
16539
  *
15067
16540
  * @summary Delete DoctorMedia
@@ -15070,7 +16543,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15070
16543
  * @param {*} [options] Override http request option.
15071
16544
  * @throws {RequiredError}
15072
16545
  */
15073
- apiV1DoctorsDoctorIdMediasMediaIdDelete: (doctorId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16546
+ apiV1DoctorsDoctorIdMediasMediaIdDelete(doctorId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
15074
16547
  /**
15075
16548
  *
15076
16549
  * @summary Get DoctorMedia.
@@ -15079,7 +16552,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15079
16552
  * @param {*} [options] Override http request option.
15080
16553
  * @throws {RequiredError}
15081
16554
  */
15082
- apiV1DoctorsDoctorIdMediasMediaIdGet: (doctorId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16555
+ apiV1DoctorsDoctorIdMediasMediaIdGet(doctorId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
15083
16556
  /**
15084
16557
  *
15085
16558
  * @summary Update DoctorMedia.
@@ -15089,7 +16562,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15089
16562
  * @param {*} [options] Override http request option.
15090
16563
  * @throws {RequiredError}
15091
16564
  */
15092
- apiV1DoctorsDoctorIdMediasMediaIdPut: (doctorId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16565
+ apiV1DoctorsDoctorIdMediasMediaIdPut(doctorId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
15093
16566
  /**
15094
16567
  *
15095
16568
  * @summary Create DoctorMedia.
@@ -15098,7 +16571,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15098
16571
  * @param {*} [options] Override http request option.
15099
16572
  * @throws {RequiredError}
15100
16573
  */
15101
- apiV1DoctorsDoctorIdMediasPost: (doctorId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16574
+ apiV1DoctorsDoctorIdMediasPost(doctorId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
15102
16575
  /**
15103
16576
  *
15104
16577
  * @summary Get All DoctorPortfolios
@@ -15112,7 +16585,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15112
16585
  * @param {*} [options] Override http request option.
15113
16586
  * @throws {RequiredError}
15114
16587
  */
15115
- apiV1DoctorsDoctorIdPortfoliosGet: (doctorId: string, doctorName?: string | undefined, portfolioId?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16588
+ apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string | undefined, portfolioId?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorPortfoliosModel>;
15116
16589
  /**
15117
16590
  *
15118
16591
  * @summary Delete DoctorPortfolio.
@@ -15121,7 +16594,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15121
16594
  * @param {*} [options] Override http request option.
15122
16595
  * @throws {RequiredError}
15123
16596
  */
15124
- apiV1DoctorsDoctorIdPortfoliosPortfolioIdDelete: (doctorId: string, portfolioId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16597
+ apiV1DoctorsDoctorIdPortfoliosPortfolioIdDelete(doctorId: string, portfolioId: string, options?: any): AxiosPromise<boolean>;
15125
16598
  /**
15126
16599
  *
15127
16600
  * @summary Get DoctorPortfolio.
@@ -15130,7 +16603,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15130
16603
  * @param {*} [options] Override http request option.
15131
16604
  * @throws {RequiredError}
15132
16605
  */
15133
- apiV1DoctorsDoctorIdPortfoliosPortfolioIdGet: (doctorId: string, portfolioId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16606
+ apiV1DoctorsDoctorIdPortfoliosPortfolioIdGet(doctorId: string, portfolioId: string, options?: any): AxiosPromise<DoctorPortfolioModel>;
15134
16607
  /**
15135
16608
  *
15136
16609
  * @summary Update DoctorPortfolio.
@@ -15140,7 +16613,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15140
16613
  * @param {*} [options] Override http request option.
15141
16614
  * @throws {RequiredError}
15142
16615
  */
15143
- apiV1DoctorsDoctorIdPortfoliosPortfolioIdPut: (doctorId: string, portfolioId: string, updateDoctorPortfolioCommand?: UpdateDoctorPortfolioCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16616
+ apiV1DoctorsDoctorIdPortfoliosPortfolioIdPut(doctorId: string, portfolioId: string, updateDoctorPortfolioCommand?: UpdateDoctorPortfolioCommand | undefined, options?: any): AxiosPromise<DoctorPortfolioModel>;
15144
16617
  /**
15145
16618
  *
15146
16619
  * @summary Create DoctorPortfolio.
@@ -15149,7 +16622,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15149
16622
  * @param {*} [options] Override http request option.
15150
16623
  * @throws {RequiredError}
15151
16624
  */
15152
- apiV1DoctorsDoctorIdPortfoliosPost: (doctorId: string, createDoctorPortfolioCommand?: CreateDoctorPortfolioCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16625
+ apiV1DoctorsDoctorIdPortfoliosPost(doctorId: string, createDoctorPortfolioCommand?: CreateDoctorPortfolioCommand | undefined, options?: any): AxiosPromise<DoctorPortfolioModel>;
15153
16626
  /**
15154
16627
  *
15155
16628
  * @summary Update Doctor.
@@ -15158,7 +16631,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15158
16631
  * @param {*} [options] Override http request option.
15159
16632
  * @throws {RequiredError}
15160
16633
  */
15161
- apiV1DoctorsDoctorIdPut: (doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16634
+ apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
15162
16635
  /**
15163
16636
  *
15164
16637
  * @summary Get All DoctorSpecialties.
@@ -15172,7 +16645,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15172
16645
  * @param {*} [options] Override http request option.
15173
16646
  * @throws {RequiredError}
15174
16647
  */
15175
- apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16648
+ apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
15176
16649
  /**
15177
16650
  *
15178
16651
  * @summary Link a doctor to a specialty.
@@ -15181,7 +16654,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15181
16654
  * @param {*} [options] Override http request option.
15182
16655
  * @throws {RequiredError}
15183
16656
  */
15184
- apiV1DoctorsDoctorIdSpecialtiesPost: (doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16657
+ apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
15185
16658
  /**
15186
16659
  *
15187
16660
  * @summary Remove link between the doctor and the specialty.
@@ -15190,7 +16663,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15190
16663
  * @param {*} [options] Override http request option.
15191
16664
  * @throws {RequiredError}
15192
16665
  */
15193
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdDelete: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16666
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdDelete(doctorId: string, specialtyId: string, options?: any): AxiosPromise<boolean>;
15194
16667
  /**
15195
16668
  *
15196
16669
  * @summary Get DoctorSpecialty
@@ -15199,7 +16672,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15199
16672
  * @param {*} [options] Override http request option.
15200
16673
  * @throws {RequiredError}
15201
16674
  */
15202
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16675
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel>;
15203
16676
  /**
15204
16677
  *
15205
16678
  * @summary Update DoctorSpecialty.
@@ -15209,7 +16682,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15209
16682
  * @param {*} [options] Override http request option.
15210
16683
  * @throws {RequiredError}
15211
16684
  */
15212
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut: (doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16685
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
15213
16686
  /**
15214
16687
  *
15215
16688
  * @summary Get all Doctors.
@@ -15228,7 +16701,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15228
16701
  * @param {*} [options] Override http request option.
15229
16702
  * @throws {RequiredError}
15230
16703
  */
15231
- apiV1DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | 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>;
16704
+ apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | 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>;
15232
16705
  /**
15233
16706
  *
15234
16707
  * @summary Create a Doctor.
@@ -15236,7 +16709,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15236
16709
  * @param {*} [options] Override http request option.
15237
16710
  * @throws {RequiredError}
15238
16711
  */
15239
- apiV1DoctorsPost: (createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16712
+ apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
15240
16713
  /**
15241
16714
  *
15242
16715
  * @summary Get Doctor by slug.
@@ -15245,13 +16718,15 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15245
16718
  * @param {*} [options] Override http request option.
15246
16719
  * @throws {RequiredError}
15247
16720
  */
15248
- apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16721
+ apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
15249
16722
  };
15250
16723
  /**
15251
- * DoctorsApi - functional programming interface
16724
+ * DoctorsApi - object-oriented interface
15252
16725
  * @export
16726
+ * @class DoctorsApi
16727
+ * @extends {BaseAPI}
15253
16728
  */
15254
- export declare const DoctorsApiFp: (configuration?: Configuration | undefined) => {
16729
+ export declare class DoctorsApi extends BaseAPI {
15255
16730
  /**
15256
16731
  *
15257
16732
  * @summary Get all doctor affiliations.
@@ -15262,8 +16737,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15262
16737
  * @param {Date} [lastRetrieved]
15263
16738
  * @param {*} [options] Override http request option.
15264
16739
  * @throws {RequiredError}
16740
+ * @memberof DoctorsApi
15265
16741
  */
15266
- apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
16742
+ apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
15267
16743
  /**
15268
16744
  *
15269
16745
  * @summary Delete doctor affiliation.
@@ -15271,8 +16747,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15271
16747
  * @param {string} hospitalId
15272
16748
  * @param {*} [options] Override http request option.
15273
16749
  * @throws {RequiredError}
16750
+ * @memberof DoctorsApi
15274
16751
  */
15275
- apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16752
+ apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15276
16753
  /**
15277
16754
  *
15278
16755
  * @summary Get doctor affiliation.
@@ -15280,16 +16757,18 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15280
16757
  * @param {string} hospitalId
15281
16758
  * @param {*} [options] Override http request option.
15282
16759
  * @throws {RequiredError}
16760
+ * @memberof DoctorsApi
15283
16761
  */
15284
- apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
16762
+ apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
15285
16763
  /**
15286
16764
  *
15287
16765
  * @param {string} doctorId
15288
16766
  * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
15289
16767
  * @param {*} [options] Override http request option.
15290
16768
  * @throws {RequiredError}
16769
+ * @memberof DoctorsApi
15291
16770
  */
15292
- apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
16771
+ apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
15293
16772
  /**
15294
16773
  *
15295
16774
  * @summary Delete DoctorCertificate.
@@ -15297,8 +16776,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15297
16776
  * @param {string} certificateId
15298
16777
  * @param {*} [options] Override http request option.
15299
16778
  * @throws {RequiredError}
16779
+ * @memberof DoctorsApi
15300
16780
  */
15301
- apiV1DoctorsDoctorIdCertificatesCertificateIdDelete(doctorId: string, certificateId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16781
+ apiV1DoctorsDoctorIdCertificatesCertificateIdDelete(doctorId: string, certificateId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15302
16782
  /**
15303
16783
  *
15304
16784
  * @summary Get DoctorCertificate.
@@ -15306,8 +16786,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15306
16786
  * @param {string} certificateId
15307
16787
  * @param {*} [options] Override http request option.
15308
16788
  * @throws {RequiredError}
16789
+ * @memberof DoctorsApi
15309
16790
  */
15310
- apiV1DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificateModel>>;
16791
+ apiV1DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificateModel>>;
15311
16792
  /**
15312
16793
  *
15313
16794
  * @summary Update DoctorCertificate.
@@ -15316,8 +16797,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15316
16797
  * @param {UpdateDoctorCertificateCommand} [updateDoctorCertificateCommand]
15317
16798
  * @param {*} [options] Override http request option.
15318
16799
  * @throws {RequiredError}
16800
+ * @memberof DoctorsApi
15319
16801
  */
15320
- apiV1DoctorsDoctorIdCertificatesCertificateIdPut(doctorId: string, certificateId: string, updateDoctorCertificateCommand?: UpdateDoctorCertificateCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificateModel>>;
16802
+ apiV1DoctorsDoctorIdCertificatesCertificateIdPut(doctorId: string, certificateId: string, updateDoctorCertificateCommand?: UpdateDoctorCertificateCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificateModel>>;
15321
16803
  /**
15322
16804
  *
15323
16805
  * @summary Delete DoctorCertificate.
@@ -15332,8 +16814,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15332
16814
  * @param {Date} [lastRetrieved]
15333
16815
  * @param {*} [options] Override http request option.
15334
16816
  * @throws {RequiredError}
16817
+ * @memberof DoctorsApi
15335
16818
  */
15336
- apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string | undefined, certificateId?: string | undefined, certificate?: string | undefined, activeFrom?: Date | undefined, activeTo?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificatesModel>>;
16819
+ apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string, certificateId?: string, certificate?: string, activeFrom?: Date, activeTo?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificatesModel>>;
15337
16820
  /**
15338
16821
  *
15339
16822
  * @summary Create DoctorCertificate.
@@ -15341,16 +16824,18 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15341
16824
  * @param {CreateDoctorCertificateCommand} [createDoctorCertificateCommand]
15342
16825
  * @param {*} [options] Override http request option.
15343
16826
  * @throws {RequiredError}
16827
+ * @memberof DoctorsApi
15344
16828
  */
15345
- apiV1DoctorsDoctorIdCertificatesPost(doctorId: string, createDoctorCertificateCommand?: CreateDoctorCertificateCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificateModel>>;
16829
+ apiV1DoctorsDoctorIdCertificatesPost(doctorId: string, createDoctorCertificateCommand?: CreateDoctorCertificateCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificateModel>>;
15346
16830
  /**
15347
16831
  *
15348
16832
  * @summary Delete Doctor.
15349
16833
  * @param {string} doctorId
15350
16834
  * @param {*} [options] Override http request option.
15351
16835
  * @throws {RequiredError}
16836
+ * @memberof DoctorsApi
15352
16837
  */
15353
- apiV1DoctorsDoctorIdDelete(doctorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16838
+ apiV1DoctorsDoctorIdDelete(doctorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15354
16839
  /**
15355
16840
  *
15356
16841
  * @summary Delete DoctorEducation
@@ -15358,8 +16843,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15358
16843
  * @param {string} educationId
15359
16844
  * @param {*} [options] Override http request option.
15360
16845
  * @throws {RequiredError}
16846
+ * @memberof DoctorsApi
15361
16847
  */
15362
- apiV1DoctorsDoctorIdEducationsEducationIdDelete(doctorId: string, educationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16848
+ apiV1DoctorsDoctorIdEducationsEducationIdDelete(doctorId: string, educationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15363
16849
  /**
15364
16850
  *
15365
16851
  * @summary Get DoctorEducation.
@@ -15367,8 +16853,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15367
16853
  * @param {string} educationId
15368
16854
  * @param {*} [options] Override http request option.
15369
16855
  * @throws {RequiredError}
16856
+ * @memberof DoctorsApi
15370
16857
  */
15371
- apiV1DoctorsDoctorIdEducationsEducationIdGet(doctorId: string, educationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationModel>>;
16858
+ apiV1DoctorsDoctorIdEducationsEducationIdGet(doctorId: string, educationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationModel>>;
15372
16859
  /**
15373
16860
  *
15374
16861
  * @summary Update DoctorEducation.
@@ -15377,8 +16864,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15377
16864
  * @param {UpdateDoctorEducationCommand} [updateDoctorEducationCommand]
15378
16865
  * @param {*} [options] Override http request option.
15379
16866
  * @throws {RequiredError}
16867
+ * @memberof DoctorsApi
15380
16868
  */
15381
- apiV1DoctorsDoctorIdEducationsEducationIdPut(doctorId: string, educationId: string, updateDoctorEducationCommand?: UpdateDoctorEducationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationModel>>;
16869
+ apiV1DoctorsDoctorIdEducationsEducationIdPut(doctorId: string, educationId: string, updateDoctorEducationCommand?: UpdateDoctorEducationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationModel>>;
15382
16870
  /**
15383
16871
  *
15384
16872
  * @summary Get all DoctorEducations.
@@ -15393,8 +16881,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15393
16881
  * @param {Date} [lastRetrieved]
15394
16882
  * @param {*} [options] Override http request option.
15395
16883
  * @throws {RequiredError}
16884
+ * @memberof DoctorsApi
15396
16885
  */
15397
- apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationsModel>>;
16886
+ apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string, educationId?: string, institution?: string, qualification?: string, graduationDate?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationsModel>>;
15398
16887
  /**
15399
16888
  *
15400
16889
  * @summary Create DoctorEducation.
@@ -15402,16 +16891,19 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15402
16891
  * @param {CreateDoctorEducationCommand} [createDoctorEducationCommand]
15403
16892
  * @param {*} [options] Override http request option.
15404
16893
  * @throws {RequiredError}
16894
+ * @memberof DoctorsApi
15405
16895
  */
15406
- apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationModel>>;
16896
+ apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationModel>>;
15407
16897
  /**
15408
16898
  *
15409
16899
  * @summary Get Doctor.
15410
16900
  * @param {string} doctorId
16901
+ * @param {string} [languageCode]
15411
16902
  * @param {*} [options] Override http request option.
15412
16903
  * @throws {RequiredError}
16904
+ * @memberof DoctorsApi
15413
16905
  */
15414
- apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
16906
+ apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
15415
16907
  /**
15416
16908
  *
15417
16909
  * @summary Get all DoctorMedias.
@@ -15423,8 +16915,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15423
16915
  * @param {Date} [lastRetrieved]
15424
16916
  * @param {*} [options] Override http request option.
15425
16917
  * @throws {RequiredError}
16918
+ * @memberof DoctorsApi
15426
16919
  */
15427
- apiV1DoctorsDoctorIdMediasGet(doctorId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
16920
+ apiV1DoctorsDoctorIdMediasGet(doctorId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
15428
16921
  /**
15429
16922
  *
15430
16923
  * @summary Delete DoctorMedia
@@ -15432,8 +16925,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15432
16925
  * @param {string} mediaId
15433
16926
  * @param {*} [options] Override http request option.
15434
16927
  * @throws {RequiredError}
16928
+ * @memberof DoctorsApi
15435
16929
  */
15436
- apiV1DoctorsDoctorIdMediasMediaIdDelete(doctorId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16930
+ apiV1DoctorsDoctorIdMediasMediaIdDelete(doctorId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15437
16931
  /**
15438
16932
  *
15439
16933
  * @summary Get DoctorMedia.
@@ -15441,8 +16935,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15441
16935
  * @param {string} mediaId
15442
16936
  * @param {*} [options] Override http request option.
15443
16937
  * @throws {RequiredError}
16938
+ * @memberof DoctorsApi
15444
16939
  */
15445
- apiV1DoctorsDoctorIdMediasMediaIdGet(doctorId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
16940
+ apiV1DoctorsDoctorIdMediasMediaIdGet(doctorId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
15446
16941
  /**
15447
16942
  *
15448
16943
  * @summary Update DoctorMedia.
@@ -15451,8 +16946,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15451
16946
  * @param {UpdateMediaCommand} [updateMediaCommand]
15452
16947
  * @param {*} [options] Override http request option.
15453
16948
  * @throws {RequiredError}
16949
+ * @memberof DoctorsApi
15454
16950
  */
15455
- apiV1DoctorsDoctorIdMediasMediaIdPut(doctorId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
16951
+ apiV1DoctorsDoctorIdMediasMediaIdPut(doctorId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
15456
16952
  /**
15457
16953
  *
15458
16954
  * @summary Create DoctorMedia.
@@ -15460,8 +16956,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15460
16956
  * @param {CreateMediaCommand} [createMediaCommand]
15461
16957
  * @param {*} [options] Override http request option.
15462
16958
  * @throws {RequiredError}
16959
+ * @memberof DoctorsApi
15463
16960
  */
15464
- apiV1DoctorsDoctorIdMediasPost(doctorId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
16961
+ apiV1DoctorsDoctorIdMediasPost(doctorId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
15465
16962
  /**
15466
16963
  *
15467
16964
  * @summary Get All DoctorPortfolios
@@ -15474,8 +16971,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15474
16971
  * @param {Date} [lastRetrieved]
15475
16972
  * @param {*} [options] Override http request option.
15476
16973
  * @throws {RequiredError}
16974
+ * @memberof DoctorsApi
15477
16975
  */
15478
- apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string | undefined, portfolioId?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfoliosModel>>;
16976
+ apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string, portfolioId?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfoliosModel>>;
15479
16977
  /**
15480
16978
  *
15481
16979
  * @summary Delete DoctorPortfolio.
@@ -15483,8 +16981,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15483
16981
  * @param {string} portfolioId
15484
16982
  * @param {*} [options] Override http request option.
15485
16983
  * @throws {RequiredError}
16984
+ * @memberof DoctorsApi
15486
16985
  */
15487
- apiV1DoctorsDoctorIdPortfoliosPortfolioIdDelete(doctorId: string, portfolioId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16986
+ apiV1DoctorsDoctorIdPortfoliosPortfolioIdDelete(doctorId: string, portfolioId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15488
16987
  /**
15489
16988
  *
15490
16989
  * @summary Get DoctorPortfolio.
@@ -15492,8 +16991,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15492
16991
  * @param {string} portfolioId
15493
16992
  * @param {*} [options] Override http request option.
15494
16993
  * @throws {RequiredError}
16994
+ * @memberof DoctorsApi
15495
16995
  */
15496
- apiV1DoctorsDoctorIdPortfoliosPortfolioIdGet(doctorId: string, portfolioId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfolioModel>>;
16996
+ apiV1DoctorsDoctorIdPortfoliosPortfolioIdGet(doctorId: string, portfolioId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfolioModel>>;
15497
16997
  /**
15498
16998
  *
15499
16999
  * @summary Update DoctorPortfolio.
@@ -15502,8 +17002,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15502
17002
  * @param {UpdateDoctorPortfolioCommand} [updateDoctorPortfolioCommand]
15503
17003
  * @param {*} [options] Override http request option.
15504
17004
  * @throws {RequiredError}
17005
+ * @memberof DoctorsApi
15505
17006
  */
15506
- apiV1DoctorsDoctorIdPortfoliosPortfolioIdPut(doctorId: string, portfolioId: string, updateDoctorPortfolioCommand?: UpdateDoctorPortfolioCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfolioModel>>;
17007
+ apiV1DoctorsDoctorIdPortfoliosPortfolioIdPut(doctorId: string, portfolioId: string, updateDoctorPortfolioCommand?: UpdateDoctorPortfolioCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfolioModel>>;
15507
17008
  /**
15508
17009
  *
15509
17010
  * @summary Create DoctorPortfolio.
@@ -15511,8 +17012,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15511
17012
  * @param {CreateDoctorPortfolioCommand} [createDoctorPortfolioCommand]
15512
17013
  * @param {*} [options] Override http request option.
15513
17014
  * @throws {RequiredError}
17015
+ * @memberof DoctorsApi
15514
17016
  */
15515
- apiV1DoctorsDoctorIdPortfoliosPost(doctorId: string, createDoctorPortfolioCommand?: CreateDoctorPortfolioCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfolioModel>>;
17017
+ apiV1DoctorsDoctorIdPortfoliosPost(doctorId: string, createDoctorPortfolioCommand?: CreateDoctorPortfolioCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfolioModel>>;
15516
17018
  /**
15517
17019
  *
15518
17020
  * @summary Update Doctor.
@@ -15520,8 +17022,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15520
17022
  * @param {UpdateDoctorCommand} [updateDoctorCommand]
15521
17023
  * @param {*} [options] Override http request option.
15522
17024
  * @throws {RequiredError}
17025
+ * @memberof DoctorsApi
15523
17026
  */
15524
- apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
17027
+ apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
15525
17028
  /**
15526
17029
  *
15527
17030
  * @summary Get All DoctorSpecialties.
@@ -15534,8 +17037,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15534
17037
  * @param {Date} [lastRetrieved]
15535
17038
  * @param {*} [options] Override http request option.
15536
17039
  * @throws {RequiredError}
17040
+ * @memberof DoctorsApi
15537
17041
  */
15538
- apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
17042
+ apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel>>;
15539
17043
  /**
15540
17044
  *
15541
17045
  * @summary Link a doctor to a specialty.
@@ -15543,8 +17047,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15543
17047
  * @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
15544
17048
  * @param {*} [options] Override http request option.
15545
17049
  * @throws {RequiredError}
17050
+ * @memberof DoctorsApi
15546
17051
  */
15547
- apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
17052
+ apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
15548
17053
  /**
15549
17054
  *
15550
17055
  * @summary Remove link between the doctor and the specialty.
@@ -15552,8 +17057,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15552
17057
  * @param {string} specialtyId
15553
17058
  * @param {*} [options] Override http request option.
15554
17059
  * @throws {RequiredError}
17060
+ * @memberof DoctorsApi
15555
17061
  */
15556
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdDelete(doctorId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
17062
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdDelete(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15557
17063
  /**
15558
17064
  *
15559
17065
  * @summary Get DoctorSpecialty
@@ -15561,8 +17067,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15561
17067
  * @param {string} specialtyId
15562
17068
  * @param {*} [options] Override http request option.
15563
17069
  * @throws {RequiredError}
17070
+ * @memberof DoctorsApi
15564
17071
  */
15565
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
17072
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
15566
17073
  /**
15567
17074
  *
15568
17075
  * @summary Update DoctorSpecialty.
@@ -15571,8 +17078,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15571
17078
  * @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
15572
17079
  * @param {*} [options] Override http request option.
15573
17080
  * @throws {RequiredError}
17081
+ * @memberof DoctorsApi
15574
17082
  */
15575
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
17083
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
15576
17084
  /**
15577
17085
  *
15578
17086
  * @summary Get all Doctors.
@@ -15590,16 +17098,18 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15590
17098
  * @param {Date} [lastRetrieved]
15591
17099
  * @param {*} [options] Override http request option.
15592
17100
  * @throws {RequiredError}
17101
+ * @memberof DoctorsApi
15593
17102
  */
15594
- apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | 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 | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
17103
+ apiV1DoctorsGet(hospitalId?: string, languageCode?: string, 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>>;
15595
17104
  /**
15596
17105
  *
15597
17106
  * @summary Create a Doctor.
15598
17107
  * @param {CreateDoctorCommand} [createDoctorCommand]
15599
17108
  * @param {*} [options] Override http request option.
15600
17109
  * @throws {RequiredError}
17110
+ * @memberof DoctorsApi
15601
17111
  */
15602
- apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
17112
+ apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
15603
17113
  /**
15604
17114
  *
15605
17115
  * @summary Get Doctor by slug.
@@ -15607,559 +17117,809 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15607
17117
  * @param {string} [languageCode]
15608
17118
  * @param {*} [options] Override http request option.
15609
17119
  * @throws {RequiredError}
17120
+ * @memberof DoctorsApi
17121
+ */
17122
+ apiV1DoctorsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
17123
+ }
17124
+ /**
17125
+ * EmailMarketingsApi - axios parameter creator
17126
+ * @export
17127
+ */
17128
+ export declare const EmailMarketingsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
17129
+ /**
17130
+ *
17131
+ * @summary Get all templateVersions.
17132
+ * @param {number} [page]
17133
+ * @param {number} [limit]
17134
+ * @param {Date} [lastRetrieved]
17135
+ * @param {*} [options] Override http request option.
17136
+ * @throws {RequiredError}
15610
17137
  */
15611
- apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
17138
+ apiV1EmailmarketingsVersionsGet: (page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17139
+ /**
17140
+ *
17141
+ * @summary Create a templateVersion.
17142
+ * @param {CreateTemplateVersionCommand} [createTemplateVersionCommand]
17143
+ * @param {*} [options] Override http request option.
17144
+ * @throws {RequiredError}
17145
+ */
17146
+ apiV1EmailmarketingsVersionsPost: (createTemplateVersionCommand?: CreateTemplateVersionCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17147
+ /**
17148
+ *
17149
+ * @summary Delete templateVersion.
17150
+ * @param {string} versionId
17151
+ * @param {*} [options] Override http request option.
17152
+ * @throws {RequiredError}
17153
+ */
17154
+ apiV1EmailmarketingsVersionsVersionIdDelete: (versionId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17155
+ /**
17156
+ *
17157
+ * @summary Get templateVersion.
17158
+ * @param {string} versionId
17159
+ * @param {*} [options] Override http request option.
17160
+ * @throws {RequiredError}
17161
+ */
17162
+ apiV1EmailmarketingsVersionsVersionIdGet: (versionId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17163
+ /**
17164
+ *
17165
+ * @summary Update templateVersion.
17166
+ * @param {string} versionId
17167
+ * @param {UpdateTemplateVersionCommand} [updateTemplateVersionCommand]
17168
+ * @param {*} [options] Override http request option.
17169
+ * @throws {RequiredError}
17170
+ */
17171
+ apiV1EmailmarketingsVersionsVersionIdPut: (versionId: string, updateTemplateVersionCommand?: UpdateTemplateVersionCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17172
+ /**
17173
+ *
17174
+ * @summary Send templateVersion email.
17175
+ * @param {string} versionId
17176
+ * @param {SendTemplateVersionCommand} [sendTemplateVersionCommand]
17177
+ * @param {*} [options] Override http request option.
17178
+ * @throws {RequiredError}
17179
+ */
17180
+ apiV1EmailmarketingsVersionsVersionIdSendPost: (versionId: string, sendTemplateVersionCommand?: SendTemplateVersionCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15612
17181
  };
15613
17182
  /**
15614
- * DoctorsApi - factory interface
17183
+ * EmailMarketingsApi - functional programming interface
15615
17184
  * @export
15616
17185
  */
15617
- export declare const DoctorsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
17186
+ export declare const EmailMarketingsApiFp: (configuration?: Configuration | undefined) => {
17187
+ /**
17188
+ *
17189
+ * @summary Get all templateVersions.
17190
+ * @param {number} [page]
17191
+ * @param {number} [limit]
17192
+ * @param {Date} [lastRetrieved]
17193
+ * @param {*} [options] Override http request option.
17194
+ * @throws {RequiredError}
17195
+ */
17196
+ apiV1EmailmarketingsVersionsGet(page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersionsModel>>;
17197
+ /**
17198
+ *
17199
+ * @summary Create a templateVersion.
17200
+ * @param {CreateTemplateVersionCommand} [createTemplateVersionCommand]
17201
+ * @param {*} [options] Override http request option.
17202
+ * @throws {RequiredError}
17203
+ */
17204
+ apiV1EmailmarketingsVersionsPost(createTemplateVersionCommand?: CreateTemplateVersionCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersionModel>>;
17205
+ /**
17206
+ *
17207
+ * @summary Delete templateVersion.
17208
+ * @param {string} versionId
17209
+ * @param {*} [options] Override http request option.
17210
+ * @throws {RequiredError}
17211
+ */
17212
+ apiV1EmailmarketingsVersionsVersionIdDelete(versionId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
17213
+ /**
17214
+ *
17215
+ * @summary Get templateVersion.
17216
+ * @param {string} versionId
17217
+ * @param {*} [options] Override http request option.
17218
+ * @throws {RequiredError}
17219
+ */
17220
+ apiV1EmailmarketingsVersionsVersionIdGet(versionId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersionModel>>;
17221
+ /**
17222
+ *
17223
+ * @summary Update templateVersion.
17224
+ * @param {string} versionId
17225
+ * @param {UpdateTemplateVersionCommand} [updateTemplateVersionCommand]
17226
+ * @param {*} [options] Override http request option.
17227
+ * @throws {RequiredError}
17228
+ */
17229
+ apiV1EmailmarketingsVersionsVersionIdPut(versionId: string, updateTemplateVersionCommand?: UpdateTemplateVersionCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersionModel>>;
17230
+ /**
17231
+ *
17232
+ * @summary Send templateVersion email.
17233
+ * @param {string} versionId
17234
+ * @param {SendTemplateVersionCommand} [sendTemplateVersionCommand]
17235
+ * @param {*} [options] Override http request option.
17236
+ * @throws {RequiredError}
17237
+ */
17238
+ apiV1EmailmarketingsVersionsVersionIdSendPost(versionId: string, sendTemplateVersionCommand?: SendTemplateVersionCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
17239
+ };
17240
+ /**
17241
+ * EmailMarketingsApi - factory interface
17242
+ * @export
17243
+ */
17244
+ export declare const EmailMarketingsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
17245
+ /**
17246
+ *
17247
+ * @summary Get all templateVersions.
17248
+ * @param {number} [page]
17249
+ * @param {number} [limit]
17250
+ * @param {Date} [lastRetrieved]
17251
+ * @param {*} [options] Override http request option.
17252
+ * @throws {RequiredError}
17253
+ */
17254
+ apiV1EmailmarketingsVersionsGet(page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<TemplateVersionsModel>;
17255
+ /**
17256
+ *
17257
+ * @summary Create a templateVersion.
17258
+ * @param {CreateTemplateVersionCommand} [createTemplateVersionCommand]
17259
+ * @param {*} [options] Override http request option.
17260
+ * @throws {RequiredError}
17261
+ */
17262
+ apiV1EmailmarketingsVersionsPost(createTemplateVersionCommand?: CreateTemplateVersionCommand | undefined, options?: any): AxiosPromise<TemplateVersionModel>;
17263
+ /**
17264
+ *
17265
+ * @summary Delete templateVersion.
17266
+ * @param {string} versionId
17267
+ * @param {*} [options] Override http request option.
17268
+ * @throws {RequiredError}
17269
+ */
17270
+ apiV1EmailmarketingsVersionsVersionIdDelete(versionId: string, options?: any): AxiosPromise<boolean>;
17271
+ /**
17272
+ *
17273
+ * @summary Get templateVersion.
17274
+ * @param {string} versionId
17275
+ * @param {*} [options] Override http request option.
17276
+ * @throws {RequiredError}
17277
+ */
17278
+ apiV1EmailmarketingsVersionsVersionIdGet(versionId: string, options?: any): AxiosPromise<TemplateVersionModel>;
17279
+ /**
17280
+ *
17281
+ * @summary Update templateVersion.
17282
+ * @param {string} versionId
17283
+ * @param {UpdateTemplateVersionCommand} [updateTemplateVersionCommand]
17284
+ * @param {*} [options] Override http request option.
17285
+ * @throws {RequiredError}
17286
+ */
17287
+ apiV1EmailmarketingsVersionsVersionIdPut(versionId: string, updateTemplateVersionCommand?: UpdateTemplateVersionCommand | undefined, options?: any): AxiosPromise<TemplateVersionModel>;
17288
+ /**
17289
+ *
17290
+ * @summary Send templateVersion email.
17291
+ * @param {string} versionId
17292
+ * @param {SendTemplateVersionCommand} [sendTemplateVersionCommand]
17293
+ * @param {*} [options] Override http request option.
17294
+ * @throws {RequiredError}
17295
+ */
17296
+ apiV1EmailmarketingsVersionsVersionIdSendPost(versionId: string, sendTemplateVersionCommand?: SendTemplateVersionCommand | undefined, options?: any): AxiosPromise<boolean>;
17297
+ };
17298
+ /**
17299
+ * EmailMarketingsApi - object-oriented interface
17300
+ * @export
17301
+ * @class EmailMarketingsApi
17302
+ * @extends {BaseAPI}
17303
+ */
17304
+ export declare class EmailMarketingsApi extends BaseAPI {
17305
+ /**
17306
+ *
17307
+ * @summary Get all templateVersions.
17308
+ * @param {number} [page]
17309
+ * @param {number} [limit]
17310
+ * @param {Date} [lastRetrieved]
17311
+ * @param {*} [options] Override http request option.
17312
+ * @throws {RequiredError}
17313
+ * @memberof EmailMarketingsApi
17314
+ */
17315
+ apiV1EmailmarketingsVersionsGet(page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TemplateVersionsModel>>;
17316
+ /**
17317
+ *
17318
+ * @summary Create a templateVersion.
17319
+ * @param {CreateTemplateVersionCommand} [createTemplateVersionCommand]
17320
+ * @param {*} [options] Override http request option.
17321
+ * @throws {RequiredError}
17322
+ * @memberof EmailMarketingsApi
17323
+ */
17324
+ apiV1EmailmarketingsVersionsPost(createTemplateVersionCommand?: CreateTemplateVersionCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TemplateVersionModel>>;
15618
17325
  /**
15619
17326
  *
15620
- * @summary Get all doctor affiliations.
15621
- * @param {string} doctorId
15622
- * @param {string} [hospitalName]
15623
- * @param {number} [page]
15624
- * @param {number} [limit]
15625
- * @param {Date} [lastRetrieved]
17327
+ * @summary Delete templateVersion.
17328
+ * @param {string} versionId
15626
17329
  * @param {*} [options] Override http request option.
15627
17330
  * @throws {RequiredError}
17331
+ * @memberof EmailMarketingsApi
15628
17332
  */
15629
- apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
17333
+ apiV1EmailmarketingsVersionsVersionIdDelete(versionId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15630
17334
  /**
15631
17335
  *
15632
- * @summary Delete doctor affiliation.
15633
- * @param {string} doctorId
15634
- * @param {string} hospitalId
17336
+ * @summary Get templateVersion.
17337
+ * @param {string} versionId
15635
17338
  * @param {*} [options] Override http request option.
15636
17339
  * @throws {RequiredError}
17340
+ * @memberof EmailMarketingsApi
15637
17341
  */
15638
- apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: any): AxiosPromise<boolean>;
17342
+ apiV1EmailmarketingsVersionsVersionIdGet(versionId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TemplateVersionModel>>;
15639
17343
  /**
15640
17344
  *
15641
- * @summary Get doctor affiliation.
15642
- * @param {string} doctorId
15643
- * @param {string} hospitalId
17345
+ * @summary Update templateVersion.
17346
+ * @param {string} versionId
17347
+ * @param {UpdateTemplateVersionCommand} [updateTemplateVersionCommand]
15644
17348
  * @param {*} [options] Override http request option.
15645
17349
  * @throws {RequiredError}
17350
+ * @memberof EmailMarketingsApi
15646
17351
  */
15647
- apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: any): AxiosPromise<DoctorAffiliationModel>;
17352
+ apiV1EmailmarketingsVersionsVersionIdPut(versionId: string, updateTemplateVersionCommand?: UpdateTemplateVersionCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TemplateVersionModel>>;
15648
17353
  /**
15649
17354
  *
15650
- * @param {string} doctorId
15651
- * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
17355
+ * @summary Send templateVersion email.
17356
+ * @param {string} versionId
17357
+ * @param {SendTemplateVersionCommand} [sendTemplateVersionCommand]
15652
17358
  * @param {*} [options] Override http request option.
15653
17359
  * @throws {RequiredError}
17360
+ * @memberof EmailMarketingsApi
15654
17361
  */
15655
- apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
17362
+ apiV1EmailmarketingsVersionsVersionIdSendPost(versionId: string, sendTemplateVersionCommand?: SendTemplateVersionCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
17363
+ }
17364
+ /**
17365
+ * FaqCategoriesApi - axios parameter creator
17366
+ * @export
17367
+ */
17368
+ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
15656
17369
  /**
15657
17370
  *
15658
- * @summary Delete DoctorCertificate.
15659
- * @param {string} doctorId
15660
- * @param {string} certificateId
17371
+ * @summary Get BreadCrumbs.
17372
+ * @param {string} faqId
17373
+ * @param {string} [languageCode]
15661
17374
  * @param {*} [options] Override http request option.
15662
17375
  * @throws {RequiredError}
15663
17376
  */
15664
- apiV1DoctorsDoctorIdCertificatesCertificateIdDelete(doctorId: string, certificateId: string, options?: any): AxiosPromise<boolean>;
17377
+ apiV1FaqcategoriesBreadcrumbsFaqIdGet: (faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15665
17378
  /**
15666
17379
  *
15667
- * @summary Get DoctorCertificate.
15668
- * @param {string} doctorId
15669
- * @param {string} certificateId
17380
+ * @summary Delete FaqCategory.
17381
+ * @param {string} faqCategoryId
17382
+ * @param {boolean} [forceDelete]
15670
17383
  * @param {*} [options] Override http request option.
15671
17384
  * @throws {RequiredError}
15672
17385
  */
15673
- apiV1DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: any): AxiosPromise<DoctorCertificateModel>;
17386
+ apiV1FaqcategoriesFaqCategoryIdDelete: (faqCategoryId: string, forceDelete?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15674
17387
  /**
15675
17388
  *
15676
- * @summary Update DoctorCertificate.
15677
- * @param {string} doctorId
15678
- * @param {string} certificateId
15679
- * @param {UpdateDoctorCertificateCommand} [updateDoctorCertificateCommand]
17389
+ * @summary Get FaqCategory.
17390
+ * @param {string} faqCategoryId
17391
+ * @param {string} [languageCode]
15680
17392
  * @param {*} [options] Override http request option.
15681
17393
  * @throws {RequiredError}
15682
17394
  */
15683
- apiV1DoctorsDoctorIdCertificatesCertificateIdPut(doctorId: string, certificateId: string, updateDoctorCertificateCommand?: UpdateDoctorCertificateCommand | undefined, options?: any): AxiosPromise<DoctorCertificateModel>;
17395
+ apiV1FaqcategoriesFaqCategoryIdGet: (faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15684
17396
  /**
15685
17397
  *
15686
- * @summary Delete DoctorCertificate.
15687
- * @param {string} doctorId
15688
- * @param {string} [doctorName]
15689
- * @param {string} [certificateId]
15690
- * @param {string} [certificate]
15691
- * @param {Date} [activeFrom]
15692
- * @param {Date} [activeTo]
17398
+ * @summary Update FaqCategory.
17399
+ * @param {string} faqCategoryId
17400
+ * @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
17401
+ * @param {*} [options] Override http request option.
17402
+ * @throws {RequiredError}
17403
+ */
17404
+ apiV1FaqcategoriesFaqCategoryIdPut: (faqCategoryId: string, updateFaqCategoryCommand?: UpdateFaqCategoryCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17405
+ /**
17406
+ *
17407
+ * @summary Get all FaqCategories.
17408
+ * @param {string} [id]
17409
+ * @param {string} [parentId]
17410
+ * @param {string} [name]
17411
+ * @param {string} [description]
17412
+ * @param {string} [languageCode]
15693
17413
  * @param {number} [page]
15694
17414
  * @param {number} [limit]
15695
17415
  * @param {Date} [lastRetrieved]
15696
17416
  * @param {*} [options] Override http request option.
15697
17417
  * @throws {RequiredError}
15698
17418
  */
15699
- apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string | undefined, certificateId?: string | undefined, certificate?: string | undefined, activeFrom?: Date | undefined, activeTo?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorCertificatesModel>;
17419
+ apiV1FaqcategoriesGet: (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>;
15700
17420
  /**
15701
17421
  *
15702
- * @summary Create DoctorCertificate.
15703
- * @param {string} doctorId
15704
- * @param {CreateDoctorCertificateCommand} [createDoctorCertificateCommand]
17422
+ * @summary Create a FaqCategory.
17423
+ * @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
15705
17424
  * @param {*} [options] Override http request option.
15706
17425
  * @throws {RequiredError}
15707
17426
  */
15708
- apiV1DoctorsDoctorIdCertificatesPost(doctorId: string, createDoctorCertificateCommand?: CreateDoctorCertificateCommand | undefined, options?: any): AxiosPromise<DoctorCertificateModel>;
17427
+ apiV1FaqcategoriesPost: (createFaqCategoryCommand?: CreateFaqCategoryCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15709
17428
  /**
15710
17429
  *
15711
- * @summary Delete Doctor.
15712
- * @param {string} doctorId
17430
+ * @summary Get FaqCategory by slug.
17431
+ * @param {string} slug
17432
+ * @param {string} [languageCode]
15713
17433
  * @param {*} [options] Override http request option.
15714
17434
  * @throws {RequiredError}
15715
17435
  */
15716
- apiV1DoctorsDoctorIdDelete(doctorId: string, options?: any): AxiosPromise<boolean>;
17436
+ apiV1FaqcategoriesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17437
+ };
17438
+ /**
17439
+ * FaqCategoriesApi - functional programming interface
17440
+ * @export
17441
+ */
17442
+ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefined) => {
15717
17443
  /**
15718
17444
  *
15719
- * @summary Delete DoctorEducation
15720
- * @param {string} doctorId
15721
- * @param {string} educationId
17445
+ * @summary Get BreadCrumbs.
17446
+ * @param {string} faqId
17447
+ * @param {string} [languageCode]
15722
17448
  * @param {*} [options] Override http request option.
15723
17449
  * @throws {RequiredError}
15724
17450
  */
15725
- apiV1DoctorsDoctorIdEducationsEducationIdDelete(doctorId: string, educationId: string, options?: any): AxiosPromise<boolean>;
17451
+ apiV1FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<FaqCategoryBreadCrumbModel>>>;
15726
17452
  /**
15727
17453
  *
15728
- * @summary Get DoctorEducation.
15729
- * @param {string} doctorId
15730
- * @param {string} educationId
17454
+ * @summary Delete FaqCategory.
17455
+ * @param {string} faqCategoryId
17456
+ * @param {boolean} [forceDelete]
15731
17457
  * @param {*} [options] Override http request option.
15732
17458
  * @throws {RequiredError}
15733
17459
  */
15734
- apiV1DoctorsDoctorIdEducationsEducationIdGet(doctorId: string, educationId: string, options?: any): AxiosPromise<DoctorEducationModel>;
17460
+ apiV1FaqcategoriesFaqCategoryIdDelete(faqCategoryId: string, forceDelete?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
15735
17461
  /**
15736
17462
  *
15737
- * @summary Update DoctorEducation.
15738
- * @param {string} doctorId
15739
- * @param {string} educationId
15740
- * @param {UpdateDoctorEducationCommand} [updateDoctorEducationCommand]
17463
+ * @summary Get FaqCategory.
17464
+ * @param {string} faqCategoryId
17465
+ * @param {string} [languageCode]
15741
17466
  * @param {*} [options] Override http request option.
15742
17467
  * @throws {RequiredError}
15743
17468
  */
15744
- apiV1DoctorsDoctorIdEducationsEducationIdPut(doctorId: string, educationId: string, updateDoctorEducationCommand?: UpdateDoctorEducationCommand | undefined, options?: any): AxiosPromise<DoctorEducationModel>;
17469
+ apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
15745
17470
  /**
15746
17471
  *
15747
- * @summary Get all DoctorEducations.
15748
- * @param {string} doctorId
15749
- * @param {string} [doctorName]
15750
- * @param {string} [educationId]
15751
- * @param {string} [institution]
15752
- * @param {string} [qualification]
15753
- * @param {Date} [graduationDate]
15754
- * @param {number} [page]
15755
- * @param {number} [limit]
15756
- * @param {Date} [lastRetrieved]
17472
+ * @summary Update FaqCategory.
17473
+ * @param {string} faqCategoryId
17474
+ * @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
15757
17475
  * @param {*} [options] Override http request option.
15758
17476
  * @throws {RequiredError}
15759
17477
  */
15760
- apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorEducationsModel>;
17478
+ apiV1FaqcategoriesFaqCategoryIdPut(faqCategoryId: string, updateFaqCategoryCommand?: UpdateFaqCategoryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
15761
17479
  /**
15762
17480
  *
15763
- * @summary Create DoctorEducation.
15764
- * @param {string} doctorId
15765
- * @param {CreateDoctorEducationCommand} [createDoctorEducationCommand]
17481
+ * @summary Get all FaqCategories.
17482
+ * @param {string} [id]
17483
+ * @param {string} [parentId]
17484
+ * @param {string} [name]
17485
+ * @param {string} [description]
17486
+ * @param {string} [languageCode]
17487
+ * @param {number} [page]
17488
+ * @param {number} [limit]
17489
+ * @param {Date} [lastRetrieved]
15766
17490
  * @param {*} [options] Override http request option.
15767
17491
  * @throws {RequiredError}
15768
17492
  */
15769
- apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: any): AxiosPromise<DoctorEducationModel>;
17493
+ apiV1FaqcategoriesGet(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 | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoriesModel>>;
15770
17494
  /**
15771
17495
  *
15772
- * @summary Get Doctor.
15773
- * @param {string} doctorId
17496
+ * @summary Create a FaqCategory.
17497
+ * @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
15774
17498
  * @param {*} [options] Override http request option.
15775
17499
  * @throws {RequiredError}
15776
17500
  */
15777
- apiV1DoctorsDoctorIdGet(doctorId: string, options?: any): AxiosPromise<DoctorModel>;
17501
+ apiV1FaqcategoriesPost(createFaqCategoryCommand?: CreateFaqCategoryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
15778
17502
  /**
15779
17503
  *
15780
- * @summary Get all DoctorMedias.
15781
- * @param {string} doctorId
15782
- * @param {string} [id]
15783
- * @param {MediaType} [mediaType]
15784
- * @param {number} [page]
15785
- * @param {number} [limit]
15786
- * @param {Date} [lastRetrieved]
17504
+ * @summary Get FaqCategory by slug.
17505
+ * @param {string} slug
17506
+ * @param {string} [languageCode]
15787
17507
  * @param {*} [options] Override http request option.
15788
17508
  * @throws {RequiredError}
15789
17509
  */
15790
- apiV1DoctorsDoctorIdMediasGet(doctorId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
17510
+ apiV1FaqcategoriesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
17511
+ };
17512
+ /**
17513
+ * FaqCategoriesApi - factory interface
17514
+ * @export
17515
+ */
17516
+ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
15791
17517
  /**
15792
17518
  *
15793
- * @summary Delete DoctorMedia
15794
- * @param {string} doctorId
15795
- * @param {string} mediaId
17519
+ * @summary Get BreadCrumbs.
17520
+ * @param {string} faqId
17521
+ * @param {string} [languageCode]
15796
17522
  * @param {*} [options] Override http request option.
15797
17523
  * @throws {RequiredError}
15798
17524
  */
15799
- apiV1DoctorsDoctorIdMediasMediaIdDelete(doctorId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
17525
+ apiV1FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: any): AxiosPromise<Array<FaqCategoryBreadCrumbModel>>;
15800
17526
  /**
15801
17527
  *
15802
- * @summary Get DoctorMedia.
15803
- * @param {string} doctorId
15804
- * @param {string} mediaId
17528
+ * @summary Delete FaqCategory.
17529
+ * @param {string} faqCategoryId
17530
+ * @param {boolean} [forceDelete]
15805
17531
  * @param {*} [options] Override http request option.
15806
17532
  * @throws {RequiredError}
15807
17533
  */
15808
- apiV1DoctorsDoctorIdMediasMediaIdGet(doctorId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
17534
+ apiV1FaqcategoriesFaqCategoryIdDelete(faqCategoryId: string, forceDelete?: boolean | undefined, options?: any): AxiosPromise<boolean>;
15809
17535
  /**
15810
17536
  *
15811
- * @summary Update DoctorMedia.
15812
- * @param {string} doctorId
15813
- * @param {string} mediaId
15814
- * @param {UpdateMediaCommand} [updateMediaCommand]
17537
+ * @summary Get FaqCategory.
17538
+ * @param {string} faqCategoryId
17539
+ * @param {string} [languageCode]
15815
17540
  * @param {*} [options] Override http request option.
15816
17541
  * @throws {RequiredError}
15817
17542
  */
15818
- apiV1DoctorsDoctorIdMediasMediaIdPut(doctorId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
17543
+ apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
15819
17544
  /**
15820
17545
  *
15821
- * @summary Create DoctorMedia.
15822
- * @param {string} doctorId
15823
- * @param {CreateMediaCommand} [createMediaCommand]
17546
+ * @summary Update FaqCategory.
17547
+ * @param {string} faqCategoryId
17548
+ * @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
15824
17549
  * @param {*} [options] Override http request option.
15825
17550
  * @throws {RequiredError}
15826
17551
  */
15827
- apiV1DoctorsDoctorIdMediasPost(doctorId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
17552
+ apiV1FaqcategoriesFaqCategoryIdPut(faqCategoryId: string, updateFaqCategoryCommand?: UpdateFaqCategoryCommand | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
15828
17553
  /**
15829
17554
  *
15830
- * @summary Get All DoctorPortfolios
15831
- * @param {string} doctorId
15832
- * @param {string} [doctorName]
15833
- * @param {string} [portfolioId]
17555
+ * @summary Get all FaqCategories.
17556
+ * @param {string} [id]
17557
+ * @param {string} [parentId]
15834
17558
  * @param {string} [name]
17559
+ * @param {string} [description]
17560
+ * @param {string} [languageCode]
15835
17561
  * @param {number} [page]
15836
17562
  * @param {number} [limit]
15837
17563
  * @param {Date} [lastRetrieved]
15838
17564
  * @param {*} [options] Override http request option.
15839
17565
  * @throws {RequiredError}
15840
17566
  */
15841
- apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string | undefined, portfolioId?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorPortfoliosModel>;
17567
+ apiV1FaqcategoriesGet(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>;
15842
17568
  /**
15843
17569
  *
15844
- * @summary Delete DoctorPortfolio.
15845
- * @param {string} doctorId
15846
- * @param {string} portfolioId
17570
+ * @summary Create a FaqCategory.
17571
+ * @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
15847
17572
  * @param {*} [options] Override http request option.
15848
17573
  * @throws {RequiredError}
15849
17574
  */
15850
- apiV1DoctorsDoctorIdPortfoliosPortfolioIdDelete(doctorId: string, portfolioId: string, options?: any): AxiosPromise<boolean>;
17575
+ apiV1FaqcategoriesPost(createFaqCategoryCommand?: CreateFaqCategoryCommand | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
15851
17576
  /**
15852
17577
  *
15853
- * @summary Get DoctorPortfolio.
15854
- * @param {string} doctorId
15855
- * @param {string} portfolioId
17578
+ * @summary Get FaqCategory by slug.
17579
+ * @param {string} slug
17580
+ * @param {string} [languageCode]
15856
17581
  * @param {*} [options] Override http request option.
15857
17582
  * @throws {RequiredError}
15858
17583
  */
15859
- apiV1DoctorsDoctorIdPortfoliosPortfolioIdGet(doctorId: string, portfolioId: string, options?: any): AxiosPromise<DoctorPortfolioModel>;
17584
+ apiV1FaqcategoriesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
17585
+ };
17586
+ /**
17587
+ * FaqCategoriesApi - object-oriented interface
17588
+ * @export
17589
+ * @class FaqCategoriesApi
17590
+ * @extends {BaseAPI}
17591
+ */
17592
+ export declare class FaqCategoriesApi extends BaseAPI {
15860
17593
  /**
15861
17594
  *
15862
- * @summary Update DoctorPortfolio.
15863
- * @param {string} doctorId
15864
- * @param {string} portfolioId
15865
- * @param {UpdateDoctorPortfolioCommand} [updateDoctorPortfolioCommand]
17595
+ * @summary Get BreadCrumbs.
17596
+ * @param {string} faqId
17597
+ * @param {string} [languageCode]
15866
17598
  * @param {*} [options] Override http request option.
15867
17599
  * @throws {RequiredError}
17600
+ * @memberof FaqCategoriesApi
15868
17601
  */
15869
- apiV1DoctorsDoctorIdPortfoliosPortfolioIdPut(doctorId: string, portfolioId: string, updateDoctorPortfolioCommand?: UpdateDoctorPortfolioCommand | undefined, options?: any): AxiosPromise<DoctorPortfolioModel>;
17602
+ apiV1FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryBreadCrumbModel[]>>;
15870
17603
  /**
15871
17604
  *
15872
- * @summary Create DoctorPortfolio.
15873
- * @param {string} doctorId
15874
- * @param {CreateDoctorPortfolioCommand} [createDoctorPortfolioCommand]
17605
+ * @summary Delete FaqCategory.
17606
+ * @param {string} faqCategoryId
17607
+ * @param {boolean} [forceDelete]
15875
17608
  * @param {*} [options] Override http request option.
15876
17609
  * @throws {RequiredError}
17610
+ * @memberof FaqCategoriesApi
15877
17611
  */
15878
- apiV1DoctorsDoctorIdPortfoliosPost(doctorId: string, createDoctorPortfolioCommand?: CreateDoctorPortfolioCommand | undefined, options?: any): AxiosPromise<DoctorPortfolioModel>;
17612
+ apiV1FaqcategoriesFaqCategoryIdDelete(faqCategoryId: string, forceDelete?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15879
17613
  /**
15880
17614
  *
15881
- * @summary Update Doctor.
15882
- * @param {string} doctorId
15883
- * @param {UpdateDoctorCommand} [updateDoctorCommand]
17615
+ * @summary Get FaqCategory.
17616
+ * @param {string} faqCategoryId
17617
+ * @param {string} [languageCode]
15884
17618
  * @param {*} [options] Override http request option.
15885
17619
  * @throws {RequiredError}
17620
+ * @memberof FaqCategoriesApi
15886
17621
  */
15887
- apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
17622
+ apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
15888
17623
  /**
15889
17624
  *
15890
- * @summary Get All DoctorSpecialties.
15891
- * @param {string} doctorId
15892
- * @param {string} [doctorName]
15893
- * @param {string} [specialtyId]
15894
- * @param {string} [specialtyName]
17625
+ * @summary Update FaqCategory.
17626
+ * @param {string} faqCategoryId
17627
+ * @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
17628
+ * @param {*} [options] Override http request option.
17629
+ * @throws {RequiredError}
17630
+ * @memberof FaqCategoriesApi
17631
+ */
17632
+ apiV1FaqcategoriesFaqCategoryIdPut(faqCategoryId: string, updateFaqCategoryCommand?: UpdateFaqCategoryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
17633
+ /**
17634
+ *
17635
+ * @summary Get all FaqCategories.
17636
+ * @param {string} [id]
17637
+ * @param {string} [parentId]
17638
+ * @param {string} [name]
17639
+ * @param {string} [description]
17640
+ * @param {string} [languageCode]
15895
17641
  * @param {number} [page]
15896
17642
  * @param {number} [limit]
15897
17643
  * @param {Date} [lastRetrieved]
15898
17644
  * @param {*} [options] Override http request option.
15899
17645
  * @throws {RequiredError}
17646
+ * @memberof FaqCategoriesApi
15900
17647
  */
15901
- apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
17648
+ apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoriesModel>>;
15902
17649
  /**
15903
17650
  *
15904
- * @summary Link a doctor to a specialty.
15905
- * @param {string} doctorId
15906
- * @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
17651
+ * @summary Create a FaqCategory.
17652
+ * @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
15907
17653
  * @param {*} [options] Override http request option.
15908
17654
  * @throws {RequiredError}
17655
+ * @memberof FaqCategoriesApi
15909
17656
  */
15910
- apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
17657
+ apiV1FaqcategoriesPost(createFaqCategoryCommand?: CreateFaqCategoryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
15911
17658
  /**
15912
17659
  *
15913
- * @summary Remove link between the doctor and the specialty.
15914
- * @param {string} doctorId
15915
- * @param {string} specialtyId
17660
+ * @summary Get FaqCategory by slug.
17661
+ * @param {string} slug
17662
+ * @param {string} [languageCode]
15916
17663
  * @param {*} [options] Override http request option.
15917
17664
  * @throws {RequiredError}
17665
+ * @memberof FaqCategoriesApi
15918
17666
  */
15919
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdDelete(doctorId: string, specialtyId: string, options?: any): AxiosPromise<boolean>;
17667
+ apiV1FaqcategoriesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
17668
+ }
17669
+ /**
17670
+ * FaqsApi - axios parameter creator
17671
+ * @export
17672
+ */
17673
+ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
15920
17674
  /**
15921
17675
  *
15922
- * @summary Get DoctorSpecialty
15923
- * @param {string} doctorId
15924
- * @param {string} specialtyId
17676
+ * @summary Delete faq.
17677
+ * @param {string} faqId
15925
17678
  * @param {*} [options] Override http request option.
15926
17679
  * @throws {RequiredError}
15927
17680
  */
15928
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel>;
17681
+ apiV1FaqsFaqIdDelete: (faqId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15929
17682
  /**
15930
17683
  *
15931
- * @summary Update DoctorSpecialty.
15932
- * @param {string} doctorId
15933
- * @param {string} specialtyId
15934
- * @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
17684
+ * @summary Get faq.
17685
+ * @param {string} faqId
17686
+ * @param {string} [languageCode]
15935
17687
  * @param {*} [options] Override http request option.
15936
17688
  * @throws {RequiredError}
15937
17689
  */
15938
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
17690
+ apiV1FaqsFaqIdGet: (faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15939
17691
  /**
15940
17692
  *
15941
- * @summary Get all Doctors.
15942
- * @param {string} [hospitalId]
15943
- * @param {string} [languageCode]
17693
+ * @summary Get all FaqMedias.
17694
+ * @param {string} faqId
15944
17695
  * @param {string} [id]
15945
- * @param {string} [fullname]
15946
- * @param {string} [email]
15947
- * @param {Gender} [gender]
15948
- * @param {Date} [dateOfBirth]
15949
- * @param {Date} [created]
15950
- * @param {boolean} [showHidden]
17696
+ * @param {MediaType} [mediaType]
15951
17697
  * @param {number} [page]
15952
17698
  * @param {number} [limit]
15953
17699
  * @param {Date} [lastRetrieved]
15954
17700
  * @param {*} [options] Override http request option.
15955
17701
  * @throws {RequiredError}
15956
17702
  */
15957
- apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | 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>;
17703
+ apiV1FaqsFaqIdMediasGet: (faqId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15958
17704
  /**
15959
17705
  *
15960
- * @summary Create a Doctor.
15961
- * @param {CreateDoctorCommand} [createDoctorCommand]
17706
+ * @summary Delete FaqMedia
17707
+ * @param {string} faqId
17708
+ * @param {string} mediaId
15962
17709
  * @param {*} [options] Override http request option.
15963
17710
  * @throws {RequiredError}
15964
17711
  */
15965
- apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
17712
+ apiV1FaqsFaqIdMediasMediaIdDelete: (faqId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15966
17713
  /**
15967
17714
  *
15968
- * @summary Get Doctor by slug.
15969
- * @param {string} slug
15970
- * @param {string} [languageCode]
17715
+ * @summary Get FaqMedia.
17716
+ * @param {string} faqId
17717
+ * @param {string} mediaId
15971
17718
  * @param {*} [options] Override http request option.
15972
17719
  * @throws {RequiredError}
15973
17720
  */
15974
- apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
15975
- };
15976
- /**
15977
- * DoctorsApi - object-oriented interface
15978
- * @export
15979
- * @class DoctorsApi
15980
- * @extends {BaseAPI}
15981
- */
15982
- export declare class DoctorsApi extends BaseAPI {
17721
+ apiV1FaqsFaqIdMediasMediaIdGet: (faqId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15983
17722
  /**
15984
17723
  *
15985
- * @summary Get all doctor affiliations.
15986
- * @param {string} doctorId
15987
- * @param {string} [hospitalName]
15988
- * @param {number} [page]
15989
- * @param {number} [limit]
15990
- * @param {Date} [lastRetrieved]
17724
+ * @summary Update FaqMedia.
17725
+ * @param {string} faqId
17726
+ * @param {string} mediaId
17727
+ * @param {UpdateMediaCommand} [updateMediaCommand]
17728
+ * @param {*} [options] Override http request option.
17729
+ * @throws {RequiredError}
17730
+ */
17731
+ apiV1FaqsFaqIdMediasMediaIdPut: (faqId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17732
+ /**
17733
+ *
17734
+ * @summary Create FaqMedia.
17735
+ * @param {string} faqId
17736
+ * @param {CreateMediaCommand} [createMediaCommand]
15991
17737
  * @param {*} [options] Override http request option.
15992
17738
  * @throws {RequiredError}
15993
- * @memberof DoctorsApi
15994
17739
  */
15995
- apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
17740
+ apiV1FaqsFaqIdMediasPost: (faqId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15996
17741
  /**
15997
17742
  *
15998
- * @summary Delete doctor affiliation.
15999
- * @param {string} doctorId
16000
- * @param {string} hospitalId
17743
+ * @summary Update faq.
17744
+ * @param {string} faqId
17745
+ * @param {UpdateFaqCommand} [updateFaqCommand]
16001
17746
  * @param {*} [options] Override http request option.
16002
17747
  * @throws {RequiredError}
16003
- * @memberof DoctorsApi
16004
17748
  */
16005
- apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
17749
+ apiV1FaqsFaqIdPut: (faqId: string, updateFaqCommand?: UpdateFaqCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16006
17750
  /**
16007
17751
  *
16008
- * @summary Get doctor affiliation.
16009
- * @param {string} doctorId
16010
- * @param {string} hospitalId
17752
+ * @summary Get all Faqs.
17753
+ * @param {string} [id]
17754
+ * @param {string} [title]
17755
+ * @param {string} [content]
17756
+ * @param {string} [categoryId]
17757
+ * @param {string} [languageCode]
17758
+ * @param {number} [page]
17759
+ * @param {number} [limit]
17760
+ * @param {Date} [lastRetrieved]
16011
17761
  * @param {*} [options] Override http request option.
16012
17762
  * @throws {RequiredError}
16013
- * @memberof DoctorsApi
16014
17763
  */
16015
- apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
17764
+ apiV1FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16016
17765
  /**
16017
17766
  *
16018
- * @param {string} doctorId
16019
- * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
17767
+ * @summary Create a faq.
17768
+ * @param {CreateFaqCommand} [createFaqCommand]
16020
17769
  * @param {*} [options] Override http request option.
16021
17770
  * @throws {RequiredError}
16022
- * @memberof DoctorsApi
16023
17771
  */
16024
- apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
17772
+ apiV1FaqsPost: (createFaqCommand?: CreateFaqCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16025
17773
  /**
16026
17774
  *
16027
- * @summary Delete DoctorCertificate.
16028
- * @param {string} doctorId
16029
- * @param {string} certificateId
17775
+ * @summary Get faq by slug.
17776
+ * @param {string} slug
17777
+ * @param {string} [languageCode]
16030
17778
  * @param {*} [options] Override http request option.
16031
17779
  * @throws {RequiredError}
16032
- * @memberof DoctorsApi
16033
17780
  */
16034
- apiV1DoctorsDoctorIdCertificatesCertificateIdDelete(doctorId: string, certificateId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
17781
+ apiV1FaqsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17782
+ };
17783
+ /**
17784
+ * FaqsApi - functional programming interface
17785
+ * @export
17786
+ */
17787
+ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
16035
17788
  /**
16036
17789
  *
16037
- * @summary Get DoctorCertificate.
16038
- * @param {string} doctorId
16039
- * @param {string} certificateId
17790
+ * @summary Delete faq.
17791
+ * @param {string} faqId
16040
17792
  * @param {*} [options] Override http request option.
16041
17793
  * @throws {RequiredError}
16042
- * @memberof DoctorsApi
16043
17794
  */
16044
- apiV1DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificateModel>>;
17795
+ apiV1FaqsFaqIdDelete(faqId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16045
17796
  /**
16046
17797
  *
16047
- * @summary Update DoctorCertificate.
16048
- * @param {string} doctorId
16049
- * @param {string} certificateId
16050
- * @param {UpdateDoctorCertificateCommand} [updateDoctorCertificateCommand]
17798
+ * @summary Get faq.
17799
+ * @param {string} faqId
17800
+ * @param {string} [languageCode]
16051
17801
  * @param {*} [options] Override http request option.
16052
17802
  * @throws {RequiredError}
16053
- * @memberof DoctorsApi
16054
17803
  */
16055
- apiV1DoctorsDoctorIdCertificatesCertificateIdPut(doctorId: string, certificateId: string, updateDoctorCertificateCommand?: UpdateDoctorCertificateCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificateModel>>;
17804
+ apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
16056
17805
  /**
16057
17806
  *
16058
- * @summary Delete DoctorCertificate.
16059
- * @param {string} doctorId
16060
- * @param {string} [doctorName]
16061
- * @param {string} [certificateId]
16062
- * @param {string} [certificate]
16063
- * @param {Date} [activeFrom]
16064
- * @param {Date} [activeTo]
17807
+ * @summary Get all FaqMedias.
17808
+ * @param {string} faqId
17809
+ * @param {string} [id]
17810
+ * @param {MediaType} [mediaType]
16065
17811
  * @param {number} [page]
16066
17812
  * @param {number} [limit]
16067
17813
  * @param {Date} [lastRetrieved]
16068
17814
  * @param {*} [options] Override http request option.
16069
17815
  * @throws {RequiredError}
16070
- * @memberof DoctorsApi
16071
17816
  */
16072
- apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string, certificateId?: string, certificate?: string, activeFrom?: Date, activeTo?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificatesModel>>;
17817
+ apiV1FaqsFaqIdMediasGet(faqId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
16073
17818
  /**
16074
17819
  *
16075
- * @summary Create DoctorCertificate.
16076
- * @param {string} doctorId
16077
- * @param {CreateDoctorCertificateCommand} [createDoctorCertificateCommand]
17820
+ * @summary Delete FaqMedia
17821
+ * @param {string} faqId
17822
+ * @param {string} mediaId
16078
17823
  * @param {*} [options] Override http request option.
16079
17824
  * @throws {RequiredError}
16080
- * @memberof DoctorsApi
16081
17825
  */
16082
- apiV1DoctorsDoctorIdCertificatesPost(doctorId: string, createDoctorCertificateCommand?: CreateDoctorCertificateCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificateModel>>;
17826
+ apiV1FaqsFaqIdMediasMediaIdDelete(faqId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16083
17827
  /**
16084
17828
  *
16085
- * @summary Delete Doctor.
16086
- * @param {string} doctorId
17829
+ * @summary Get FaqMedia.
17830
+ * @param {string} faqId
17831
+ * @param {string} mediaId
16087
17832
  * @param {*} [options] Override http request option.
16088
17833
  * @throws {RequiredError}
16089
- * @memberof DoctorsApi
16090
17834
  */
16091
- apiV1DoctorsDoctorIdDelete(doctorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
17835
+ apiV1FaqsFaqIdMediasMediaIdGet(faqId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
16092
17836
  /**
16093
17837
  *
16094
- * @summary Delete DoctorEducation
16095
- * @param {string} doctorId
16096
- * @param {string} educationId
17838
+ * @summary Update FaqMedia.
17839
+ * @param {string} faqId
17840
+ * @param {string} mediaId
17841
+ * @param {UpdateMediaCommand} [updateMediaCommand]
16097
17842
  * @param {*} [options] Override http request option.
16098
17843
  * @throws {RequiredError}
16099
- * @memberof DoctorsApi
16100
17844
  */
16101
- apiV1DoctorsDoctorIdEducationsEducationIdDelete(doctorId: string, educationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
17845
+ apiV1FaqsFaqIdMediasMediaIdPut(faqId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
16102
17846
  /**
16103
17847
  *
16104
- * @summary Get DoctorEducation.
16105
- * @param {string} doctorId
16106
- * @param {string} educationId
17848
+ * @summary Create FaqMedia.
17849
+ * @param {string} faqId
17850
+ * @param {CreateMediaCommand} [createMediaCommand]
16107
17851
  * @param {*} [options] Override http request option.
16108
17852
  * @throws {RequiredError}
16109
- * @memberof DoctorsApi
16110
17853
  */
16111
- apiV1DoctorsDoctorIdEducationsEducationIdGet(doctorId: string, educationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationModel>>;
17854
+ apiV1FaqsFaqIdMediasPost(faqId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
16112
17855
  /**
16113
17856
  *
16114
- * @summary Update DoctorEducation.
16115
- * @param {string} doctorId
16116
- * @param {string} educationId
16117
- * @param {UpdateDoctorEducationCommand} [updateDoctorEducationCommand]
17857
+ * @summary Update faq.
17858
+ * @param {string} faqId
17859
+ * @param {UpdateFaqCommand} [updateFaqCommand]
16118
17860
  * @param {*} [options] Override http request option.
16119
17861
  * @throws {RequiredError}
16120
- * @memberof DoctorsApi
16121
17862
  */
16122
- apiV1DoctorsDoctorIdEducationsEducationIdPut(doctorId: string, educationId: string, updateDoctorEducationCommand?: UpdateDoctorEducationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationModel>>;
17863
+ apiV1FaqsFaqIdPut(faqId: string, updateFaqCommand?: UpdateFaqCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
16123
17864
  /**
16124
17865
  *
16125
- * @summary Get all DoctorEducations.
16126
- * @param {string} doctorId
16127
- * @param {string} [doctorName]
16128
- * @param {string} [educationId]
16129
- * @param {string} [institution]
16130
- * @param {string} [qualification]
16131
- * @param {Date} [graduationDate]
17866
+ * @summary Get all Faqs.
17867
+ * @param {string} [id]
17868
+ * @param {string} [title]
17869
+ * @param {string} [content]
17870
+ * @param {string} [categoryId]
17871
+ * @param {string} [languageCode]
16132
17872
  * @param {number} [page]
16133
17873
  * @param {number} [limit]
16134
17874
  * @param {Date} [lastRetrieved]
16135
17875
  * @param {*} [options] Override http request option.
16136
17876
  * @throws {RequiredError}
16137
- * @memberof DoctorsApi
16138
17877
  */
16139
- apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string, educationId?: string, institution?: string, qualification?: string, graduationDate?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationsModel>>;
17878
+ apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqsModel>>;
16140
17879
  /**
16141
17880
  *
16142
- * @summary Create DoctorEducation.
16143
- * @param {string} doctorId
16144
- * @param {CreateDoctorEducationCommand} [createDoctorEducationCommand]
17881
+ * @summary Create a faq.
17882
+ * @param {CreateFaqCommand} [createFaqCommand]
16145
17883
  * @param {*} [options] Override http request option.
16146
17884
  * @throws {RequiredError}
16147
- * @memberof DoctorsApi
16148
17885
  */
16149
- apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationModel>>;
17886
+ apiV1FaqsPost(createFaqCommand?: CreateFaqCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
16150
17887
  /**
16151
17888
  *
16152
- * @summary Get Doctor.
16153
- * @param {string} doctorId
17889
+ * @summary Get faq by slug.
17890
+ * @param {string} slug
17891
+ * @param {string} [languageCode]
17892
+ * @param {*} [options] Override http request option.
17893
+ * @throws {RequiredError}
17894
+ */
17895
+ apiV1FaqsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
17896
+ };
17897
+ /**
17898
+ * FaqsApi - factory interface
17899
+ * @export
17900
+ */
17901
+ export declare const FaqsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
17902
+ /**
17903
+ *
17904
+ * @summary Delete faq.
17905
+ * @param {string} faqId
16154
17906
  * @param {*} [options] Override http request option.
16155
17907
  * @throws {RequiredError}
16156
- * @memberof DoctorsApi
16157
17908
  */
16158
- apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
17909
+ apiV1FaqsFaqIdDelete(faqId: string, options?: any): AxiosPromise<boolean>;
16159
17910
  /**
16160
17911
  *
16161
- * @summary Get all DoctorMedias.
16162
- * @param {string} doctorId
17912
+ * @summary Get faq.
17913
+ * @param {string} faqId
17914
+ * @param {string} [languageCode]
17915
+ * @param {*} [options] Override http request option.
17916
+ * @throws {RequiredError}
17917
+ */
17918
+ apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqModel>;
17919
+ /**
17920
+ *
17921
+ * @summary Get all FaqMedias.
17922
+ * @param {string} faqId
16163
17923
  * @param {string} [id]
16164
17924
  * @param {MediaType} [mediaType]
16165
17925
  * @param {number} [page]
@@ -16167,211 +17927,213 @@ export declare class DoctorsApi extends BaseAPI {
16167
17927
  * @param {Date} [lastRetrieved]
16168
17928
  * @param {*} [options] Override http request option.
16169
17929
  * @throws {RequiredError}
16170
- * @memberof DoctorsApi
16171
17930
  */
16172
- apiV1DoctorsDoctorIdMediasGet(doctorId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
17931
+ apiV1FaqsFaqIdMediasGet(faqId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
16173
17932
  /**
16174
17933
  *
16175
- * @summary Delete DoctorMedia
16176
- * @param {string} doctorId
17934
+ * @summary Delete FaqMedia
17935
+ * @param {string} faqId
16177
17936
  * @param {string} mediaId
16178
17937
  * @param {*} [options] Override http request option.
16179
17938
  * @throws {RequiredError}
16180
- * @memberof DoctorsApi
16181
17939
  */
16182
- apiV1DoctorsDoctorIdMediasMediaIdDelete(doctorId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
17940
+ apiV1FaqsFaqIdMediasMediaIdDelete(faqId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
16183
17941
  /**
16184
17942
  *
16185
- * @summary Get DoctorMedia.
16186
- * @param {string} doctorId
17943
+ * @summary Get FaqMedia.
17944
+ * @param {string} faqId
16187
17945
  * @param {string} mediaId
16188
17946
  * @param {*} [options] Override http request option.
16189
17947
  * @throws {RequiredError}
16190
- * @memberof DoctorsApi
16191
17948
  */
16192
- apiV1DoctorsDoctorIdMediasMediaIdGet(doctorId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
17949
+ apiV1FaqsFaqIdMediasMediaIdGet(faqId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
16193
17950
  /**
16194
17951
  *
16195
- * @summary Update DoctorMedia.
16196
- * @param {string} doctorId
17952
+ * @summary Update FaqMedia.
17953
+ * @param {string} faqId
16197
17954
  * @param {string} mediaId
16198
17955
  * @param {UpdateMediaCommand} [updateMediaCommand]
16199
17956
  * @param {*} [options] Override http request option.
16200
17957
  * @throws {RequiredError}
16201
- * @memberof DoctorsApi
16202
17958
  */
16203
- apiV1DoctorsDoctorIdMediasMediaIdPut(doctorId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
17959
+ apiV1FaqsFaqIdMediasMediaIdPut(faqId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
16204
17960
  /**
16205
17961
  *
16206
- * @summary Create DoctorMedia.
16207
- * @param {string} doctorId
17962
+ * @summary Create FaqMedia.
17963
+ * @param {string} faqId
16208
17964
  * @param {CreateMediaCommand} [createMediaCommand]
16209
17965
  * @param {*} [options] Override http request option.
16210
17966
  * @throws {RequiredError}
16211
- * @memberof DoctorsApi
16212
17967
  */
16213
- apiV1DoctorsDoctorIdMediasPost(doctorId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
17968
+ apiV1FaqsFaqIdMediasPost(faqId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
16214
17969
  /**
16215
17970
  *
16216
- * @summary Get All DoctorPortfolios
16217
- * @param {string} doctorId
16218
- * @param {string} [doctorName]
16219
- * @param {string} [portfolioId]
16220
- * @param {string} [name]
16221
- * @param {number} [page]
16222
- * @param {number} [limit]
16223
- * @param {Date} [lastRetrieved]
17971
+ * @summary Update faq.
17972
+ * @param {string} faqId
17973
+ * @param {UpdateFaqCommand} [updateFaqCommand]
16224
17974
  * @param {*} [options] Override http request option.
16225
17975
  * @throws {RequiredError}
16226
- * @memberof DoctorsApi
16227
17976
  */
16228
- apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string, portfolioId?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfoliosModel>>;
17977
+ apiV1FaqsFaqIdPut(faqId: string, updateFaqCommand?: UpdateFaqCommand | undefined, options?: any): AxiosPromise<FaqModel>;
16229
17978
  /**
16230
17979
  *
16231
- * @summary Delete DoctorPortfolio.
16232
- * @param {string} doctorId
16233
- * @param {string} portfolioId
17980
+ * @summary Get all Faqs.
17981
+ * @param {string} [id]
17982
+ * @param {string} [title]
17983
+ * @param {string} [content]
17984
+ * @param {string} [categoryId]
17985
+ * @param {string} [languageCode]
17986
+ * @param {number} [page]
17987
+ * @param {number} [limit]
17988
+ * @param {Date} [lastRetrieved]
16234
17989
  * @param {*} [options] Override http request option.
16235
17990
  * @throws {RequiredError}
16236
- * @memberof DoctorsApi
16237
17991
  */
16238
- apiV1DoctorsDoctorIdPortfoliosPortfolioIdDelete(doctorId: string, portfolioId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
17992
+ apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
16239
17993
  /**
16240
17994
  *
16241
- * @summary Get DoctorPortfolio.
16242
- * @param {string} doctorId
16243
- * @param {string} portfolioId
17995
+ * @summary Create a faq.
17996
+ * @param {CreateFaqCommand} [createFaqCommand]
16244
17997
  * @param {*} [options] Override http request option.
16245
17998
  * @throws {RequiredError}
16246
- * @memberof DoctorsApi
16247
17999
  */
16248
- apiV1DoctorsDoctorIdPortfoliosPortfolioIdGet(doctorId: string, portfolioId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfolioModel>>;
18000
+ apiV1FaqsPost(createFaqCommand?: CreateFaqCommand | undefined, options?: any): AxiosPromise<FaqModel>;
16249
18001
  /**
16250
18002
  *
16251
- * @summary Update DoctorPortfolio.
16252
- * @param {string} doctorId
16253
- * @param {string} portfolioId
16254
- * @param {UpdateDoctorPortfolioCommand} [updateDoctorPortfolioCommand]
18003
+ * @summary Get faq by slug.
18004
+ * @param {string} slug
18005
+ * @param {string} [languageCode]
16255
18006
  * @param {*} [options] Override http request option.
16256
18007
  * @throws {RequiredError}
16257
- * @memberof DoctorsApi
16258
18008
  */
16259
- apiV1DoctorsDoctorIdPortfoliosPortfolioIdPut(doctorId: string, portfolioId: string, updateDoctorPortfolioCommand?: UpdateDoctorPortfolioCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfolioModel>>;
18009
+ apiV1FaqsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqModel>;
18010
+ };
18011
+ /**
18012
+ * FaqsApi - object-oriented interface
18013
+ * @export
18014
+ * @class FaqsApi
18015
+ * @extends {BaseAPI}
18016
+ */
18017
+ export declare class FaqsApi extends BaseAPI {
16260
18018
  /**
16261
18019
  *
16262
- * @summary Create DoctorPortfolio.
16263
- * @param {string} doctorId
16264
- * @param {CreateDoctorPortfolioCommand} [createDoctorPortfolioCommand]
18020
+ * @summary Delete faq.
18021
+ * @param {string} faqId
16265
18022
  * @param {*} [options] Override http request option.
16266
18023
  * @throws {RequiredError}
16267
- * @memberof DoctorsApi
18024
+ * @memberof FaqsApi
16268
18025
  */
16269
- apiV1DoctorsDoctorIdPortfoliosPost(doctorId: string, createDoctorPortfolioCommand?: CreateDoctorPortfolioCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfolioModel>>;
18026
+ apiV1FaqsFaqIdDelete(faqId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
16270
18027
  /**
16271
18028
  *
16272
- * @summary Update Doctor.
16273
- * @param {string} doctorId
16274
- * @param {UpdateDoctorCommand} [updateDoctorCommand]
18029
+ * @summary Get faq.
18030
+ * @param {string} faqId
18031
+ * @param {string} [languageCode]
16275
18032
  * @param {*} [options] Override http request option.
16276
18033
  * @throws {RequiredError}
16277
- * @memberof DoctorsApi
18034
+ * @memberof FaqsApi
16278
18035
  */
16279
- apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
18036
+ apiV1FaqsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
16280
18037
  /**
16281
18038
  *
16282
- * @summary Get All DoctorSpecialties.
16283
- * @param {string} doctorId
16284
- * @param {string} [doctorName]
16285
- * @param {string} [specialtyId]
16286
- * @param {string} [specialtyName]
18039
+ * @summary Get all FaqMedias.
18040
+ * @param {string} faqId
18041
+ * @param {string} [id]
18042
+ * @param {MediaType} [mediaType]
16287
18043
  * @param {number} [page]
16288
18044
  * @param {number} [limit]
16289
18045
  * @param {Date} [lastRetrieved]
16290
18046
  * @param {*} [options] Override http request option.
16291
18047
  * @throws {RequiredError}
16292
- * @memberof DoctorsApi
18048
+ * @memberof FaqsApi
16293
18049
  */
16294
- apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel>>;
18050
+ apiV1FaqsFaqIdMediasGet(faqId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
16295
18051
  /**
16296
18052
  *
16297
- * @summary Link a doctor to a specialty.
16298
- * @param {string} doctorId
16299
- * @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
18053
+ * @summary Delete FaqMedia
18054
+ * @param {string} faqId
18055
+ * @param {string} mediaId
16300
18056
  * @param {*} [options] Override http request option.
16301
18057
  * @throws {RequiredError}
16302
- * @memberof DoctorsApi
18058
+ * @memberof FaqsApi
16303
18059
  */
16304
- apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
18060
+ apiV1FaqsFaqIdMediasMediaIdDelete(faqId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
16305
18061
  /**
16306
18062
  *
16307
- * @summary Remove link between the doctor and the specialty.
16308
- * @param {string} doctorId
16309
- * @param {string} specialtyId
18063
+ * @summary Get FaqMedia.
18064
+ * @param {string} faqId
18065
+ * @param {string} mediaId
16310
18066
  * @param {*} [options] Override http request option.
16311
18067
  * @throws {RequiredError}
16312
- * @memberof DoctorsApi
18068
+ * @memberof FaqsApi
16313
18069
  */
16314
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdDelete(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
18070
+ apiV1FaqsFaqIdMediasMediaIdGet(faqId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
16315
18071
  /**
16316
18072
  *
16317
- * @summary Get DoctorSpecialty
16318
- * @param {string} doctorId
16319
- * @param {string} specialtyId
18073
+ * @summary Update FaqMedia.
18074
+ * @param {string} faqId
18075
+ * @param {string} mediaId
18076
+ * @param {UpdateMediaCommand} [updateMediaCommand]
16320
18077
  * @param {*} [options] Override http request option.
16321
18078
  * @throws {RequiredError}
16322
- * @memberof DoctorsApi
18079
+ * @memberof FaqsApi
16323
18080
  */
16324
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
18081
+ apiV1FaqsFaqIdMediasMediaIdPut(faqId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
16325
18082
  /**
16326
18083
  *
16327
- * @summary Update DoctorSpecialty.
16328
- * @param {string} doctorId
16329
- * @param {string} specialtyId
16330
- * @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
18084
+ * @summary Create FaqMedia.
18085
+ * @param {string} faqId
18086
+ * @param {CreateMediaCommand} [createMediaCommand]
16331
18087
  * @param {*} [options] Override http request option.
16332
18088
  * @throws {RequiredError}
16333
- * @memberof DoctorsApi
18089
+ * @memberof FaqsApi
16334
18090
  */
16335
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
18091
+ apiV1FaqsFaqIdMediasPost(faqId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
16336
18092
  /**
16337
18093
  *
16338
- * @summary Get all Doctors.
16339
- * @param {string} [hospitalId]
16340
- * @param {string} [languageCode]
18094
+ * @summary Update faq.
18095
+ * @param {string} faqId
18096
+ * @param {UpdateFaqCommand} [updateFaqCommand]
18097
+ * @param {*} [options] Override http request option.
18098
+ * @throws {RequiredError}
18099
+ * @memberof FaqsApi
18100
+ */
18101
+ apiV1FaqsFaqIdPut(faqId: string, updateFaqCommand?: UpdateFaqCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
18102
+ /**
18103
+ *
18104
+ * @summary Get all Faqs.
16341
18105
  * @param {string} [id]
16342
- * @param {string} [fullname]
16343
- * @param {string} [email]
16344
- * @param {Gender} [gender]
16345
- * @param {Date} [dateOfBirth]
16346
- * @param {Date} [created]
16347
- * @param {boolean} [showHidden]
18106
+ * @param {string} [title]
18107
+ * @param {string} [content]
18108
+ * @param {string} [categoryId]
18109
+ * @param {string} [languageCode]
16348
18110
  * @param {number} [page]
16349
18111
  * @param {number} [limit]
16350
18112
  * @param {Date} [lastRetrieved]
16351
18113
  * @param {*} [options] Override http request option.
16352
18114
  * @throws {RequiredError}
16353
- * @memberof DoctorsApi
18115
+ * @memberof FaqsApi
16354
18116
  */
16355
- apiV1DoctorsGet(hospitalId?: string, languageCode?: string, 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>>;
18117
+ apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel>>;
16356
18118
  /**
16357
18119
  *
16358
- * @summary Create a Doctor.
16359
- * @param {CreateDoctorCommand} [createDoctorCommand]
18120
+ * @summary Create a faq.
18121
+ * @param {CreateFaqCommand} [createFaqCommand]
16360
18122
  * @param {*} [options] Override http request option.
16361
18123
  * @throws {RequiredError}
16362
- * @memberof DoctorsApi
18124
+ * @memberof FaqsApi
16363
18125
  */
16364
- apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
18126
+ apiV1FaqsPost(createFaqCommand?: CreateFaqCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
16365
18127
  /**
16366
18128
  *
16367
- * @summary Get Doctor by slug.
18129
+ * @summary Get faq by slug.
16368
18130
  * @param {string} slug
16369
18131
  * @param {string} [languageCode]
16370
18132
  * @param {*} [options] Override http request option.
16371
18133
  * @throws {RequiredError}
16372
- * @memberof DoctorsApi
18134
+ * @memberof FaqsApi
16373
18135
  */
16374
- apiV1DoctorsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
18136
+ apiV1FaqsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
16375
18137
  }
16376
18138
  /**
16377
18139
  * HospitalsApi - axios parameter creator