ch-api-client-typescript2 3.3.3 → 3.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/api.ts CHANGED
@@ -3824,6 +3824,12 @@ export interface DealsSimpleModel {
3824
3824
  * @interface DoctorAffiliationItemModel
3825
3825
  */
3826
3826
  export interface DoctorAffiliationItemModel {
3827
+ /**
3828
+ *
3829
+ * @type {string}
3830
+ * @memberof DoctorAffiliationItemModel
3831
+ */
3832
+ 'languageCode'?: string | null;
3827
3833
  /**
3828
3834
  *
3829
3835
  * @type {string}
@@ -3842,6 +3848,12 @@ export interface DoctorAffiliationItemModel {
3842
3848
  * @memberof DoctorAffiliationItemModel
3843
3849
  */
3844
3850
  'hospitalSlug'?: string | null;
3851
+ /**
3852
+ *
3853
+ * @type {number}
3854
+ * @memberof DoctorAffiliationItemModel
3855
+ */
3856
+ 'order'?: number;
3845
3857
  }
3846
3858
  /**
3847
3859
  *
@@ -3849,6 +3861,12 @@ export interface DoctorAffiliationItemModel {
3849
3861
  * @interface DoctorAffiliationModel
3850
3862
  */
3851
3863
  export interface DoctorAffiliationModel {
3864
+ /**
3865
+ *
3866
+ * @type {string}
3867
+ * @memberof DoctorAffiliationModel
3868
+ */
3869
+ 'languageCode'?: string | null;
3852
3870
  /**
3853
3871
  *
3854
3872
  * @type {string}
@@ -3867,6 +3885,12 @@ export interface DoctorAffiliationModel {
3867
3885
  * @memberof DoctorAffiliationModel
3868
3886
  */
3869
3887
  'hospitalSlug'?: string | null;
3888
+ /**
3889
+ *
3890
+ * @type {number}
3891
+ * @memberof DoctorAffiliationModel
3892
+ */
3893
+ 'order'?: number;
3870
3894
  }
3871
3895
  /**
3872
3896
  *
@@ -4138,7 +4162,37 @@ export interface DoctorItemModel {
4138
4162
  * @type {string}
4139
4163
  * @memberof DoctorItemModel
4140
4164
  */
4141
- 'name'?: string | null;
4165
+ 'languageCode'?: string | null;
4166
+ /**
4167
+ *
4168
+ * @type {string}
4169
+ * @memberof DoctorItemModel
4170
+ */
4171
+ 'userName'?: string | null;
4172
+ /**
4173
+ *
4174
+ * @type {string}
4175
+ * @memberof DoctorItemModel
4176
+ */
4177
+ 'firstName'?: string | null;
4178
+ /**
4179
+ *
4180
+ * @type {string}
4181
+ * @memberof DoctorItemModel
4182
+ */
4183
+ 'middleName'?: string | null;
4184
+ /**
4185
+ *
4186
+ * @type {string}
4187
+ * @memberof DoctorItemModel
4188
+ */
4189
+ 'lastName'?: string | null;
4190
+ /**
4191
+ *
4192
+ * @type {string}
4193
+ * @memberof DoctorItemModel
4194
+ */
4195
+ 'fullName'?: string | null;
4142
4196
  /**
4143
4197
  *
4144
4198
  * @type {string}
@@ -4150,19 +4204,43 @@ export interface DoctorItemModel {
4150
4204
  * @type {boolean}
4151
4205
  * @memberof DoctorItemModel
4152
4206
  */
4153
- 'consultationEnabled'?: boolean | null;
4207
+ 'confirmed'?: boolean;
4154
4208
  /**
4155
4209
  *
4156
- * @type {number}
4210
+ * @type {string}
4157
4211
  * @memberof DoctorItemModel
4158
4212
  */
4159
- 'consultationFee'?: number | null;
4213
+ 'userType'?: string | null;
4214
+ /**
4215
+ *
4216
+ * @type {string}
4217
+ * @memberof DoctorItemModel
4218
+ */
4219
+ 'photo'?: string | null;
4220
+ /**
4221
+ *
4222
+ * @type {string}
4223
+ * @memberof DoctorItemModel
4224
+ */
4225
+ 'photoThumbnail'?: string | null;
4226
+ /**
4227
+ *
4228
+ * @type {AuditableEntity}
4229
+ * @memberof DoctorItemModel
4230
+ */
4231
+ 'auditableEntity'?: AuditableEntity;
4160
4232
  /**
4161
4233
  *
4162
4234
  * @type {boolean}
4163
4235
  * @memberof DoctorItemModel
4164
4236
  */
4165
- 'confirmed'?: boolean;
4237
+ 'consultationEnabled'?: boolean | null;
4238
+ /**
4239
+ *
4240
+ * @type {number}
4241
+ * @memberof DoctorItemModel
4242
+ */
4243
+ 'consultationFee'?: number | null;
4166
4244
  /**
4167
4245
  *
4168
4246
  * @type {Array<DoctorSpecialtyItemModel>}
@@ -4257,6 +4335,12 @@ export interface DoctorModel {
4257
4335
  * @memberof DoctorModel
4258
4336
  */
4259
4337
  'id'?: string;
4338
+ /**
4339
+ *
4340
+ * @type {string}
4341
+ * @memberof DoctorModel
4342
+ */
4343
+ 'languageCode'?: string | null;
4260
4344
  /**
4261
4345
  *
4262
4346
  * @type {string}
@@ -4295,16 +4379,16 @@ export interface DoctorModel {
4295
4379
  'slug'?: string | null;
4296
4380
  /**
4297
4381
  *
4298
- * @type {string}
4382
+ * @type {boolean}
4299
4383
  * @memberof DoctorModel
4300
4384
  */
4301
- 'phone'?: string | null;
4385
+ 'confirmed'?: boolean;
4302
4386
  /**
4303
4387
  *
4304
4388
  * @type {string}
4305
4389
  * @memberof DoctorModel
4306
4390
  */
4307
- 'email'?: string | null;
4391
+ 'userType'?: string | null;
4308
4392
  /**
4309
4393
  *
4310
4394
  * @type {string}
@@ -4319,40 +4403,46 @@ export interface DoctorModel {
4319
4403
  'photoThumbnail'?: string | null;
4320
4404
  /**
4321
4405
  *
4322
- * @type {Gender}
4406
+ * @type {AuditableEntity}
4323
4407
  * @memberof DoctorModel
4324
4408
  */
4325
- 'gender'?: Gender;
4409
+ 'auditableEntity'?: AuditableEntity;
4326
4410
  /**
4327
4411
  *
4328
- * @type {Date}
4412
+ * @type {string}
4329
4413
  * @memberof DoctorModel
4330
4414
  */
4331
- 'dateOfBirth'?: Date | null;
4415
+ 'phone'?: string | null;
4332
4416
  /**
4333
4417
  *
4334
4418
  * @type {string}
4335
4419
  * @memberof DoctorModel
4336
4420
  */
4337
- 'timeZone'?: string | null;
4421
+ 'email'?: string | null;
4338
4422
  /**
4339
4423
  *
4340
- * @type {string}
4424
+ * @type {Gender}
4341
4425
  * @memberof DoctorModel
4342
4426
  */
4343
- 'communicationUserId'?: string | null;
4427
+ 'gender'?: Gender;
4344
4428
  /**
4345
4429
  *
4346
- * @type {AuditableEntity}
4430
+ * @type {Date}
4347
4431
  * @memberof DoctorModel
4348
4432
  */
4349
- 'auditableEntity'?: AuditableEntity;
4433
+ 'dateOfBirth'?: Date | null;
4350
4434
  /**
4351
4435
  *
4352
4436
  * @type {string}
4353
4437
  * @memberof DoctorModel
4354
4438
  */
4355
- 'userType'?: string | null;
4439
+ 'timeZone'?: string | null;
4440
+ /**
4441
+ *
4442
+ * @type {string}
4443
+ * @memberof DoctorModel
4444
+ */
4445
+ 'communicationUserId'?: string | null;
4356
4446
  /**
4357
4447
  *
4358
4448
  * @type {Array<UserLanguageModel>}
@@ -4370,31 +4460,25 @@ export interface DoctorModel {
4370
4460
  * @type {string}
4371
4461
  * @memberof DoctorModel
4372
4462
  */
4373
- 'languageCode'?: string | null;
4374
- /**
4375
- *
4376
- * @type {Date}
4377
- * @memberof DoctorModel
4378
- */
4379
- 'startPracticeDate'?: Date | null;
4463
+ 'overview'?: string | null;
4380
4464
  /**
4381
4465
  *
4382
4466
  * @type {string}
4383
4467
  * @memberof DoctorModel
4384
4468
  */
4385
- 'overview'?: string | null;
4469
+ 'description'?: string | null;
4386
4470
  /**
4387
4471
  *
4388
4472
  * @type {string}
4389
4473
  * @memberof DoctorModel
4390
4474
  */
4391
- 'description'?: string | null;
4475
+ 'content'?: string | null;
4392
4476
  /**
4393
4477
  *
4394
- * @type {string}
4478
+ * @type {Date}
4395
4479
  * @memberof DoctorModel
4396
4480
  */
4397
- 'content'?: string | null;
4481
+ 'startPracticeDate'?: Date | null;
4398
4482
  /**
4399
4483
  *
4400
4484
  * @type {boolean}
@@ -4407,12 +4491,6 @@ export interface DoctorModel {
4407
4491
  * @memberof DoctorModel
4408
4492
  */
4409
4493
  'consultationFee'?: number | null;
4410
- /**
4411
- *
4412
- * @type {boolean}
4413
- * @memberof DoctorModel
4414
- */
4415
- 'confirmed'?: boolean;
4416
4494
  /**
4417
4495
  *
4418
4496
  * @type {Array<DoctorSpecialtyItemModel>}
@@ -4421,16 +4499,10 @@ export interface DoctorModel {
4421
4499
  'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
4422
4500
  /**
4423
4501
  *
4424
- * @type {Array<DoctorAffiliationModel>}
4425
- * @memberof DoctorModel
4426
- */
4427
- 'doctorAffiliations'?: Array<DoctorAffiliationModel> | null;
4428
- /**
4429
- *
4430
- * @type {Array<UserTranslationModel>}
4502
+ * @type {Array<DoctorAffiliationItemModel>}
4431
4503
  * @memberof DoctorModel
4432
4504
  */
4433
- 'translations'?: Array<UserTranslationModel> | null;
4505
+ 'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
4434
4506
  /**
4435
4507
  *
4436
4508
  * @type {Array<LocalizedUrlModel>}
@@ -4572,37 +4644,37 @@ export interface DoctorSimpleItemModel {
4572
4644
  * @type {string}
4573
4645
  * @memberof DoctorSimpleItemModel
4574
4646
  */
4575
- 'firstName'?: string | null;
4647
+ 'languageCode'?: string | null;
4576
4648
  /**
4577
4649
  *
4578
4650
  * @type {string}
4579
4651
  * @memberof DoctorSimpleItemModel
4580
4652
  */
4581
- 'middleName'?: string | null;
4653
+ 'firstName'?: string | null;
4582
4654
  /**
4583
4655
  *
4584
4656
  * @type {string}
4585
4657
  * @memberof DoctorSimpleItemModel
4586
4658
  */
4587
- 'lastName'?: string | null;
4659
+ 'middleName'?: string | null;
4588
4660
  /**
4589
4661
  *
4590
4662
  * @type {string}
4591
4663
  * @memberof DoctorSimpleItemModel
4592
4664
  */
4593
- 'fullname'?: string | null;
4665
+ 'lastName'?: string | null;
4594
4666
  /**
4595
4667
  *
4596
4668
  * @type {string}
4597
4669
  * @memberof DoctorSimpleItemModel
4598
4670
  */
4599
- 'slug'?: string | null;
4671
+ 'fullName'?: string | null;
4600
4672
  /**
4601
4673
  *
4602
4674
  * @type {string}
4603
4675
  * @memberof DoctorSimpleItemModel
4604
4676
  */
4605
- 'hospitalId'?: string | null;
4677
+ 'slug'?: string | null;
4606
4678
  }
4607
4679
  /**
4608
4680
  *
@@ -4612,10 +4684,10 @@ export interface DoctorSimpleItemModel {
4612
4684
  export interface DoctorSpecialtiesModel {
4613
4685
  /**
4614
4686
  *
4615
- * @type {Array<DoctorSpecialtyModel>}
4687
+ * @type {Array<DoctorSpecialtyItemModel>}
4616
4688
  * @memberof DoctorSpecialtiesModel
4617
4689
  */
4618
- 'items'?: Array<DoctorSpecialtyModel> | null;
4690
+ 'items'?: Array<DoctorSpecialtyItemModel> | null;
4619
4691
  /**
4620
4692
  *
4621
4693
  * @type {PagedListMetaData}
@@ -4629,6 +4701,12 @@ export interface DoctorSpecialtiesModel {
4629
4701
  * @interface DoctorSpecialtyItemModel
4630
4702
  */
4631
4703
  export interface DoctorSpecialtyItemModel {
4704
+ /**
4705
+ *
4706
+ * @type {string}
4707
+ * @memberof DoctorSpecialtyItemModel
4708
+ */
4709
+ 'languageCode'?: string | null;
4632
4710
  /**
4633
4711
  *
4634
4712
  * @type {string}
@@ -4660,6 +4738,12 @@ export interface DoctorSpecialtyItemModel {
4660
4738
  * @interface DoctorSpecialtyModel
4661
4739
  */
4662
4740
  export interface DoctorSpecialtyModel {
4741
+ /**
4742
+ *
4743
+ * @type {string}
4744
+ * @memberof DoctorSpecialtyModel
4745
+ */
4746
+ 'languageCode'?: string | null;
4663
4747
  /**
4664
4748
  *
4665
4749
  * @type {string}
@@ -4684,6 +4768,18 @@ export interface DoctorSpecialtyModel {
4684
4768
  * @memberof DoctorSpecialtyModel
4685
4769
  */
4686
4770
  'order'?: number;
4771
+ /**
4772
+ *
4773
+ * @type {string}
4774
+ * @memberof DoctorSpecialtyModel
4775
+ */
4776
+ 'specialtyTypeName'?: string | null;
4777
+ /**
4778
+ *
4779
+ * @type {string}
4780
+ * @memberof DoctorSpecialtyModel
4781
+ */
4782
+ 'specialtyTyeSlug'?: string | null;
4687
4783
  }
4688
4784
  /**
4689
4785
  *
@@ -5499,19 +5595,19 @@ export interface HospitalItemModel {
5499
5595
  * @type {string}
5500
5596
  * @memberof HospitalItemModel
5501
5597
  */
5502
- 'name'?: string | null;
5598
+ 'languageCode'?: string | null;
5503
5599
  /**
5504
5600
  *
5505
5601
  * @type {string}
5506
5602
  * @memberof HospitalItemModel
5507
5603
  */
5508
- 'slug'?: string | null;
5604
+ 'name'?: string | null;
5509
5605
  /**
5510
5606
  *
5511
5607
  * @type {string}
5512
5608
  * @memberof HospitalItemModel
5513
5609
  */
5514
- 'logo'?: string | null;
5610
+ 'slug'?: string | null;
5515
5611
  /**
5516
5612
  *
5517
5613
  * @type {boolean}
@@ -5523,19 +5619,7 @@ export interface HospitalItemModel {
5523
5619
  * @type {string}
5524
5620
  * @memberof HospitalItemModel
5525
5621
  */
5526
- 'countryId'?: string;
5527
- /**
5528
- *
5529
- * @type {string}
5530
- * @memberof HospitalItemModel
5531
- */
5532
- 'countryName'?: string | null;
5533
- /**
5534
- *
5535
- * @type {string}
5536
- * @memberof HospitalItemModel
5537
- */
5538
- 'countrySlug'?: string | null;
5622
+ 'logo'?: string | null;
5539
5623
  /**
5540
5624
  *
5541
5625
  * @type {MarketingType}
@@ -5572,6 +5656,12 @@ export interface HospitalItemModel {
5572
5656
  * @memberof HospitalItemModel
5573
5657
  */
5574
5658
  'paymentEnabled'?: boolean;
5659
+ /**
5660
+ *
5661
+ * @type {string}
5662
+ * @memberof HospitalItemModel
5663
+ */
5664
+ 'countryId'?: string;
5575
5665
  /**
5576
5666
  *
5577
5667
  * @type {string}
@@ -5614,19 +5704,19 @@ export interface HospitalModel {
5614
5704
  * @type {string}
5615
5705
  * @memberof HospitalModel
5616
5706
  */
5617
- 'name'?: string | null;
5707
+ 'languageCode'?: string | null;
5618
5708
  /**
5619
5709
  *
5620
5710
  * @type {string}
5621
5711
  * @memberof HospitalModel
5622
5712
  */
5623
- 'slug'?: string | null;
5713
+ 'name'?: string | null;
5624
5714
  /**
5625
5715
  *
5626
5716
  * @type {string}
5627
5717
  * @memberof HospitalModel
5628
5718
  */
5629
- 'logo'?: string | null;
5719
+ 'slug'?: string | null;
5630
5720
  /**
5631
5721
  *
5632
5722
  * @type {boolean}
@@ -5638,19 +5728,7 @@ export interface HospitalModel {
5638
5728
  * @type {string}
5639
5729
  * @memberof HospitalModel
5640
5730
  */
5641
- 'countryId'?: string;
5642
- /**
5643
- *
5644
- * @type {string}
5645
- * @memberof HospitalModel
5646
- */
5647
- 'countryName'?: string | null;
5648
- /**
5649
- *
5650
- * @type {string}
5651
- * @memberof HospitalModel
5652
- */
5653
- 'countrySlug'?: string | null;
5731
+ 'logo'?: string | null;
5654
5732
  /**
5655
5733
  *
5656
5734
  * @type {MarketingType}
@@ -5687,6 +5765,12 @@ export interface HospitalModel {
5687
5765
  * @memberof HospitalModel
5688
5766
  */
5689
5767
  'paymentEnabled'?: boolean;
5768
+ /**
5769
+ *
5770
+ * @type {string}
5771
+ * @memberof HospitalModel
5772
+ */
5773
+ 'countryId'?: string;
5690
5774
  /**
5691
5775
  *
5692
5776
  * @type {string}
@@ -5716,25 +5800,25 @@ export interface HospitalModel {
5716
5800
  * @type {string}
5717
5801
  * @memberof HospitalModel
5718
5802
  */
5719
- 'languageCode'?: string | null;
5803
+ 'description'?: string | null;
5720
5804
  /**
5721
5805
  *
5722
5806
  * @type {string}
5723
5807
  * @memberof HospitalModel
5724
5808
  */
5725
- 'description'?: string | null;
5809
+ 'overview'?: string | null;
5726
5810
  /**
5727
5811
  *
5728
5812
  * @type {string}
5729
5813
  * @memberof HospitalModel
5730
5814
  */
5731
- 'overview'?: string | null;
5815
+ 'content'?: string | null;
5732
5816
  /**
5733
5817
  *
5734
- * @type {string}
5818
+ * @type {Array<LocalizedUrlModel>}
5735
5819
  * @memberof HospitalModel
5736
5820
  */
5737
- 'content'?: string | null;
5821
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5738
5822
  /**
5739
5823
  *
5740
5824
  * @type {number}
@@ -5801,12 +5885,6 @@ export interface HospitalModel {
5801
5885
  * @memberof HospitalModel
5802
5886
  */
5803
5887
  'hospitalSnsHandles'?: Array<SnsHandle> | null;
5804
- /**
5805
- *
5806
- * @type {Array<LocalizedUrlModel>}
5807
- * @memberof HospitalModel
5808
- */
5809
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5810
5888
  /**
5811
5889
  *
5812
5890
  * @type {Array<AwardModel>}
@@ -6195,6 +6273,12 @@ export interface HospitalSimpleItemModel {
6195
6273
  * @memberof HospitalSimpleItemModel
6196
6274
  */
6197
6275
  'id'?: string;
6276
+ /**
6277
+ *
6278
+ * @type {string}
6279
+ * @memberof HospitalSimpleItemModel
6280
+ */
6281
+ 'languageCode'?: string | null;
6198
6282
  /**
6199
6283
  *
6200
6284
  * @type {string}
@@ -6288,25 +6372,25 @@ export interface HospitalSpecialtyItemModel {
6288
6372
  * @type {string}
6289
6373
  * @memberof HospitalSpecialtyItemModel
6290
6374
  */
6291
- 'name'?: string | null;
6375
+ 'languageCode'?: string | null;
6292
6376
  /**
6293
6377
  *
6294
6378
  * @type {string}
6295
6379
  * @memberof HospitalSpecialtyItemModel
6296
6380
  */
6297
- 'slug'?: string | null;
6381
+ 'name'?: string | null;
6298
6382
  /**
6299
6383
  *
6300
6384
  * @type {string}
6301
6385
  * @memberof HospitalSpecialtyItemModel
6302
6386
  */
6303
- 'description'?: string | null;
6387
+ 'slug'?: string | null;
6304
6388
  /**
6305
6389
  *
6306
- * @type {MarketingType}
6390
+ * @type {number}
6307
6391
  * @memberof HospitalSpecialtyItemModel
6308
6392
  */
6309
- 'marketingType'?: MarketingType;
6393
+ 'order'?: number;
6310
6394
  /**
6311
6395
  *
6312
6396
  * @type {string}
@@ -6336,13 +6420,13 @@ export interface HospitalSpecialtyItemModel {
6336
6420
  * @type {number}
6337
6421
  * @memberof HospitalSpecialtyItemModel
6338
6422
  */
6339
- 'order'?: number;
6423
+ 'servicesCount'?: number;
6340
6424
  /**
6341
6425
  *
6342
- * @type {boolean}
6426
+ * @type {string}
6343
6427
  * @memberof HospitalSpecialtyItemModel
6344
6428
  */
6345
- 'confirmed'?: boolean;
6429
+ 'specialtyId'?: string;
6346
6430
  }
6347
6431
  /**
6348
6432
  *
@@ -6361,25 +6445,25 @@ export interface HospitalSpecialtyModel {
6361
6445
  * @type {string}
6362
6446
  * @memberof HospitalSpecialtyModel
6363
6447
  */
6364
- 'name'?: string | null;
6448
+ 'languageCode'?: string | null;
6365
6449
  /**
6366
6450
  *
6367
6451
  * @type {string}
6368
6452
  * @memberof HospitalSpecialtyModel
6369
6453
  */
6370
- 'slug'?: string | null;
6454
+ 'name'?: string | null;
6371
6455
  /**
6372
6456
  *
6373
6457
  * @type {string}
6374
6458
  * @memberof HospitalSpecialtyModel
6375
6459
  */
6376
- 'description'?: string | null;
6460
+ 'slug'?: string | null;
6377
6461
  /**
6378
6462
  *
6379
- * @type {MarketingType}
6463
+ * @type {number}
6380
6464
  * @memberof HospitalSpecialtyModel
6381
6465
  */
6382
- 'marketingType'?: MarketingType;
6466
+ 'order'?: number;
6383
6467
  /**
6384
6468
  *
6385
6469
  * @type {string}
@@ -6409,55 +6493,55 @@ export interface HospitalSpecialtyModel {
6409
6493
  * @type {number}
6410
6494
  * @memberof HospitalSpecialtyModel
6411
6495
  */
6412
- 'order'?: number;
6496
+ 'servicesCount'?: number;
6413
6497
  /**
6414
6498
  *
6415
- * @type {boolean}
6499
+ * @type {string}
6416
6500
  * @memberof HospitalSpecialtyModel
6417
6501
  */
6418
- 'confirmed'?: boolean;
6502
+ 'specialtyId'?: string;
6419
6503
  /**
6420
6504
  *
6421
6505
  * @type {string}
6422
6506
  * @memberof HospitalSpecialtyModel
6423
6507
  */
6424
- 'hospitalId'?: string;
6508
+ 'description'?: string | null;
6425
6509
  /**
6426
6510
  *
6427
6511
  * @type {string}
6428
6512
  * @memberof HospitalSpecialtyModel
6429
6513
  */
6430
- 'hospitalName'?: string | null;
6514
+ 'content'?: string | null;
6431
6515
  /**
6432
6516
  *
6433
- * @type {string}
6517
+ * @type {boolean}
6434
6518
  * @memberof HospitalSpecialtyModel
6435
6519
  */
6436
- 'hospitalSlug'?: string | null;
6520
+ 'confirmed'?: boolean;
6437
6521
  /**
6438
6522
  *
6439
6523
  * @type {string}
6440
6524
  * @memberof HospitalSpecialtyModel
6441
6525
  */
6442
- 'content'?: string | null;
6526
+ 'customStyle'?: string | null;
6443
6527
  /**
6444
6528
  *
6445
6529
  * @type {string}
6446
6530
  * @memberof HospitalSpecialtyModel
6447
6531
  */
6448
- 'customStyle'?: string | null;
6532
+ 'hospitalId'?: string;
6449
6533
  /**
6450
6534
  *
6451
6535
  * @type {string}
6452
6536
  * @memberof HospitalSpecialtyModel
6453
6537
  */
6454
- 'languageCode'?: string | null;
6538
+ 'hospitalName'?: string | null;
6455
6539
  /**
6456
6540
  *
6457
6541
  * @type {string}
6458
6542
  * @memberof HospitalSpecialtyModel
6459
6543
  */
6460
- 'specialtyId'?: string;
6544
+ 'hospitalSlug'?: string | null;
6461
6545
  /**
6462
6546
  *
6463
6547
  * @type {string}
@@ -6478,16 +6562,10 @@ export interface HospitalSpecialtyModel {
6478
6562
  'specialtyTypeName'?: string | null;
6479
6563
  /**
6480
6564
  *
6481
- * @type {number}
6482
- * @memberof HospitalSpecialtyModel
6483
- */
6484
- 'serviceCount'?: number;
6485
- /**
6486
- *
6487
- * @type {Array<HospitalServiceItemModel>}
6565
+ * @type {MarketingType}
6488
6566
  * @memberof HospitalSpecialtyModel
6489
6567
  */
6490
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
6568
+ 'marketingType'?: MarketingType;
6491
6569
  /**
6492
6570
  *
6493
6571
  * @type {Array<LocalizedUrlModel>}
@@ -6518,37 +6596,25 @@ export interface HospitalSpecialtySimpleItemModel {
6518
6596
  * @type {string}
6519
6597
  * @memberof HospitalSpecialtySimpleItemModel
6520
6598
  */
6521
- 'name'?: string | null;
6522
- /**
6523
- *
6524
- * @type {string}
6525
- * @memberof HospitalSpecialtySimpleItemModel
6526
- */
6527
- 'slug'?: string | null;
6599
+ 'languageCode'?: string | null;
6528
6600
  /**
6529
6601
  *
6530
6602
  * @type {string}
6531
6603
  * @memberof HospitalSpecialtySimpleItemModel
6532
6604
  */
6533
- 'description'?: string | null;
6605
+ 'name'?: string | null;
6534
6606
  /**
6535
6607
  *
6536
6608
  * @type {string}
6537
6609
  * @memberof HospitalSpecialtySimpleItemModel
6538
6610
  */
6539
- 'specialtyName'?: string | null;
6611
+ 'slug'?: string | null;
6540
6612
  /**
6541
6613
  *
6542
6614
  * @type {number}
6543
6615
  * @memberof HospitalSpecialtySimpleItemModel
6544
6616
  */
6545
6617
  'order'?: number;
6546
- /**
6547
- *
6548
- * @type {boolean}
6549
- * @memberof HospitalSpecialtySimpleItemModel
6550
- */
6551
- 'confirmed'?: boolean;
6552
6618
  }
6553
6619
  /**
6554
6620
  *
@@ -7297,6 +7363,12 @@ export interface PatientModel {
7297
7363
  * @memberof PatientModel
7298
7364
  */
7299
7365
  'id'?: string;
7366
+ /**
7367
+ *
7368
+ * @type {string}
7369
+ * @memberof PatientModel
7370
+ */
7371
+ 'languageCode'?: string | null;
7300
7372
  /**
7301
7373
  *
7302
7374
  * @type {string}
@@ -7335,16 +7407,16 @@ export interface PatientModel {
7335
7407
  'slug'?: string | null;
7336
7408
  /**
7337
7409
  *
7338
- * @type {string}
7410
+ * @type {boolean}
7339
7411
  * @memberof PatientModel
7340
7412
  */
7341
- 'phone'?: string | null;
7413
+ 'confirmed'?: boolean;
7342
7414
  /**
7343
7415
  *
7344
7416
  * @type {string}
7345
7417
  * @memberof PatientModel
7346
7418
  */
7347
- 'email'?: string | null;
7419
+ 'userType'?: string | null;
7348
7420
  /**
7349
7421
  *
7350
7422
  * @type {string}
@@ -7359,40 +7431,46 @@ export interface PatientModel {
7359
7431
  'photoThumbnail'?: string | null;
7360
7432
  /**
7361
7433
  *
7362
- * @type {Gender}
7434
+ * @type {AuditableEntity}
7363
7435
  * @memberof PatientModel
7364
7436
  */
7365
- 'gender'?: Gender;
7437
+ 'auditableEntity'?: AuditableEntity;
7366
7438
  /**
7367
7439
  *
7368
- * @type {Date}
7440
+ * @type {string}
7369
7441
  * @memberof PatientModel
7370
7442
  */
7371
- 'dateOfBirth'?: Date | null;
7443
+ 'phone'?: string | null;
7372
7444
  /**
7373
7445
  *
7374
7446
  * @type {string}
7375
7447
  * @memberof PatientModel
7376
7448
  */
7377
- 'timeZone'?: string | null;
7449
+ 'email'?: string | null;
7378
7450
  /**
7379
7451
  *
7380
- * @type {string}
7452
+ * @type {Gender}
7381
7453
  * @memberof PatientModel
7382
7454
  */
7383
- 'communicationUserId'?: string | null;
7455
+ 'gender'?: Gender;
7384
7456
  /**
7385
7457
  *
7386
- * @type {AuditableEntity}
7458
+ * @type {Date}
7387
7459
  * @memberof PatientModel
7388
7460
  */
7389
- 'auditableEntity'?: AuditableEntity;
7461
+ 'dateOfBirth'?: Date | null;
7390
7462
  /**
7391
7463
  *
7392
7464
  * @type {string}
7393
7465
  * @memberof PatientModel
7394
7466
  */
7395
- 'userType'?: string | null;
7467
+ 'timeZone'?: string | null;
7468
+ /**
7469
+ *
7470
+ * @type {string}
7471
+ * @memberof PatientModel
7472
+ */
7473
+ 'communicationUserId'?: string | null;
7396
7474
  /**
7397
7475
  *
7398
7476
  * @type {Array<UserLanguageModel>}
@@ -8434,37 +8512,37 @@ export interface SpecialtyItemModel {
8434
8512
  * @type {string}
8435
8513
  * @memberof SpecialtyItemModel
8436
8514
  */
8437
- 'name'?: string | null;
8515
+ 'languageCode'?: string | null;
8438
8516
  /**
8439
8517
  *
8440
8518
  * @type {string}
8441
8519
  * @memberof SpecialtyItemModel
8442
8520
  */
8443
- 'slug'?: string | null;
8521
+ 'name'?: string | null;
8444
8522
  /**
8445
8523
  *
8446
8524
  * @type {string}
8447
8525
  * @memberof SpecialtyItemModel
8448
8526
  */
8449
- 'description'?: string | null;
8527
+ 'slug'?: string | null;
8450
8528
  /**
8451
8529
  *
8452
- * @type {number}
8530
+ * @type {boolean}
8453
8531
  * @memberof SpecialtyItemModel
8454
8532
  */
8455
- 'hospitalSpecialtyCount'?: number;
8533
+ 'confirmed'?: boolean;
8456
8534
  /**
8457
8535
  *
8458
- * @type {number}
8536
+ * @type {string}
8459
8537
  * @memberof SpecialtyItemModel
8460
8538
  */
8461
- 'serviceCount'?: number;
8539
+ 'specialtyTypeId'?: string;
8462
8540
  /**
8463
8541
  *
8464
8542
  * @type {string}
8465
8543
  * @memberof SpecialtyItemModel
8466
8544
  */
8467
- 'specialtyTypeId'?: string;
8545
+ 'description'?: string | null;
8468
8546
  /**
8469
8547
  *
8470
8548
  * @type {string}
@@ -8473,28 +8551,16 @@ export interface SpecialtyItemModel {
8473
8551
  'specialtyTypeName'?: string | null;
8474
8552
  /**
8475
8553
  *
8476
- * @type {boolean}
8554
+ * @type {Array<MediaModel>}
8477
8555
  * @memberof SpecialtyItemModel
8478
8556
  */
8479
- 'confirmed'?: boolean;
8557
+ 'medias'?: Array<MediaModel> | null;
8480
8558
  /**
8481
8559
  *
8482
8560
  * @type {AuditableEntity}
8483
8561
  * @memberof SpecialtyItemModel
8484
8562
  */
8485
8563
  'auditableEntity'?: AuditableEntity;
8486
- /**
8487
- *
8488
- * @type {boolean}
8489
- * @memberof SpecialtyItemModel
8490
- */
8491
- 'returnDefaultValue'?: boolean | null;
8492
- /**
8493
- *
8494
- * @type {Array<MediaModel>}
8495
- * @memberof SpecialtyItemModel
8496
- */
8497
- 'medias'?: Array<MediaModel> | null;
8498
8564
  }
8499
8565
  /**
8500
8566
  *
@@ -8513,25 +8579,31 @@ export interface SpecialtyItemSimpleModel {
8513
8579
  * @type {string}
8514
8580
  * @memberof SpecialtyItemSimpleModel
8515
8581
  */
8516
- 'name'?: string | null;
8582
+ 'languageCode'?: string | null;
8517
8583
  /**
8518
8584
  *
8519
8585
  * @type {string}
8520
8586
  * @memberof SpecialtyItemSimpleModel
8521
8587
  */
8522
- 'slug'?: string | null;
8588
+ 'name'?: string | null;
8523
8589
  /**
8524
8590
  *
8525
8591
  * @type {string}
8526
8592
  * @memberof SpecialtyItemSimpleModel
8527
8593
  */
8528
- 'specialtyTypeId'?: string;
8594
+ 'slug'?: string | null;
8529
8595
  /**
8530
8596
  *
8531
8597
  * @type {boolean}
8532
8598
  * @memberof SpecialtyItemSimpleModel
8533
8599
  */
8534
8600
  'confirmed'?: boolean;
8601
+ /**
8602
+ *
8603
+ * @type {string}
8604
+ * @memberof SpecialtyItemSimpleModel
8605
+ */
8606
+ 'specialtyTypeId'?: string;
8535
8607
  }
8536
8608
  /**
8537
8609
  *
@@ -8550,31 +8622,25 @@ export interface SpecialtyModel {
8550
8622
  * @type {string}
8551
8623
  * @memberof SpecialtyModel
8552
8624
  */
8553
- 'name'?: string | null;
8625
+ 'languageCode'?: string | null;
8554
8626
  /**
8555
8627
  *
8556
8628
  * @type {string}
8557
8629
  * @memberof SpecialtyModel
8558
8630
  */
8559
- 'slug'?: string | null;
8631
+ 'name'?: string | null;
8560
8632
  /**
8561
8633
  *
8562
8634
  * @type {string}
8563
8635
  * @memberof SpecialtyModel
8564
8636
  */
8565
- 'description'?: string | null;
8566
- /**
8567
- *
8568
- * @type {number}
8569
- * @memberof SpecialtyModel
8570
- */
8571
- 'hospitalSpecialtyCount'?: number;
8637
+ 'slug'?: string | null;
8572
8638
  /**
8573
8639
  *
8574
- * @type {number}
8640
+ * @type {boolean}
8575
8641
  * @memberof SpecialtyModel
8576
8642
  */
8577
- 'serviceCount'?: number;
8643
+ 'confirmed'?: boolean;
8578
8644
  /**
8579
8645
  *
8580
8646
  * @type {string}
@@ -8586,25 +8652,13 @@ export interface SpecialtyModel {
8586
8652
  * @type {string}
8587
8653
  * @memberof SpecialtyModel
8588
8654
  */
8589
- 'specialtyTypeName'?: string | null;
8590
- /**
8591
- *
8592
- * @type {boolean}
8593
- * @memberof SpecialtyModel
8594
- */
8595
- 'confirmed'?: boolean;
8596
- /**
8597
- *
8598
- * @type {AuditableEntity}
8599
- * @memberof SpecialtyModel
8600
- */
8601
- 'auditableEntity'?: AuditableEntity;
8655
+ 'description'?: string | null;
8602
8656
  /**
8603
8657
  *
8604
- * @type {boolean}
8658
+ * @type {string}
8605
8659
  * @memberof SpecialtyModel
8606
8660
  */
8607
- 'returnDefaultValue'?: boolean | null;
8661
+ 'specialtyTypeName'?: string | null;
8608
8662
  /**
8609
8663
  *
8610
8664
  * @type {Array<MediaModel>}
@@ -8613,10 +8667,10 @@ export interface SpecialtyModel {
8613
8667
  'medias'?: Array<MediaModel> | null;
8614
8668
  /**
8615
8669
  *
8616
- * @type {string}
8670
+ * @type {AuditableEntity}
8617
8671
  * @memberof SpecialtyModel
8618
8672
  */
8619
- 'languageCode'?: string | null;
8673
+ 'auditableEntity'?: AuditableEntity;
8620
8674
  /**
8621
8675
  *
8622
8676
  * @type {string}
@@ -8647,55 +8701,43 @@ export interface SpecialtyTypeItemModel {
8647
8701
  * @type {string}
8648
8702
  * @memberof SpecialtyTypeItemModel
8649
8703
  */
8650
- 'name'?: string | null;
8704
+ 'languageCode'?: string | null;
8651
8705
  /**
8652
8706
  *
8653
8707
  * @type {string}
8654
8708
  * @memberof SpecialtyTypeItemModel
8655
8709
  */
8656
- 'slug'?: string | null;
8710
+ 'name'?: string | null;
8657
8711
  /**
8658
8712
  *
8659
8713
  * @type {string}
8660
8714
  * @memberof SpecialtyTypeItemModel
8661
8715
  */
8662
- 'description'?: string | null;
8716
+ 'slug'?: string | null;
8663
8717
  /**
8664
8718
  *
8665
- * @type {MarketingType}
8719
+ * @type {boolean}
8666
8720
  * @memberof SpecialtyTypeItemModel
8667
8721
  */
8668
- 'marketingType'?: MarketingType;
8722
+ 'confirmed'?: boolean;
8669
8723
  /**
8670
8724
  *
8671
- * @type {number}
8725
+ * @type {string}
8672
8726
  * @memberof SpecialtyTypeItemModel
8673
8727
  */
8674
- 'specialtyCount'?: number;
8728
+ 'description'?: string | null;
8675
8729
  /**
8676
8730
  *
8677
- * @type {number}
8731
+ * @type {MarketingType}
8678
8732
  * @memberof SpecialtyTypeItemModel
8679
8733
  */
8680
- 'hospitalSpecialtyCount'?: number;
8734
+ 'marketingType'?: MarketingType;
8681
8735
  /**
8682
8736
  *
8683
8737
  * @type {number}
8684
8738
  * @memberof SpecialtyTypeItemModel
8685
8739
  */
8686
- 'serviceCount'?: number;
8687
- /**
8688
- *
8689
- * @type {Date}
8690
- * @memberof SpecialtyTypeItemModel
8691
- */
8692
- 'created'?: Date;
8693
- /**
8694
- *
8695
- * @type {boolean}
8696
- * @memberof SpecialtyTypeItemModel
8697
- */
8698
- 'confirmed'?: boolean;
8740
+ 'specialtiesCount'?: number;
8699
8741
  /**
8700
8742
  *
8701
8743
  * @type {Array<MediaModel>}
@@ -8726,55 +8768,43 @@ export interface SpecialtyTypeModel {
8726
8768
  * @type {string}
8727
8769
  * @memberof SpecialtyTypeModel
8728
8770
  */
8729
- 'name'?: string | null;
8771
+ 'languageCode'?: string | null;
8730
8772
  /**
8731
8773
  *
8732
8774
  * @type {string}
8733
8775
  * @memberof SpecialtyTypeModel
8734
8776
  */
8735
- 'slug'?: string | null;
8777
+ 'name'?: string | null;
8736
8778
  /**
8737
8779
  *
8738
8780
  * @type {string}
8739
8781
  * @memberof SpecialtyTypeModel
8740
8782
  */
8741
- 'description'?: string | null;
8783
+ 'slug'?: string | null;
8742
8784
  /**
8743
8785
  *
8744
- * @type {MarketingType}
8786
+ * @type {boolean}
8745
8787
  * @memberof SpecialtyTypeModel
8746
8788
  */
8747
- 'marketingType'?: MarketingType;
8789
+ 'confirmed'?: boolean;
8748
8790
  /**
8749
8791
  *
8750
- * @type {number}
8792
+ * @type {string}
8751
8793
  * @memberof SpecialtyTypeModel
8752
8794
  */
8753
- 'specialtyCount'?: number;
8795
+ 'description'?: string | null;
8754
8796
  /**
8755
8797
  *
8756
- * @type {number}
8798
+ * @type {MarketingType}
8757
8799
  * @memberof SpecialtyTypeModel
8758
8800
  */
8759
- 'hospitalSpecialtyCount'?: number;
8801
+ 'marketingType'?: MarketingType;
8760
8802
  /**
8761
8803
  *
8762
8804
  * @type {number}
8763
8805
  * @memberof SpecialtyTypeModel
8764
8806
  */
8765
- 'serviceCount'?: number;
8766
- /**
8767
- *
8768
- * @type {Date}
8769
- * @memberof SpecialtyTypeModel
8770
- */
8771
- 'created'?: Date;
8772
- /**
8773
- *
8774
- * @type {boolean}
8775
- * @memberof SpecialtyTypeModel
8776
- */
8777
- 'confirmed'?: boolean;
8807
+ 'specialtiesCount'?: number;
8778
8808
  /**
8779
8809
  *
8780
8810
  * @type {Array<MediaModel>}
@@ -8787,12 +8817,6 @@ export interface SpecialtyTypeModel {
8787
8817
  * @memberof SpecialtyTypeModel
8788
8818
  */
8789
8819
  'auditableEntity'?: AuditableEntity;
8790
- /**
8791
- *
8792
- * @type {string}
8793
- * @memberof SpecialtyTypeModel
8794
- */
8795
- 'languageCode'?: string | null;
8796
8820
  /**
8797
8821
  *
8798
8822
  * @type {string}
@@ -8818,6 +8842,12 @@ export interface SpecialtyTypeSimpleItemModel {
8818
8842
  * @memberof SpecialtyTypeSimpleItemModel
8819
8843
  */
8820
8844
  'id'?: string;
8845
+ /**
8846
+ *
8847
+ * @type {string}
8848
+ * @memberof SpecialtyTypeSimpleItemModel
8849
+ */
8850
+ 'languageCode'?: string | null;
8821
8851
  /**
8822
8852
  *
8823
8853
  * @type {string}
@@ -9487,6 +9517,12 @@ export interface UserModel {
9487
9517
  * @memberof UserModel
9488
9518
  */
9489
9519
  'id'?: string;
9520
+ /**
9521
+ *
9522
+ * @type {string}
9523
+ * @memberof UserModel
9524
+ */
9525
+ 'languageCode'?: string | null;
9490
9526
  /**
9491
9527
  *
9492
9528
  * @type {string}
@@ -9525,16 +9561,16 @@ export interface UserModel {
9525
9561
  'slug'?: string | null;
9526
9562
  /**
9527
9563
  *
9528
- * @type {string}
9564
+ * @type {boolean}
9529
9565
  * @memberof UserModel
9530
9566
  */
9531
- 'phone'?: string | null;
9567
+ 'confirmed'?: boolean;
9532
9568
  /**
9533
9569
  *
9534
9570
  * @type {string}
9535
9571
  * @memberof UserModel
9536
9572
  */
9537
- 'email'?: string | null;
9573
+ 'userType'?: string | null;
9538
9574
  /**
9539
9575
  *
9540
9576
  * @type {string}
@@ -9549,40 +9585,46 @@ export interface UserModel {
9549
9585
  'photoThumbnail'?: string | null;
9550
9586
  /**
9551
9587
  *
9552
- * @type {Gender}
9588
+ * @type {AuditableEntity}
9553
9589
  * @memberof UserModel
9554
9590
  */
9555
- 'gender'?: Gender;
9591
+ 'auditableEntity'?: AuditableEntity;
9556
9592
  /**
9557
9593
  *
9558
- * @type {Date}
9594
+ * @type {string}
9559
9595
  * @memberof UserModel
9560
9596
  */
9561
- 'dateOfBirth'?: Date | null;
9597
+ 'phone'?: string | null;
9562
9598
  /**
9563
9599
  *
9564
9600
  * @type {string}
9565
9601
  * @memberof UserModel
9566
9602
  */
9567
- 'timeZone'?: string | null;
9603
+ 'email'?: string | null;
9568
9604
  /**
9569
9605
  *
9570
- * @type {string}
9606
+ * @type {Gender}
9571
9607
  * @memberof UserModel
9572
9608
  */
9573
- 'communicationUserId'?: string | null;
9609
+ 'gender'?: Gender;
9574
9610
  /**
9575
9611
  *
9576
- * @type {AuditableEntity}
9612
+ * @type {Date}
9577
9613
  * @memberof UserModel
9578
9614
  */
9579
- 'auditableEntity'?: AuditableEntity;
9615
+ 'dateOfBirth'?: Date | null;
9580
9616
  /**
9581
9617
  *
9582
9618
  * @type {string}
9583
9619
  * @memberof UserModel
9584
9620
  */
9585
- 'userType'?: string | null;
9621
+ 'timeZone'?: string | null;
9622
+ /**
9623
+ *
9624
+ * @type {string}
9625
+ * @memberof UserModel
9626
+ */
9627
+ 'communicationUserId'?: string | null;
9586
9628
  /**
9587
9629
  *
9588
9630
  * @type {Array<UserLanguageModel>}
@@ -9596,79 +9638,6 @@ export interface UserModel {
9596
9638
  */
9597
9639
  'locations'?: Array<UserLocationModel> | null;
9598
9640
  }
9599
- /**
9600
- *
9601
- * @export
9602
- * @interface UserTranslationModel
9603
- */
9604
- export interface UserTranslationModel {
9605
- /**
9606
- *
9607
- * @type {string}
9608
- * @memberof UserTranslationModel
9609
- */
9610
- 'userId'?: string;
9611
- /**
9612
- *
9613
- * @type {string}
9614
- * @memberof UserTranslationModel
9615
- */
9616
- 'languageCode'?: string | null;
9617
- /**
9618
- *
9619
- * @type {string}
9620
- * @memberof UserTranslationModel
9621
- */
9622
- 'firstName'?: string | null;
9623
- /**
9624
- *
9625
- * @type {string}
9626
- * @memberof UserTranslationModel
9627
- */
9628
- 'middleName'?: string | null;
9629
- /**
9630
- *
9631
- * @type {string}
9632
- * @memberof UserTranslationModel
9633
- */
9634
- 'lastName'?: string | null;
9635
- /**
9636
- *
9637
- * @type {string}
9638
- * @memberof UserTranslationModel
9639
- */
9640
- 'slug'?: string | null;
9641
- /**
9642
- *
9643
- * @type {string}
9644
- * @memberof UserTranslationModel
9645
- */
9646
- 'overview'?: string | null;
9647
- /**
9648
- *
9649
- * @type {string}
9650
- * @memberof UserTranslationModel
9651
- */
9652
- 'description'?: string | null;
9653
- /**
9654
- *
9655
- * @type {string}
9656
- * @memberof UserTranslationModel
9657
- */
9658
- 'content'?: string | null;
9659
- /**
9660
- *
9661
- * @type {boolean}
9662
- * @memberof UserTranslationModel
9663
- */
9664
- 'confirmed'?: boolean;
9665
- /**
9666
- *
9667
- * @type {AuditableEntity}
9668
- * @memberof UserTranslationModel
9669
- */
9670
- 'auditableEntity'?: AuditableEntity;
9671
- }
9672
9641
  /**
9673
9642
  *
9674
9643
  * @export
@@ -15363,13 +15332,14 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
15363
15332
  * @summary Get all doctor affiliations.
15364
15333
  * @param {string} doctorId
15365
15334
  * @param {string} [hospitalName]
15335
+ * @param {string} [languageCode]
15366
15336
  * @param {number} [page]
15367
15337
  * @param {number} [limit]
15368
15338
  * @param {Date} [lastRetrieved]
15369
15339
  * @param {*} [options] Override http request option.
15370
15340
  * @throws {RequiredError}
15371
15341
  */
15372
- apiV2DoctorsDoctorIdAffiliationsGet: async (doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
15342
+ apiV2DoctorsDoctorIdAffiliationsGet: async (doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
15373
15343
  // verify required parameter 'doctorId' is not null or undefined
15374
15344
  assertParamExists('apiV2DoctorsDoctorIdAffiliationsGet', 'doctorId', doctorId)
15375
15345
  const localVarPath = `/api/v2/doctors/{doctorId}/affiliations`
@@ -15389,6 +15359,10 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
15389
15359
  localVarQueryParameter['HospitalName'] = hospitalName;
15390
15360
  }
15391
15361
 
15362
+ if (languageCode !== undefined) {
15363
+ localVarQueryParameter['LanguageCode'] = languageCode;
15364
+ }
15365
+
15392
15366
  if (page !== undefined) {
15393
15367
  localVarQueryParameter['page'] = page;
15394
15368
  }
@@ -16033,13 +16007,15 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
16033
16007
  * @param {string} [doctorName]
16034
16008
  * @param {string} [specialtyId]
16035
16009
  * @param {string} [specialtyName]
16010
+ * @param {string} [languageCode]
16011
+ * @param {boolean} [showHidden]
16036
16012
  * @param {number} [page]
16037
16013
  * @param {number} [limit]
16038
16014
  * @param {Date} [lastRetrieved]
16039
16015
  * @param {*} [options] Override http request option.
16040
16016
  * @throws {RequiredError}
16041
16017
  */
16042
- apiV2DoctorsDoctorIdSpecialtiesGet: async (doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
16018
+ apiV2DoctorsDoctorIdSpecialtiesGet: async (doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
16043
16019
  // verify required parameter 'doctorId' is not null or undefined
16044
16020
  assertParamExists('apiV2DoctorsDoctorIdSpecialtiesGet', 'doctorId', doctorId)
16045
16021
  const localVarPath = `/api/v2/doctors/{doctorId}/specialties`
@@ -16067,6 +16043,14 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
16067
16043
  localVarQueryParameter['SpecialtyName'] = specialtyName;
16068
16044
  }
16069
16045
 
16046
+ if (languageCode !== undefined) {
16047
+ localVarQueryParameter['LanguageCode'] = languageCode;
16048
+ }
16049
+
16050
+ if (showHidden !== undefined) {
16051
+ localVarQueryParameter['ShowHidden'] = showHidden;
16052
+ }
16053
+
16070
16054
  if (page !== undefined) {
16071
16055
  localVarQueryParameter['page'] = page;
16072
16056
  }
@@ -16097,10 +16081,11 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
16097
16081
  * @summary Get DoctorSpecialty
16098
16082
  * @param {string} doctorId
16099
16083
  * @param {string} specialtyId
16084
+ * @param {string} [languageCode]
16100
16085
  * @param {*} [options] Override http request option.
16101
16086
  * @throws {RequiredError}
16102
16087
  */
16103
- apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: async (doctorId: string, specialtyId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
16088
+ apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: async (doctorId: string, specialtyId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
16104
16089
  // verify required parameter 'doctorId' is not null or undefined
16105
16090
  assertParamExists('apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet', 'doctorId', doctorId)
16106
16091
  // verify required parameter 'specialtyId' is not null or undefined
@@ -16119,6 +16104,10 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
16119
16104
  const localVarHeaderParameter = {} as any;
16120
16105
  const localVarQueryParameter = {} as any;
16121
16106
 
16107
+ if (languageCode !== undefined) {
16108
+ localVarQueryParameter['languageCode'] = languageCode;
16109
+ }
16110
+
16122
16111
 
16123
16112
 
16124
16113
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -16430,14 +16419,15 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
16430
16419
  * @summary Get all doctor affiliations.
16431
16420
  * @param {string} doctorId
16432
16421
  * @param {string} [hospitalName]
16422
+ * @param {string} [languageCode]
16433
16423
  * @param {number} [page]
16434
16424
  * @param {number} [limit]
16435
16425
  * @param {Date} [lastRetrieved]
16436
16426
  * @param {*} [options] Override http request option.
16437
16427
  * @throws {RequiredError}
16438
16428
  */
16439
- async apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
16440
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options);
16429
+ async apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
16430
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options);
16441
16431
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
16442
16432
  },
16443
16433
  /**
@@ -16617,14 +16607,16 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
16617
16607
  * @param {string} [doctorName]
16618
16608
  * @param {string} [specialtyId]
16619
16609
  * @param {string} [specialtyName]
16610
+ * @param {string} [languageCode]
16611
+ * @param {boolean} [showHidden]
16620
16612
  * @param {number} [page]
16621
16613
  * @param {number} [limit]
16622
16614
  * @param {Date} [lastRetrieved]
16623
16615
  * @param {*} [options] Override http request option.
16624
16616
  * @throws {RequiredError}
16625
16617
  */
16626
- async apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorSpecialtiesModel>> {
16627
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options);
16618
+ async apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorSpecialtiesModel>> {
16619
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, showHidden, page, limit, lastRetrieved, options);
16628
16620
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
16629
16621
  },
16630
16622
  /**
@@ -16632,11 +16624,12 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
16632
16624
  * @summary Get DoctorSpecialty
16633
16625
  * @param {string} doctorId
16634
16626
  * @param {string} specialtyId
16627
+ * @param {string} [languageCode]
16635
16628
  * @param {*} [options] Override http request option.
16636
16629
  * @throws {RequiredError}
16637
16630
  */
16638
- async apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorSpecialtyModel>> {
16639
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, options);
16631
+ async apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorSpecialtyModel>> {
16632
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, languageCode, options);
16640
16633
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
16641
16634
  },
16642
16635
  /**
@@ -16720,14 +16713,15 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
16720
16713
  * @summary Get all doctor affiliations.
16721
16714
  * @param {string} doctorId
16722
16715
  * @param {string} [hospitalName]
16716
+ * @param {string} [languageCode]
16723
16717
  * @param {number} [page]
16724
16718
  * @param {number} [limit]
16725
16719
  * @param {Date} [lastRetrieved]
16726
16720
  * @param {*} [options] Override http request option.
16727
16721
  * @throws {RequiredError}
16728
16722
  */
16729
- apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
16730
- return localVarFp.apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
16723
+ apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
16724
+ return localVarFp.apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
16731
16725
  },
16732
16726
  /**
16733
16727
  *
@@ -16894,25 +16888,28 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
16894
16888
  * @param {string} [doctorName]
16895
16889
  * @param {string} [specialtyId]
16896
16890
  * @param {string} [specialtyName]
16891
+ * @param {string} [languageCode]
16892
+ * @param {boolean} [showHidden]
16897
16893
  * @param {number} [page]
16898
16894
  * @param {number} [limit]
16899
16895
  * @param {Date} [lastRetrieved]
16900
16896
  * @param {*} [options] Override http request option.
16901
16897
  * @throws {RequiredError}
16902
16898
  */
16903
- apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorSpecialtiesModel> {
16904
- return localVarFp.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
16899
+ apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorSpecialtiesModel> {
16900
+ return localVarFp.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
16905
16901
  },
16906
16902
  /**
16907
16903
  *
16908
16904
  * @summary Get DoctorSpecialty
16909
16905
  * @param {string} doctorId
16910
16906
  * @param {string} specialtyId
16907
+ * @param {string} [languageCode]
16911
16908
  * @param {*} [options] Override http request option.
16912
16909
  * @throws {RequiredError}
16913
16910
  */
16914
- apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel> {
16915
- return localVarFp.apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, options).then((request) => request(axios, basePath));
16911
+ apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string, options?: any): AxiosPromise<DoctorSpecialtyModel> {
16912
+ return localVarFp.apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, languageCode, options).then((request) => request(axios, basePath));
16916
16913
  },
16917
16914
  /**
16918
16915
  *
@@ -16992,6 +16989,7 @@ export class DoctorsApi extends BaseAPI {
16992
16989
  * @summary Get all doctor affiliations.
16993
16990
  * @param {string} doctorId
16994
16991
  * @param {string} [hospitalName]
16992
+ * @param {string} [languageCode]
16995
16993
  * @param {number} [page]
16996
16994
  * @param {number} [limit]
16997
16995
  * @param {Date} [lastRetrieved]
@@ -16999,8 +16997,8 @@ export class DoctorsApi extends BaseAPI {
16999
16997
  * @throws {RequiredError}
17000
16998
  * @memberof DoctorsApi
17001
16999
  */
17002
- public apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
17003
- return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
17000
+ public apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
17001
+ return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
17004
17002
  }
17005
17003
 
17006
17004
  /**
@@ -17192,6 +17190,8 @@ export class DoctorsApi extends BaseAPI {
17192
17190
  * @param {string} [doctorName]
17193
17191
  * @param {string} [specialtyId]
17194
17192
  * @param {string} [specialtyName]
17193
+ * @param {string} [languageCode]
17194
+ * @param {boolean} [showHidden]
17195
17195
  * @param {number} [page]
17196
17196
  * @param {number} [limit]
17197
17197
  * @param {Date} [lastRetrieved]
@@ -17199,8 +17199,8 @@ export class DoctorsApi extends BaseAPI {
17199
17199
  * @throws {RequiredError}
17200
17200
  * @memberof DoctorsApi
17201
17201
  */
17202
- public apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
17203
- return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
17202
+ public apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
17203
+ return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
17204
17204
  }
17205
17205
 
17206
17206
  /**
@@ -17208,12 +17208,13 @@ export class DoctorsApi extends BaseAPI {
17208
17208
  * @summary Get DoctorSpecialty
17209
17209
  * @param {string} doctorId
17210
17210
  * @param {string} specialtyId
17211
+ * @param {string} [languageCode]
17211
17212
  * @param {*} [options] Override http request option.
17212
17213
  * @throws {RequiredError}
17213
17214
  * @memberof DoctorsApi
17214
17215
  */
17215
- public apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig) {
17216
- return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, options).then((request) => request(this.axios, this.basePath));
17216
+ public apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig) {
17217
+ return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, languageCode, options).then((request) => request(this.axios, this.basePath));
17217
17218
  }
17218
17219
 
17219
17220
  /**
@@ -19923,12 +19924,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
19923
19924
  * @param {string} hospitalId
19924
19925
  * @param {string} specialtyId
19925
19926
  * @param {string} [languageCode]
19926
- * @param {boolean} [returnDefaultValue]
19927
- * @param {boolean} [includeServices]
19928
19927
  * @param {*} [options] Override http request option.
19929
19928
  * @throws {RequiredError}
19930
19929
  */
19931
- apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: async (hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
19930
+ apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: async (hospitalId: string, specialtyId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
19932
19931
  // verify required parameter 'hospitalId' is not null or undefined
19933
19932
  assertParamExists('apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet', 'hospitalId', hospitalId)
19934
19933
  // verify required parameter 'specialtyId' is not null or undefined
@@ -19951,14 +19950,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
19951
19950
  localVarQueryParameter['languageCode'] = languageCode;
19952
19951
  }
19953
19952
 
19954
- if (returnDefaultValue !== undefined) {
19955
- localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
19956
- }
19957
-
19958
- if (includeServices !== undefined) {
19959
- localVarQueryParameter['includeServices'] = includeServices;
19960
- }
19961
-
19962
19953
 
19963
19954
 
19964
19955
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -20842,13 +20833,11 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
20842
20833
  * @param {string} hospitalId
20843
20834
  * @param {string} specialtyId
20844
20835
  * @param {string} [languageCode]
20845
- * @param {boolean} [returnDefaultValue]
20846
- * @param {boolean} [includeServices]
20847
20836
  * @param {*} [options] Override http request option.
20848
20837
  * @throws {RequiredError}
20849
20838
  */
20850
- async apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>> {
20851
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options);
20839
+ async apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>> {
20840
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options);
20852
20841
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
20853
20842
  },
20854
20843
  /**
@@ -21300,13 +21289,11 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
21300
21289
  * @param {string} hospitalId
21301
21290
  * @param {string} specialtyId
21302
21291
  * @param {string} [languageCode]
21303
- * @param {boolean} [returnDefaultValue]
21304
- * @param {boolean} [includeServices]
21305
21292
  * @param {*} [options] Override http request option.
21306
21293
  * @throws {RequiredError}
21307
21294
  */
21308
- apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: any): AxiosPromise<HospitalSpecialtyModel> {
21309
- return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options).then((request) => request(axios, basePath));
21295
+ apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: any): AxiosPromise<HospitalSpecialtyModel> {
21296
+ return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options).then((request) => request(axios, basePath));
21310
21297
  },
21311
21298
  /**
21312
21299
  *
@@ -21787,14 +21774,12 @@ export class HospitalsApi extends BaseAPI {
21787
21774
  * @param {string} hospitalId
21788
21775
  * @param {string} specialtyId
21789
21776
  * @param {string} [languageCode]
21790
- * @param {boolean} [returnDefaultValue]
21791
- * @param {boolean} [includeServices]
21792
21777
  * @param {*} [options] Override http request option.
21793
21778
  * @throws {RequiredError}
21794
21779
  * @memberof HospitalsApi
21795
21780
  */
21796
- public apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig) {
21797
- return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options).then((request) => request(this.axios, this.basePath));
21781
+ public apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig) {
21782
+ return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options).then((request) => request(this.axios, this.basePath));
21798
21783
  }
21799
21784
 
21800
21785
  /**