ch-api-client-typescript2 3.3.2 → 3.3.5

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
@@ -4133,6 +4133,12 @@ export interface DoctorItemModel {
4133
4133
  * @memberof DoctorItemModel
4134
4134
  */
4135
4135
  'id'?: string;
4136
+ /**
4137
+ *
4138
+ * @type {string}
4139
+ * @memberof DoctorItemModel
4140
+ */
4141
+ 'languageCode'?: string | null;
4136
4142
  /**
4137
4143
  *
4138
4144
  * @type {string}
@@ -4171,16 +4177,16 @@ export interface DoctorItemModel {
4171
4177
  'slug'?: string | null;
4172
4178
  /**
4173
4179
  *
4174
- * @type {string}
4180
+ * @type {boolean}
4175
4181
  * @memberof DoctorItemModel
4176
4182
  */
4177
- 'phone'?: string | null;
4183
+ 'confirmed'?: boolean;
4178
4184
  /**
4179
4185
  *
4180
4186
  * @type {string}
4181
4187
  * @memberof DoctorItemModel
4182
4188
  */
4183
- 'email'?: string | null;
4189
+ 'userType'?: string | null;
4184
4190
  /**
4185
4191
  *
4186
4192
  * @type {string}
@@ -4193,48 +4199,12 @@ export interface DoctorItemModel {
4193
4199
  * @memberof DoctorItemModel
4194
4200
  */
4195
4201
  'photoThumbnail'?: string | null;
4196
- /**
4197
- *
4198
- * @type {Gender}
4199
- * @memberof DoctorItemModel
4200
- */
4201
- 'gender'?: Gender;
4202
- /**
4203
- *
4204
- * @type {Date}
4205
- * @memberof DoctorItemModel
4206
- */
4207
- 'dateOfBirth'?: Date | null;
4208
- /**
4209
- *
4210
- * @type {string}
4211
- * @memberof DoctorItemModel
4212
- */
4213
- 'timeZone'?: string | null;
4214
- /**
4215
- *
4216
- * @type {string}
4217
- * @memberof DoctorItemModel
4218
- */
4219
- 'communicationUserId'?: string | null;
4220
4202
  /**
4221
4203
  *
4222
4204
  * @type {AuditableEntity}
4223
4205
  * @memberof DoctorItemModel
4224
4206
  */
4225
4207
  'auditableEntity'?: AuditableEntity;
4226
- /**
4227
- *
4228
- * @type {Date}
4229
- * @memberof DoctorItemModel
4230
- */
4231
- 'startPracticeDate'?: Date | null;
4232
- /**
4233
- *
4234
- * @type {string}
4235
- * @memberof DoctorItemModel
4236
- */
4237
- 'overview'?: string | null;
4238
4208
  /**
4239
4209
  *
4240
4210
  * @type {boolean}
@@ -4249,16 +4219,16 @@ export interface DoctorItemModel {
4249
4219
  'consultationFee'?: number | null;
4250
4220
  /**
4251
4221
  *
4252
- * @type {boolean}
4222
+ * @type {Array<DoctorSpecialtyItemModel>}
4253
4223
  * @memberof DoctorItemModel
4254
4224
  */
4255
- 'confirmed'?: boolean;
4225
+ 'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
4256
4226
  /**
4257
4227
  *
4258
- * @type {Array<DoctorAffiliationModel>}
4228
+ * @type {Array<DoctorAffiliationItemModel>}
4259
4229
  * @memberof DoctorItemModel
4260
4230
  */
4261
- 'doctorAffiliations'?: Array<DoctorAffiliationModel> | null;
4231
+ 'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
4262
4232
  }
4263
4233
  /**
4264
4234
  *
@@ -4341,6 +4311,12 @@ export interface DoctorModel {
4341
4311
  * @memberof DoctorModel
4342
4312
  */
4343
4313
  'id'?: string;
4314
+ /**
4315
+ *
4316
+ * @type {string}
4317
+ * @memberof DoctorModel
4318
+ */
4319
+ 'languageCode'?: string | null;
4344
4320
  /**
4345
4321
  *
4346
4322
  * @type {string}
@@ -4379,16 +4355,16 @@ export interface DoctorModel {
4379
4355
  'slug'?: string | null;
4380
4356
  /**
4381
4357
  *
4382
- * @type {string}
4358
+ * @type {boolean}
4383
4359
  * @memberof DoctorModel
4384
4360
  */
4385
- 'phone'?: string | null;
4361
+ 'confirmed'?: boolean;
4386
4362
  /**
4387
4363
  *
4388
4364
  * @type {string}
4389
4365
  * @memberof DoctorModel
4390
4366
  */
4391
- 'email'?: string | null;
4367
+ 'userType'?: string | null;
4392
4368
  /**
4393
4369
  *
4394
4370
  * @type {string}
@@ -4403,64 +4379,58 @@ export interface DoctorModel {
4403
4379
  'photoThumbnail'?: string | null;
4404
4380
  /**
4405
4381
  *
4406
- * @type {Gender}
4407
- * @memberof DoctorModel
4408
- */
4409
- 'gender'?: Gender;
4410
- /**
4411
- *
4412
- * @type {Date}
4382
+ * @type {AuditableEntity}
4413
4383
  * @memberof DoctorModel
4414
4384
  */
4415
- 'dateOfBirth'?: Date | null;
4385
+ 'auditableEntity'?: AuditableEntity;
4416
4386
  /**
4417
4387
  *
4418
4388
  * @type {string}
4419
4389
  * @memberof DoctorModel
4420
4390
  */
4421
- 'timeZone'?: string | null;
4391
+ 'phone'?: string | null;
4422
4392
  /**
4423
4393
  *
4424
4394
  * @type {string}
4425
4395
  * @memberof DoctorModel
4426
4396
  */
4427
- 'communicationUserId'?: string | null;
4397
+ 'email'?: string | null;
4428
4398
  /**
4429
4399
  *
4430
- * @type {AuditableEntity}
4400
+ * @type {Gender}
4431
4401
  * @memberof DoctorModel
4432
4402
  */
4433
- 'auditableEntity'?: AuditableEntity;
4403
+ 'gender'?: Gender;
4434
4404
  /**
4435
4405
  *
4436
- * @type {string}
4406
+ * @type {Date}
4437
4407
  * @memberof DoctorModel
4438
4408
  */
4439
- 'userType'?: string | null;
4409
+ 'dateOfBirth'?: Date | null;
4440
4410
  /**
4441
4411
  *
4442
- * @type {Array<UserLanguageModel>}
4412
+ * @type {string}
4443
4413
  * @memberof DoctorModel
4444
4414
  */
4445
- 'languages'?: Array<UserLanguageModel> | null;
4415
+ 'timeZone'?: string | null;
4446
4416
  /**
4447
4417
  *
4448
- * @type {Array<UserLocationModel>}
4418
+ * @type {string}
4449
4419
  * @memberof DoctorModel
4450
4420
  */
4451
- 'locations'?: Array<UserLocationModel> | null;
4421
+ 'communicationUserId'?: string | null;
4452
4422
  /**
4453
4423
  *
4454
- * @type {string}
4424
+ * @type {Array<UserLanguageModel>}
4455
4425
  * @memberof DoctorModel
4456
4426
  */
4457
- 'languageCode'?: string | null;
4427
+ 'languages'?: Array<UserLanguageModel> | null;
4458
4428
  /**
4459
4429
  *
4460
- * @type {Date}
4430
+ * @type {Array<UserLocationModel>}
4461
4431
  * @memberof DoctorModel
4462
4432
  */
4463
- 'startPracticeDate'?: Date | null;
4433
+ 'locations'?: Array<UserLocationModel> | null;
4464
4434
  /**
4465
4435
  *
4466
4436
  * @type {string}
@@ -4481,28 +4451,10 @@ export interface DoctorModel {
4481
4451
  'content'?: string | null;
4482
4452
  /**
4483
4453
  *
4484
- * @type {boolean}
4485
- * @memberof DoctorModel
4486
- */
4487
- 'consultationEnabled'?: boolean | null;
4488
- /**
4489
- *
4490
- * @type {number}
4491
- * @memberof DoctorModel
4492
- */
4493
- 'consultationFee'?: number | null;
4494
- /**
4495
- *
4496
- * @type {boolean}
4497
- * @memberof DoctorModel
4498
- */
4499
- 'confirmed'?: boolean;
4500
- /**
4501
- *
4502
- * @type {Array<DoctorAffiliationModel>}
4454
+ * @type {Date}
4503
4455
  * @memberof DoctorModel
4504
4456
  */
4505
- 'doctorAffiliations'?: Array<DoctorAffiliationModel> | null;
4457
+ 'startPracticeDate'?: Date | null;
4506
4458
  /**
4507
4459
  *
4508
4460
  * @type {Array<LocalizedUrlModel>}
@@ -4644,25 +4596,25 @@ export interface DoctorSimpleItemModel {
4644
4596
  * @type {string}
4645
4597
  * @memberof DoctorSimpleItemModel
4646
4598
  */
4647
- 'firstName'?: string | null;
4599
+ 'languageCode'?: string | null;
4648
4600
  /**
4649
4601
  *
4650
4602
  * @type {string}
4651
4603
  * @memberof DoctorSimpleItemModel
4652
4604
  */
4653
- 'middleName'?: string | null;
4605
+ 'firstName'?: string | null;
4654
4606
  /**
4655
4607
  *
4656
4608
  * @type {string}
4657
4609
  * @memberof DoctorSimpleItemModel
4658
4610
  */
4659
- 'lastName'?: string | null;
4611
+ 'middleName'?: string | null;
4660
4612
  /**
4661
4613
  *
4662
4614
  * @type {string}
4663
4615
  * @memberof DoctorSimpleItemModel
4664
4616
  */
4665
- 'fullname'?: string | null;
4617
+ 'lastName'?: string | null;
4666
4618
  /**
4667
4619
  *
4668
4620
  * @type {string}
@@ -4684,10 +4636,10 @@ export interface DoctorSimpleItemModel {
4684
4636
  export interface DoctorSpecialtiesModel {
4685
4637
  /**
4686
4638
  *
4687
- * @type {Array<DoctorSpecialtyModel>}
4639
+ * @type {Array<DoctorSpecialtyItemModel>}
4688
4640
  * @memberof DoctorSpecialtiesModel
4689
4641
  */
4690
- 'items'?: Array<DoctorSpecialtyModel> | null;
4642
+ 'items'?: Array<DoctorSpecialtyItemModel> | null;
4691
4643
  /**
4692
4644
  *
4693
4645
  * @type {PagedListMetaData}
@@ -4698,39 +4650,70 @@ export interface DoctorSpecialtiesModel {
4698
4650
  /**
4699
4651
  *
4700
4652
  * @export
4701
- * @interface DoctorSpecialtyModel
4653
+ * @interface DoctorSpecialtyItemModel
4702
4654
  */
4703
- export interface DoctorSpecialtyModel {
4655
+ export interface DoctorSpecialtyItemModel {
4704
4656
  /**
4705
4657
  *
4706
4658
  * @type {string}
4707
- * @memberof DoctorSpecialtyModel
4659
+ * @memberof DoctorSpecialtyItemModel
4660
+ */
4661
+ 'languageCode'?: string | null;
4662
+ /**
4663
+ *
4664
+ * @type {string}
4665
+ * @memberof DoctorSpecialtyItemModel
4708
4666
  */
4709
4667
  'specialtyId'?: string;
4710
4668
  /**
4711
4669
  *
4712
4670
  * @type {string}
4713
- * @memberof DoctorSpecialtyModel
4671
+ * @memberof DoctorSpecialtyItemModel
4714
4672
  */
4715
4673
  'specialtyName'?: string | null;
4716
4674
  /**
4717
4675
  *
4718
4676
  * @type {string}
4719
- * @memberof DoctorSpecialtyModel
4677
+ * @memberof DoctorSpecialtyItemModel
4720
4678
  */
4721
4679
  'specialtySlug'?: string | null;
4680
+ /**
4681
+ *
4682
+ * @type {number}
4683
+ * @memberof DoctorSpecialtyItemModel
4684
+ */
4685
+ 'order'?: number;
4686
+ }
4687
+ /**
4688
+ *
4689
+ * @export
4690
+ * @interface DoctorSpecialtyModel
4691
+ */
4692
+ export interface DoctorSpecialtyModel {
4722
4693
  /**
4723
4694
  *
4724
4695
  * @type {string}
4725
4696
  * @memberof DoctorSpecialtyModel
4726
4697
  */
4727
- 'specialtyTypeId'?: string;
4698
+ 'languageCode'?: string | null;
4728
4699
  /**
4729
4700
  *
4730
4701
  * @type {string}
4731
4702
  * @memberof DoctorSpecialtyModel
4732
4703
  */
4733
- 'specialtyTypeName'?: string | null;
4704
+ 'specialtyId'?: string;
4705
+ /**
4706
+ *
4707
+ * @type {string}
4708
+ * @memberof DoctorSpecialtyModel
4709
+ */
4710
+ 'specialtyName'?: string | null;
4711
+ /**
4712
+ *
4713
+ * @type {string}
4714
+ * @memberof DoctorSpecialtyModel
4715
+ */
4716
+ 'specialtySlug'?: string | null;
4734
4717
  /**
4735
4718
  *
4736
4719
  * @type {number}
@@ -4742,13 +4725,13 @@ export interface DoctorSpecialtyModel {
4742
4725
  * @type {string}
4743
4726
  * @memberof DoctorSpecialtyModel
4744
4727
  */
4745
- 'doctorId'?: string;
4728
+ 'specialtyTypeName'?: string | null;
4746
4729
  /**
4747
4730
  *
4748
4731
  * @type {string}
4749
4732
  * @memberof DoctorSpecialtyModel
4750
4733
  */
4751
- 'doctorName'?: string | null;
4734
+ 'specialtyTyeSlug'?: string | null;
4752
4735
  }
4753
4736
  /**
4754
4737
  *
@@ -5484,24 +5467,6 @@ export interface HospitalEquipmentsModel {
5484
5467
  * @interface HospitalEvaluationItemModel
5485
5468
  */
5486
5469
  export interface HospitalEvaluationItemModel {
5487
- /**
5488
- *
5489
- * @type {string}
5490
- * @memberof HospitalEvaluationItemModel
5491
- */
5492
- 'id'?: string;
5493
- /**
5494
- *
5495
- * @type {string}
5496
- * @memberof HospitalEvaluationItemModel
5497
- */
5498
- 'hospitalId'?: string;
5499
- /**
5500
- *
5501
- * @type {string}
5502
- * @memberof HospitalEvaluationItemModel
5503
- */
5504
- 'hospitalName'?: string | null;
5505
5470
  /**
5506
5471
  *
5507
5472
  * @type {string}
@@ -5514,18 +5479,6 @@ export interface HospitalEvaluationItemModel {
5514
5479
  * @memberof HospitalEvaluationItemModel
5515
5480
  */
5516
5481
  'stars'?: number;
5517
- /**
5518
- *
5519
- * @type {string}
5520
- * @memberof HospitalEvaluationItemModel
5521
- */
5522
- 'description'?: string | null;
5523
- /**
5524
- *
5525
- * @type {string}
5526
- * @memberof HospitalEvaluationItemModel
5527
- */
5528
- 'referenceUrl'?: string | null;
5529
5482
  }
5530
5483
  /**
5531
5484
  *
@@ -5533,24 +5486,6 @@ export interface HospitalEvaluationItemModel {
5533
5486
  * @interface HospitalEvaluationModel
5534
5487
  */
5535
5488
  export interface HospitalEvaluationModel {
5536
- /**
5537
- *
5538
- * @type {string}
5539
- * @memberof HospitalEvaluationModel
5540
- */
5541
- 'id'?: string;
5542
- /**
5543
- *
5544
- * @type {string}
5545
- * @memberof HospitalEvaluationModel
5546
- */
5547
- 'hospitalId'?: string;
5548
- /**
5549
- *
5550
- * @type {string}
5551
- * @memberof HospitalEvaluationModel
5552
- */
5553
- 'hospitalName'?: string | null;
5554
5489
  /**
5555
5490
  *
5556
5491
  * @type {string}
@@ -5607,6 +5542,12 @@ export interface HospitalItemModel {
5607
5542
  * @memberof HospitalItemModel
5608
5543
  */
5609
5544
  'id'?: string;
5545
+ /**
5546
+ *
5547
+ * @type {string}
5548
+ * @memberof HospitalItemModel
5549
+ */
5550
+ 'languageCode'?: string | null;
5610
5551
  /**
5611
5552
  *
5612
5553
  * @type {string}
@@ -5621,10 +5562,10 @@ export interface HospitalItemModel {
5621
5562
  'slug'?: string | null;
5622
5563
  /**
5623
5564
  *
5624
- * @type {string}
5565
+ * @type {boolean}
5625
5566
  * @memberof HospitalItemModel
5626
5567
  */
5627
- 'description'?: string | null;
5568
+ 'confirmed'?: boolean;
5628
5569
  /**
5629
5570
  *
5630
5571
  * @type {string}
@@ -5633,190 +5574,70 @@ export interface HospitalItemModel {
5633
5574
  'logo'?: string | null;
5634
5575
  /**
5635
5576
  *
5636
- * @type {string}
5577
+ * @type {MarketingType}
5637
5578
  * @memberof HospitalItemModel
5638
5579
  */
5639
- 'overview'?: string | null;
5580
+ 'marketingType'?: MarketingType;
5640
5581
  /**
5641
5582
  *
5642
- * @type {number}
5583
+ * @type {boolean}
5643
5584
  * @memberof HospitalItemModel
5644
5585
  */
5645
- 'bedsCount'?: number | null;
5586
+ 'consultationEnabled'?: boolean | null;
5646
5587
  /**
5647
5588
  *
5648
5589
  * @type {number}
5649
5590
  * @memberof HospitalItemModel
5650
5591
  */
5651
- 'operationsPerYear'?: number | null;
5592
+ 'consultationFee'?: number | null;
5652
5593
  /**
5653
5594
  *
5654
- * @type {number}
5595
+ * @type {string}
5655
5596
  * @memberof HospitalItemModel
5656
5597
  */
5657
- 'foundationYear'?: number | null;
5598
+ 'timeZone'?: string | null;
5658
5599
  /**
5659
5600
  *
5660
- * @type {number}
5601
+ * @type {string}
5661
5602
  * @memberof HospitalItemModel
5662
5603
  */
5663
- 'medicalStaffCount'?: number | null;
5604
+ 'websiteUrl'?: string | null;
5664
5605
  /**
5665
5606
  *
5666
- * @type {number}
5607
+ * @type {boolean}
5667
5608
  * @memberof HospitalItemModel
5668
5609
  */
5669
- 'doctorCount'?: number | null;
5610
+ 'paymentEnabled'?: boolean;
5670
5611
  /**
5671
5612
  *
5672
5613
  * @type {string}
5673
5614
  * @memberof HospitalItemModel
5674
5615
  */
5675
- 'countryId'?: string;
5616
+ 'specialtiesSummerized'?: string | null;
5676
5617
  /**
5677
5618
  *
5678
5619
  * @type {string}
5679
5620
  * @memberof HospitalItemModel
5680
5621
  */
5681
- 'countryName'?: string | null;
5622
+ 'countryId'?: string;
5682
5623
  /**
5683
5624
  *
5684
- * @type {MarketingType}
5625
+ * @type {Array<HospitalAccreditationItemModel>}
5685
5626
  * @memberof HospitalItemModel
5686
5627
  */
5687
- 'marketingType'?: MarketingType;
5688
- /**
5689
- *
5690
- * @type {boolean}
5691
- * @memberof HospitalItemModel
5692
- */
5693
- 'consultationEnabled'?: boolean | null;
5694
- /**
5695
- *
5696
- * @type {number}
5697
- * @memberof HospitalItemModel
5698
- */
5699
- 'consultationFee'?: number | null;
5700
- /**
5701
- *
5702
- * @type {string}
5703
- * @memberof HospitalItemModel
5704
- */
5705
- 'timeZone'?: string | null;
5706
- /**
5707
- *
5708
- * @type {string}
5709
- * @memberof HospitalItemModel
5710
- */
5711
- 'websiteUrl'?: string | null;
5712
- /**
5713
- *
5714
- * @type {number}
5715
- * @memberof HospitalItemModel
5716
- */
5717
- 'articlesCount'?: number;
5718
- /**
5719
- *
5720
- * @type {number}
5721
- * @memberof HospitalItemModel
5722
- */
5723
- 'packagesCount'?: number;
5724
- /**
5725
- *
5726
- * @type {number}
5727
- * @memberof HospitalItemModel
5728
- */
5729
- 'equipmentsCount'?: number;
5730
- /**
5731
- *
5732
- * @type {number}
5733
- * @memberof HospitalItemModel
5734
- */
5735
- 'reviewsCount'?: number;
5736
- /**
5737
- *
5738
- * @type {number}
5739
- * @memberof HospitalItemModel
5740
- */
5741
- 'departmentsCount'?: number;
5742
- /**
5743
- *
5744
- * @type {number}
5745
- * @memberof HospitalItemModel
5746
- */
5747
- 'specialtiesCount'?: number;
5748
- /**
5749
- *
5750
- * @type {number}
5751
- * @memberof HospitalItemModel
5752
- */
5753
- 'accreditationsCount'?: number;
5754
- /**
5755
- *
5756
- * @type {number}
5757
- * @memberof HospitalItemModel
5758
- */
5759
- 'doctorAffiliationsCount'?: number;
5760
- /**
5761
- *
5762
- * @type {number}
5763
- * @memberof HospitalItemModel
5764
- */
5765
- 'managerAffiliationsCount'?: number;
5766
- /**
5767
- *
5768
- * @type {string}
5769
- * @memberof HospitalItemModel
5770
- */
5771
- 'specialtiesSummerized'?: string | null;
5772
- /**
5773
- *
5774
- * @type {boolean}
5775
- * @memberof HospitalItemModel
5776
- */
5777
- 'paymentEnabled'?: boolean;
5778
- /**
5779
- *
5780
- * @type {boolean}
5781
- * @memberof HospitalItemModel
5782
- */
5783
- 'confirmed'?: boolean;
5784
- /**
5785
- *
5786
- * @type {Array<AwardModel>}
5787
- * @memberof HospitalItemModel
5788
- */
5789
- 'awards'?: Array<AwardModel> | null;
5628
+ 'accreditations'?: Array<HospitalAccreditationItemModel> | null;
5790
5629
  /**
5791
5630
  *
5792
5631
  * @type {Array<MediaModel>}
5793
5632
  * @memberof HospitalItemModel
5794
5633
  */
5795
5634
  'medias'?: Array<MediaModel> | null;
5796
- /**
5797
- *
5798
- * @type {Array<AccreditationModel>}
5799
- * @memberof HospitalItemModel
5800
- */
5801
- 'accreditations'?: Array<AccreditationModel> | null;
5802
- /**
5803
- *
5804
- * @type {Array<HospitalEvaluationModel>}
5805
- * @memberof HospitalItemModel
5806
- */
5807
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
5808
5635
  /**
5809
5636
  *
5810
5637
  * @type {LocationModel}
5811
5638
  * @memberof HospitalItemModel
5812
5639
  */
5813
5640
  'location'?: LocationModel;
5814
- /**
5815
- *
5816
- * @type {AuditableEntity}
5817
- * @memberof HospitalItemModel
5818
- */
5819
- 'auditableEntity'?: AuditableEntity;
5820
5641
  }
5821
5642
  /**
5822
5643
  *
@@ -5835,73 +5656,31 @@ export interface HospitalModel {
5835
5656
  * @type {string}
5836
5657
  * @memberof HospitalModel
5837
5658
  */
5838
- 'name'?: string | null;
5839
- /**
5840
- *
5841
- * @type {string}
5842
- * @memberof HospitalModel
5843
- */
5844
- 'slug'?: string | null;
5845
- /**
5846
- *
5847
- * @type {string}
5848
- * @memberof HospitalModel
5849
- */
5850
- 'description'?: string | null;
5659
+ 'languageCode'?: string | null;
5851
5660
  /**
5852
5661
  *
5853
5662
  * @type {string}
5854
5663
  * @memberof HospitalModel
5855
5664
  */
5856
- 'logo'?: string | null;
5665
+ 'name'?: string | null;
5857
5666
  /**
5858
5667
  *
5859
5668
  * @type {string}
5860
5669
  * @memberof HospitalModel
5861
5670
  */
5862
- 'overview'?: string | null;
5863
- /**
5864
- *
5865
- * @type {number}
5866
- * @memberof HospitalModel
5867
- */
5868
- 'bedsCount'?: number | null;
5869
- /**
5870
- *
5871
- * @type {number}
5872
- * @memberof HospitalModel
5873
- */
5874
- 'operationsPerYear'?: number | null;
5875
- /**
5876
- *
5877
- * @type {number}
5878
- * @memberof HospitalModel
5879
- */
5880
- 'foundationYear'?: number | null;
5881
- /**
5882
- *
5883
- * @type {number}
5884
- * @memberof HospitalModel
5885
- */
5886
- 'medicalStaffCount'?: number | null;
5887
- /**
5888
- *
5889
- * @type {number}
5890
- * @memberof HospitalModel
5891
- */
5892
- 'doctorCount'?: number | null;
5671
+ 'slug'?: string | null;
5893
5672
  /**
5894
5673
  *
5895
- * @type {string}
5674
+ * @type {boolean}
5896
5675
  * @memberof HospitalModel
5897
5676
  */
5898
- 'countryId'?: string;
5677
+ 'confirmed'?: boolean;
5899
5678
  /**
5900
5679
  *
5901
5680
  * @type {string}
5902
5681
  * @memberof HospitalModel
5903
5682
  */
5904
- 'countryName'?: string | null;
5683
+ 'logo'?: string | null;
5905
5684
  /**
5906
5685
  *
5907
5686
  * @type {MarketingType}
@@ -5934,142 +5713,118 @@ export interface HospitalModel {
5934
5713
  'websiteUrl'?: string | null;
5935
5714
  /**
5936
5715
  *
5937
- * @type {number}
5938
- * @memberof HospitalModel
5939
- */
5940
- 'articlesCount'?: number;
5941
- /**
5942
- *
5943
- * @type {number}
5944
- * @memberof HospitalModel
5945
- */
5946
- 'packagesCount'?: number;
5947
- /**
5948
- *
5949
- * @type {number}
5950
- * @memberof HospitalModel
5951
- */
5952
- 'equipmentsCount'?: number;
5953
- /**
5954
- *
5955
- * @type {number}
5716
+ * @type {boolean}
5956
5717
  * @memberof HospitalModel
5957
5718
  */
5958
- 'reviewsCount'?: number;
5719
+ 'paymentEnabled'?: boolean;
5959
5720
  /**
5960
5721
  *
5961
- * @type {number}
5722
+ * @type {string}
5962
5723
  * @memberof HospitalModel
5963
5724
  */
5964
- 'departmentsCount'?: number;
5725
+ 'specialtiesSummerized'?: string | null;
5965
5726
  /**
5966
5727
  *
5967
- * @type {number}
5728
+ * @type {string}
5968
5729
  * @memberof HospitalModel
5969
5730
  */
5970
- 'specialtiesCount'?: number;
5731
+ 'countryId'?: string;
5971
5732
  /**
5972
5733
  *
5973
- * @type {number}
5734
+ * @type {Array<HospitalAccreditationItemModel>}
5974
5735
  * @memberof HospitalModel
5975
5736
  */
5976
- 'accreditationsCount'?: number;
5737
+ 'accreditations'?: Array<HospitalAccreditationItemModel> | null;
5977
5738
  /**
5978
5739
  *
5979
- * @type {number}
5740
+ * @type {Array<MediaModel>}
5980
5741
  * @memberof HospitalModel
5981
5742
  */
5982
- 'doctorAffiliationsCount'?: number;
5743
+ 'medias'?: Array<MediaModel> | null;
5983
5744
  /**
5984
5745
  *
5985
- * @type {number}
5746
+ * @type {LocationModel}
5986
5747
  * @memberof HospitalModel
5987
5748
  */
5988
- 'managerAffiliationsCount'?: number;
5749
+ 'location'?: LocationModel;
5989
5750
  /**
5990
5751
  *
5991
5752
  * @type {string}
5992
5753
  * @memberof HospitalModel
5993
5754
  */
5994
- 'specialtiesSummerized'?: string | null;
5995
- /**
5996
- *
5997
- * @type {boolean}
5998
- * @memberof HospitalModel
5999
- */
6000
- 'paymentEnabled'?: boolean;
5755
+ 'description'?: string | null;
6001
5756
  /**
6002
5757
  *
6003
- * @type {boolean}
5758
+ * @type {string}
6004
5759
  * @memberof HospitalModel
6005
5760
  */
6006
- 'confirmed'?: boolean;
5761
+ 'overview'?: string | null;
6007
5762
  /**
6008
5763
  *
6009
- * @type {Array<AwardModel>}
5764
+ * @type {string}
6010
5765
  * @memberof HospitalModel
6011
5766
  */
6012
- 'awards'?: Array<AwardModel> | null;
5767
+ 'content'?: string | null;
6013
5768
  /**
6014
5769
  *
6015
- * @type {Array<MediaModel>}
5770
+ * @type {Array<LocalizedUrlModel>}
6016
5771
  * @memberof HospitalModel
6017
5772
  */
6018
- 'medias'?: Array<MediaModel> | null;
5773
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6019
5774
  /**
6020
5775
  *
6021
- * @type {Array<AccreditationModel>}
5776
+ * @type {number}
6022
5777
  * @memberof HospitalModel
6023
5778
  */
6024
- 'accreditations'?: Array<AccreditationModel> | null;
5779
+ 'bedsCount'?: number | null;
6025
5780
  /**
6026
5781
  *
6027
- * @type {Array<HospitalEvaluationModel>}
5782
+ * @type {number}
6028
5783
  * @memberof HospitalModel
6029
5784
  */
6030
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
5785
+ 'operationsPerYear'?: number | null;
6031
5786
  /**
6032
5787
  *
6033
- * @type {LocationModel}
5788
+ * @type {number}
6034
5789
  * @memberof HospitalModel
6035
5790
  */
6036
- 'location'?: LocationModel;
5791
+ 'foundationYear'?: number | null;
6037
5792
  /**
6038
5793
  *
6039
- * @type {AuditableEntity}
5794
+ * @type {number}
6040
5795
  * @memberof HospitalModel
6041
5796
  */
6042
- 'auditableEntity'?: AuditableEntity;
5797
+ 'medicalStaffCount'?: number | null;
6043
5798
  /**
6044
5799
  *
6045
- * @type {string}
5800
+ * @type {number}
6046
5801
  * @memberof HospitalModel
6047
5802
  */
6048
- 'languageCode'?: string | null;
5803
+ 'doctorCount'?: number | null;
6049
5804
  /**
6050
5805
  *
6051
5806
  * @type {string}
6052
5807
  * @memberof HospitalModel
6053
5808
  */
6054
- 'content'?: string | null;
5809
+ 'contactTel'?: string | null;
6055
5810
  /**
6056
5811
  *
6057
5812
  * @type {string}
6058
5813
  * @memberof HospitalModel
6059
5814
  */
6060
- 'contactTel'?: string | null;
5815
+ 'contactEmail'?: string | null;
6061
5816
  /**
6062
5817
  *
6063
5818
  * @type {string}
6064
5819
  * @memberof HospitalModel
6065
5820
  */
6066
- 'contactEmail'?: string | null;
5821
+ 'customStyle'?: string | null;
6067
5822
  /**
6068
5823
  *
6069
- * @type {string}
5824
+ * @type {Array<HospitalEvaluationItemModel>}
6070
5825
  * @memberof HospitalModel
6071
5826
  */
6072
- 'customStyle'?: string | null;
5827
+ 'evaluations'?: Array<HospitalEvaluationItemModel> | null;
6073
5828
  /**
6074
5829
  *
6075
5830
  * @type {Array<WorkingDay>}
@@ -6084,10 +5839,10 @@ export interface HospitalModel {
6084
5839
  'hospitalSnsHandles'?: Array<SnsHandle> | null;
6085
5840
  /**
6086
5841
  *
6087
- * @type {Array<LocalizedUrlModel>}
5842
+ * @type {Array<AwardModel>}
6088
5843
  * @memberof HospitalModel
6089
5844
  */
6090
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5845
+ 'awards'?: Array<AwardModel> | null;
6091
5846
  }
6092
5847
  /**
6093
5848
  *
@@ -6470,6 +6225,12 @@ export interface HospitalSimpleItemModel {
6470
6225
  * @memberof HospitalSimpleItemModel
6471
6226
  */
6472
6227
  'id'?: string;
6228
+ /**
6229
+ *
6230
+ * @type {string}
6231
+ * @memberof HospitalSimpleItemModel
6232
+ */
6233
+ 'languageCode'?: string | null;
6473
6234
  /**
6474
6235
  *
6475
6236
  * @type {string}
@@ -6517,95 +6278,53 @@ export interface HospitalSpecialtiesModel {
6517
6278
  /**
6518
6279
  *
6519
6280
  * @type {Array<HospitalSpecialtyItemModel>}
6520
- * @memberof HospitalSpecialtiesModel
6521
- */
6522
- 'items'?: Array<HospitalSpecialtyItemModel> | null;
6523
- /**
6524
- *
6525
- * @type {PagedListMetaData}
6526
- * @memberof HospitalSpecialtiesModel
6527
- */
6528
- 'metaData'?: PagedListMetaData;
6529
- }
6530
- /**
6531
- *
6532
- * @export
6533
- * @interface HospitalSpecialtiesSimpleModel
6534
- */
6535
- export interface HospitalSpecialtiesSimpleModel {
6536
- /**
6537
- *
6538
- * @type {Array<HospitalSpecialtySimpleItemModel>}
6539
- * @memberof HospitalSpecialtiesSimpleModel
6540
- */
6541
- 'items'?: Array<HospitalSpecialtySimpleItemModel> | null;
6542
- /**
6543
- *
6544
- * @type {PagedListMetaData}
6545
- * @memberof HospitalSpecialtiesSimpleModel
6546
- */
6547
- 'metaData'?: PagedListMetaData;
6548
- }
6549
- /**
6550
- *
6551
- * @export
6552
- * @interface HospitalSpecialtyItemModel
6553
- */
6554
- export interface HospitalSpecialtyItemModel {
6555
- /**
6556
- *
6557
- * @type {string}
6558
- * @memberof HospitalSpecialtyItemModel
6559
- */
6560
- 'id'?: string;
6561
- /**
6562
- *
6563
- * @type {string}
6564
- * @memberof HospitalSpecialtyItemModel
6565
- */
6566
- 'hospitalId'?: string;
6567
- /**
6568
- *
6569
- * @type {string}
6570
- * @memberof HospitalSpecialtyItemModel
6571
- */
6572
- 'hospitalName'?: string | null;
6573
- /**
6574
- *
6575
- * @type {string}
6576
- * @memberof HospitalSpecialtyItemModel
6281
+ * @memberof HospitalSpecialtiesModel
6577
6282
  */
6578
- 'hospitalSlug'?: string | null;
6283
+ 'items'?: Array<HospitalSpecialtyItemModel> | null;
6579
6284
  /**
6580
6285
  *
6581
- * @type {string}
6582
- * @memberof HospitalSpecialtyItemModel
6286
+ * @type {PagedListMetaData}
6287
+ * @memberof HospitalSpecialtiesModel
6583
6288
  */
6584
- 'specialtyId'?: string;
6289
+ 'metaData'?: PagedListMetaData;
6290
+ }
6291
+ /**
6292
+ *
6293
+ * @export
6294
+ * @interface HospitalSpecialtiesSimpleModel
6295
+ */
6296
+ export interface HospitalSpecialtiesSimpleModel {
6585
6297
  /**
6586
6298
  *
6587
- * @type {string}
6588
- * @memberof HospitalSpecialtyItemModel
6299
+ * @type {Array<HospitalSpecialtySimpleItemModel>}
6300
+ * @memberof HospitalSpecialtiesSimpleModel
6589
6301
  */
6590
- 'specialtyName'?: string | null;
6302
+ 'items'?: Array<HospitalSpecialtySimpleItemModel> | null;
6591
6303
  /**
6592
6304
  *
6593
- * @type {string}
6594
- * @memberof HospitalSpecialtyItemModel
6305
+ * @type {PagedListMetaData}
6306
+ * @memberof HospitalSpecialtiesSimpleModel
6595
6307
  */
6596
- 'specialtyTypeId'?: string;
6308
+ 'metaData'?: PagedListMetaData;
6309
+ }
6310
+ /**
6311
+ *
6312
+ * @export
6313
+ * @interface HospitalSpecialtyItemModel
6314
+ */
6315
+ export interface HospitalSpecialtyItemModel {
6597
6316
  /**
6598
6317
  *
6599
6318
  * @type {string}
6600
6319
  * @memberof HospitalSpecialtyItemModel
6601
6320
  */
6602
- 'specialtyTypeName'?: string | null;
6321
+ 'id'?: string;
6603
6322
  /**
6604
6323
  *
6605
- * @type {MarketingType}
6324
+ * @type {string}
6606
6325
  * @memberof HospitalSpecialtyItemModel
6607
6326
  */
6608
- 'marketingType'?: MarketingType;
6327
+ 'languageCode'?: string | null;
6609
6328
  /**
6610
6329
  *
6611
6330
  * @type {string}
@@ -6626,16 +6345,10 @@ export interface HospitalSpecialtyItemModel {
6626
6345
  'description'?: string | null;
6627
6346
  /**
6628
6347
  *
6629
- * @type {number}
6630
- * @memberof HospitalSpecialtyItemModel
6631
- */
6632
- 'serviceCount'?: number;
6633
- /**
6634
- *
6635
- * @type {Array<HospitalServiceItemModel>}
6348
+ * @type {boolean}
6636
6349
  * @memberof HospitalSpecialtyItemModel
6637
6350
  */
6638
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
6351
+ 'confirmed'?: boolean;
6639
6352
  /**
6640
6353
  *
6641
6354
  * @type {string}
@@ -6668,22 +6381,16 @@ export interface HospitalSpecialtyItemModel {
6668
6381
  'order'?: number;
6669
6382
  /**
6670
6383
  *
6671
- * @type {boolean}
6672
- * @memberof HospitalSpecialtyItemModel
6673
- */
6674
- 'confirmed'?: boolean;
6675
- /**
6676
- *
6677
- * @type {Array<MediaModel>}
6384
+ * @type {number}
6678
6385
  * @memberof HospitalSpecialtyItemModel
6679
6386
  */
6680
- 'medias'?: Array<MediaModel> | null;
6387
+ 'servicesCount'?: number;
6681
6388
  /**
6682
6389
  *
6683
- * @type {AuditableEntity}
6390
+ * @type {string}
6684
6391
  * @memberof HospitalSpecialtyItemModel
6685
6392
  */
6686
- 'auditableEntity'?: AuditableEntity;
6393
+ 'specialtyId'?: string;
6687
6394
  }
6688
6395
  /**
6689
6396
  *
@@ -6702,151 +6409,139 @@ export interface HospitalSpecialtyModel {
6702
6409
  * @type {string}
6703
6410
  * @memberof HospitalSpecialtyModel
6704
6411
  */
6705
- 'hospitalId'?: string;
6706
- /**
6707
- *
6708
- * @type {string}
6709
- * @memberof HospitalSpecialtyModel
6710
- */
6711
- 'hospitalName'?: string | null;
6412
+ 'languageCode'?: string | null;
6712
6413
  /**
6713
6414
  *
6714
6415
  * @type {string}
6715
6416
  * @memberof HospitalSpecialtyModel
6716
6417
  */
6717
- 'hospitalSlug'?: string | null;
6418
+ 'name'?: string | null;
6718
6419
  /**
6719
6420
  *
6720
6421
  * @type {string}
6721
6422
  * @memberof HospitalSpecialtyModel
6722
6423
  */
6723
- 'specialtyId'?: string;
6424
+ 'slug'?: string | null;
6724
6425
  /**
6725
6426
  *
6726
6427
  * @type {string}
6727
6428
  * @memberof HospitalSpecialtyModel
6728
6429
  */
6729
- 'specialtyName'?: string | null;
6430
+ 'description'?: string | null;
6730
6431
  /**
6731
6432
  *
6732
- * @type {string}
6433
+ * @type {boolean}
6733
6434
  * @memberof HospitalSpecialtyModel
6734
6435
  */
6735
- 'specialtyTypeId'?: string;
6436
+ 'confirmed'?: boolean;
6736
6437
  /**
6737
6438
  *
6738
6439
  * @type {string}
6739
6440
  * @memberof HospitalSpecialtyModel
6740
6441
  */
6741
- 'specialtyTypeName'?: string | null;
6742
- /**
6743
- *
6744
- * @type {MarketingType}
6745
- * @memberof HospitalSpecialtyModel
6746
- */
6747
- 'marketingType'?: MarketingType;
6442
+ 'photo'?: string | null;
6748
6443
  /**
6749
6444
  *
6750
6445
  * @type {string}
6751
6446
  * @memberof HospitalSpecialtyModel
6752
6447
  */
6753
- 'name'?: string | null;
6448
+ 'photoThumbnail'?: string | null;
6754
6449
  /**
6755
6450
  *
6756
6451
  * @type {string}
6757
6452
  * @memberof HospitalSpecialtyModel
6758
6453
  */
6759
- 'slug'?: string | null;
6454
+ 'background'?: string | null;
6760
6455
  /**
6761
6456
  *
6762
6457
  * @type {string}
6763
6458
  * @memberof HospitalSpecialtyModel
6764
6459
  */
6765
- 'description'?: string | null;
6460
+ 'backgroundThumbnail'?: string | null;
6766
6461
  /**
6767
6462
  *
6768
6463
  * @type {number}
6769
6464
  * @memberof HospitalSpecialtyModel
6770
6465
  */
6771
- 'serviceCount'?: number;
6466
+ 'order'?: number;
6772
6467
  /**
6773
6468
  *
6774
- * @type {Array<HospitalServiceItemModel>}
6469
+ * @type {number}
6775
6470
  * @memberof HospitalSpecialtyModel
6776
6471
  */
6777
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
6472
+ 'servicesCount'?: number;
6778
6473
  /**
6779
6474
  *
6780
6475
  * @type {string}
6781
6476
  * @memberof HospitalSpecialtyModel
6782
6477
  */
6783
- 'photo'?: string | null;
6478
+ 'specialtyId'?: string;
6784
6479
  /**
6785
6480
  *
6786
6481
  * @type {string}
6787
6482
  * @memberof HospitalSpecialtyModel
6788
6483
  */
6789
- 'photoThumbnail'?: string | null;
6484
+ 'hospitalId'?: string;
6790
6485
  /**
6791
6486
  *
6792
6487
  * @type {string}
6793
6488
  * @memberof HospitalSpecialtyModel
6794
6489
  */
6795
- 'background'?: string | null;
6490
+ 'customStyle'?: string | null;
6796
6491
  /**
6797
6492
  *
6798
6493
  * @type {string}
6799
6494
  * @memberof HospitalSpecialtyModel
6800
6495
  */
6801
- 'backgroundThumbnail'?: string | null;
6496
+ 'content'?: string | null;
6802
6497
  /**
6803
6498
  *
6804
- * @type {number}
6499
+ * @type {string}
6805
6500
  * @memberof HospitalSpecialtyModel
6806
6501
  */
6807
- 'order'?: number;
6502
+ 'hospitalName'?: string | null;
6808
6503
  /**
6809
6504
  *
6810
- * @type {boolean}
6505
+ * @type {string}
6811
6506
  * @memberof HospitalSpecialtyModel
6812
6507
  */
6813
- 'confirmed'?: boolean;
6508
+ 'hospitalSlug'?: string | null;
6814
6509
  /**
6815
6510
  *
6816
- * @type {Array<MediaModel>}
6511
+ * @type {string}
6817
6512
  * @memberof HospitalSpecialtyModel
6818
6513
  */
6819
- 'medias'?: Array<MediaModel> | null;
6514
+ 'specialtyName'?: string | null;
6820
6515
  /**
6821
6516
  *
6822
- * @type {AuditableEntity}
6517
+ * @type {string}
6823
6518
  * @memberof HospitalSpecialtyModel
6824
6519
  */
6825
- 'auditableEntity'?: AuditableEntity;
6520
+ 'specialtyTypeId'?: string;
6826
6521
  /**
6827
6522
  *
6828
6523
  * @type {string}
6829
6524
  * @memberof HospitalSpecialtyModel
6830
6525
  */
6831
- 'content'?: string | null;
6526
+ 'specialtyTypeName'?: string | null;
6832
6527
  /**
6833
6528
  *
6834
- * @type {string}
6529
+ * @type {MarketingType}
6835
6530
  * @memberof HospitalSpecialtyModel
6836
6531
  */
6837
- 'customStyle'?: string | null;
6532
+ 'marketingType'?: MarketingType;
6838
6533
  /**
6839
6534
  *
6840
- * @type {string}
6535
+ * @type {Array<LocalizedUrlModel>}
6841
6536
  * @memberof HospitalSpecialtyModel
6842
6537
  */
6843
- 'languageCode'?: string | null;
6538
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6844
6539
  /**
6845
6540
  *
6846
- * @type {Array<LocalizedUrlModel>}
6541
+ * @type {Array<MediaModel>}
6847
6542
  * @memberof HospitalSpecialtyModel
6848
6543
  */
6849
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6544
+ 'medias'?: Array<MediaModel> | null;
6850
6545
  }
6851
6546
  /**
6852
6547
  *
@@ -6860,6 +6555,12 @@ export interface HospitalSpecialtySimpleItemModel {
6860
6555
  * @memberof HospitalSpecialtySimpleItemModel
6861
6556
  */
6862
6557
  'id'?: string;
6558
+ /**
6559
+ *
6560
+ * @type {string}
6561
+ * @memberof HospitalSpecialtySimpleItemModel
6562
+ */
6563
+ 'languageCode'?: string | null;
6863
6564
  /**
6864
6565
  *
6865
6566
  * @type {string}
@@ -6880,10 +6581,10 @@ export interface HospitalSpecialtySimpleItemModel {
6880
6581
  'description'?: string | null;
6881
6582
  /**
6882
6583
  *
6883
- * @type {string}
6584
+ * @type {boolean}
6884
6585
  * @memberof HospitalSpecialtySimpleItemModel
6885
6586
  */
6886
- 'specialtyName'?: string | null;
6587
+ 'confirmed'?: boolean;
6887
6588
  /**
6888
6589
  *
6889
6590
  * @type {number}
@@ -6892,10 +6593,16 @@ export interface HospitalSpecialtySimpleItemModel {
6892
6593
  'order'?: number;
6893
6594
  /**
6894
6595
  *
6895
- * @type {boolean}
6596
+ * @type {number}
6896
6597
  * @memberof HospitalSpecialtySimpleItemModel
6897
6598
  */
6898
- 'confirmed'?: boolean;
6599
+ 'servicesCount'?: number;
6600
+ /**
6601
+ *
6602
+ * @type {string}
6603
+ * @memberof HospitalSpecialtySimpleItemModel
6604
+ */
6605
+ 'specialtyId'?: string;
6899
6606
  }
6900
6607
  /**
6901
6608
  *
@@ -7644,6 +7351,12 @@ export interface PatientModel {
7644
7351
  * @memberof PatientModel
7645
7352
  */
7646
7353
  'id'?: string;
7354
+ /**
7355
+ *
7356
+ * @type {string}
7357
+ * @memberof PatientModel
7358
+ */
7359
+ 'languageCode'?: string | null;
7647
7360
  /**
7648
7361
  *
7649
7362
  * @type {string}
@@ -7682,16 +7395,16 @@ export interface PatientModel {
7682
7395
  'slug'?: string | null;
7683
7396
  /**
7684
7397
  *
7685
- * @type {string}
7398
+ * @type {boolean}
7686
7399
  * @memberof PatientModel
7687
7400
  */
7688
- 'phone'?: string | null;
7401
+ 'confirmed'?: boolean;
7689
7402
  /**
7690
7403
  *
7691
7404
  * @type {string}
7692
7405
  * @memberof PatientModel
7693
7406
  */
7694
- 'email'?: string | null;
7407
+ 'userType'?: string | null;
7695
7408
  /**
7696
7409
  *
7697
7410
  * @type {string}
@@ -7706,40 +7419,46 @@ export interface PatientModel {
7706
7419
  'photoThumbnail'?: string | null;
7707
7420
  /**
7708
7421
  *
7709
- * @type {Gender}
7422
+ * @type {AuditableEntity}
7710
7423
  * @memberof PatientModel
7711
7424
  */
7712
- 'gender'?: Gender;
7425
+ 'auditableEntity'?: AuditableEntity;
7713
7426
  /**
7714
7427
  *
7715
- * @type {Date}
7428
+ * @type {string}
7716
7429
  * @memberof PatientModel
7717
7430
  */
7718
- 'dateOfBirth'?: Date | null;
7431
+ 'phone'?: string | null;
7719
7432
  /**
7720
7433
  *
7721
7434
  * @type {string}
7722
7435
  * @memberof PatientModel
7723
7436
  */
7724
- 'timeZone'?: string | null;
7437
+ 'email'?: string | null;
7725
7438
  /**
7726
7439
  *
7727
- * @type {string}
7440
+ * @type {Gender}
7728
7441
  * @memberof PatientModel
7729
7442
  */
7730
- 'communicationUserId'?: string | null;
7443
+ 'gender'?: Gender;
7731
7444
  /**
7732
7445
  *
7733
- * @type {AuditableEntity}
7446
+ * @type {Date}
7734
7447
  * @memberof PatientModel
7735
7448
  */
7736
- 'auditableEntity'?: AuditableEntity;
7449
+ 'dateOfBirth'?: Date | null;
7737
7450
  /**
7738
7451
  *
7739
7452
  * @type {string}
7740
7453
  * @memberof PatientModel
7741
7454
  */
7742
- 'userType'?: string | null;
7455
+ 'timeZone'?: string | null;
7456
+ /**
7457
+ *
7458
+ * @type {string}
7459
+ * @memberof PatientModel
7460
+ */
7461
+ 'communicationUserId'?: string | null;
7743
7462
  /**
7744
7463
  *
7745
7464
  * @type {Array<UserLanguageModel>}
@@ -9834,6 +9553,12 @@ export interface UserModel {
9834
9553
  * @memberof UserModel
9835
9554
  */
9836
9555
  'id'?: string;
9556
+ /**
9557
+ *
9558
+ * @type {string}
9559
+ * @memberof UserModel
9560
+ */
9561
+ 'languageCode'?: string | null;
9837
9562
  /**
9838
9563
  *
9839
9564
  * @type {string}
@@ -9872,16 +9597,16 @@ export interface UserModel {
9872
9597
  'slug'?: string | null;
9873
9598
  /**
9874
9599
  *
9875
- * @type {string}
9600
+ * @type {boolean}
9876
9601
  * @memberof UserModel
9877
9602
  */
9878
- 'phone'?: string | null;
9603
+ 'confirmed'?: boolean;
9879
9604
  /**
9880
9605
  *
9881
9606
  * @type {string}
9882
9607
  * @memberof UserModel
9883
9608
  */
9884
- 'email'?: string | null;
9609
+ 'userType'?: string | null;
9885
9610
  /**
9886
9611
  *
9887
9612
  * @type {string}
@@ -9896,40 +9621,46 @@ export interface UserModel {
9896
9621
  'photoThumbnail'?: string | null;
9897
9622
  /**
9898
9623
  *
9899
- * @type {Gender}
9624
+ * @type {AuditableEntity}
9900
9625
  * @memberof UserModel
9901
9626
  */
9902
- 'gender'?: Gender;
9627
+ 'auditableEntity'?: AuditableEntity;
9903
9628
  /**
9904
9629
  *
9905
- * @type {Date}
9630
+ * @type {string}
9906
9631
  * @memberof UserModel
9907
9632
  */
9908
- 'dateOfBirth'?: Date | null;
9633
+ 'phone'?: string | null;
9909
9634
  /**
9910
9635
  *
9911
9636
  * @type {string}
9912
9637
  * @memberof UserModel
9913
9638
  */
9914
- 'timeZone'?: string | null;
9639
+ 'email'?: string | null;
9915
9640
  /**
9916
9641
  *
9917
- * @type {string}
9642
+ * @type {Gender}
9918
9643
  * @memberof UserModel
9919
9644
  */
9920
- 'communicationUserId'?: string | null;
9645
+ 'gender'?: Gender;
9921
9646
  /**
9922
9647
  *
9923
- * @type {AuditableEntity}
9648
+ * @type {Date}
9924
9649
  * @memberof UserModel
9925
9650
  */
9926
- 'auditableEntity'?: AuditableEntity;
9651
+ 'dateOfBirth'?: Date | null;
9927
9652
  /**
9928
9653
  *
9929
9654
  * @type {string}
9930
9655
  * @memberof UserModel
9931
9656
  */
9932
- 'userType'?: string | null;
9657
+ 'timeZone'?: string | null;
9658
+ /**
9659
+ *
9660
+ * @type {string}
9661
+ * @memberof UserModel
9662
+ */
9663
+ 'communicationUserId'?: string | null;
9933
9664
  /**
9934
9665
  *
9935
9666
  * @type {Array<UserLanguageModel>}
@@ -16307,13 +16038,15 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
16307
16038
  * @param {string} [doctorName]
16308
16039
  * @param {string} [specialtyId]
16309
16040
  * @param {string} [specialtyName]
16041
+ * @param {string} [languageCode]
16042
+ * @param {boolean} [showHidden]
16310
16043
  * @param {number} [page]
16311
16044
  * @param {number} [limit]
16312
16045
  * @param {Date} [lastRetrieved]
16313
16046
  * @param {*} [options] Override http request option.
16314
16047
  * @throws {RequiredError}
16315
16048
  */
16316
- apiV2DoctorsDoctorIdSpecialtiesGet: async (doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
16049
+ apiV2DoctorsDoctorIdSpecialtiesGet: async (doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
16317
16050
  // verify required parameter 'doctorId' is not null or undefined
16318
16051
  assertParamExists('apiV2DoctorsDoctorIdSpecialtiesGet', 'doctorId', doctorId)
16319
16052
  const localVarPath = `/api/v2/doctors/{doctorId}/specialties`
@@ -16341,6 +16074,14 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
16341
16074
  localVarQueryParameter['SpecialtyName'] = specialtyName;
16342
16075
  }
16343
16076
 
16077
+ if (languageCode !== undefined) {
16078
+ localVarQueryParameter['LanguageCode'] = languageCode;
16079
+ }
16080
+
16081
+ if (showHidden !== undefined) {
16082
+ localVarQueryParameter['ShowHidden'] = showHidden;
16083
+ }
16084
+
16344
16085
  if (page !== undefined) {
16345
16086
  localVarQueryParameter['page'] = page;
16346
16087
  }
@@ -16371,10 +16112,11 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
16371
16112
  * @summary Get DoctorSpecialty
16372
16113
  * @param {string} doctorId
16373
16114
  * @param {string} specialtyId
16115
+ * @param {string} [languageCode]
16374
16116
  * @param {*} [options] Override http request option.
16375
16117
  * @throws {RequiredError}
16376
16118
  */
16377
- apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: async (doctorId: string, specialtyId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
16119
+ apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: async (doctorId: string, specialtyId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
16378
16120
  // verify required parameter 'doctorId' is not null or undefined
16379
16121
  assertParamExists('apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet', 'doctorId', doctorId)
16380
16122
  // verify required parameter 'specialtyId' is not null or undefined
@@ -16393,6 +16135,10 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
16393
16135
  const localVarHeaderParameter = {} as any;
16394
16136
  const localVarQueryParameter = {} as any;
16395
16137
 
16138
+ if (languageCode !== undefined) {
16139
+ localVarQueryParameter['languageCode'] = languageCode;
16140
+ }
16141
+
16396
16142
 
16397
16143
 
16398
16144
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -16891,14 +16637,16 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
16891
16637
  * @param {string} [doctorName]
16892
16638
  * @param {string} [specialtyId]
16893
16639
  * @param {string} [specialtyName]
16640
+ * @param {string} [languageCode]
16641
+ * @param {boolean} [showHidden]
16894
16642
  * @param {number} [page]
16895
16643
  * @param {number} [limit]
16896
16644
  * @param {Date} [lastRetrieved]
16897
16645
  * @param {*} [options] Override http request option.
16898
16646
  * @throws {RequiredError}
16899
16647
  */
16900
- 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>> {
16901
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options);
16648
+ 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>> {
16649
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, showHidden, page, limit, lastRetrieved, options);
16902
16650
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
16903
16651
  },
16904
16652
  /**
@@ -16906,11 +16654,12 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
16906
16654
  * @summary Get DoctorSpecialty
16907
16655
  * @param {string} doctorId
16908
16656
  * @param {string} specialtyId
16657
+ * @param {string} [languageCode]
16909
16658
  * @param {*} [options] Override http request option.
16910
16659
  * @throws {RequiredError}
16911
16660
  */
16912
- async apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorSpecialtyModel>> {
16913
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, options);
16661
+ async apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorSpecialtyModel>> {
16662
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, languageCode, options);
16914
16663
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
16915
16664
  },
16916
16665
  /**
@@ -17168,25 +16917,28 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
17168
16917
  * @param {string} [doctorName]
17169
16918
  * @param {string} [specialtyId]
17170
16919
  * @param {string} [specialtyName]
16920
+ * @param {string} [languageCode]
16921
+ * @param {boolean} [showHidden]
17171
16922
  * @param {number} [page]
17172
16923
  * @param {number} [limit]
17173
16924
  * @param {Date} [lastRetrieved]
17174
16925
  * @param {*} [options] Override http request option.
17175
16926
  * @throws {RequiredError}
17176
16927
  */
17177
- apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorSpecialtiesModel> {
17178
- return localVarFp.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
16928
+ apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorSpecialtiesModel> {
16929
+ return localVarFp.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
17179
16930
  },
17180
16931
  /**
17181
16932
  *
17182
16933
  * @summary Get DoctorSpecialty
17183
16934
  * @param {string} doctorId
17184
16935
  * @param {string} specialtyId
16936
+ * @param {string} [languageCode]
17185
16937
  * @param {*} [options] Override http request option.
17186
16938
  * @throws {RequiredError}
17187
16939
  */
17188
- apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel> {
17189
- return localVarFp.apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, options).then((request) => request(axios, basePath));
16940
+ apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string, options?: any): AxiosPromise<DoctorSpecialtyModel> {
16941
+ return localVarFp.apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, languageCode, options).then((request) => request(axios, basePath));
17190
16942
  },
17191
16943
  /**
17192
16944
  *
@@ -17466,6 +17218,8 @@ export class DoctorsApi extends BaseAPI {
17466
17218
  * @param {string} [doctorName]
17467
17219
  * @param {string} [specialtyId]
17468
17220
  * @param {string} [specialtyName]
17221
+ * @param {string} [languageCode]
17222
+ * @param {boolean} [showHidden]
17469
17223
  * @param {number} [page]
17470
17224
  * @param {number} [limit]
17471
17225
  * @param {Date} [lastRetrieved]
@@ -17473,8 +17227,8 @@ export class DoctorsApi extends BaseAPI {
17473
17227
  * @throws {RequiredError}
17474
17228
  * @memberof DoctorsApi
17475
17229
  */
17476
- public apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
17477
- return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
17230
+ public apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
17231
+ return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
17478
17232
  }
17479
17233
 
17480
17234
  /**
@@ -17482,12 +17236,13 @@ export class DoctorsApi extends BaseAPI {
17482
17236
  * @summary Get DoctorSpecialty
17483
17237
  * @param {string} doctorId
17484
17238
  * @param {string} specialtyId
17239
+ * @param {string} [languageCode]
17485
17240
  * @param {*} [options] Override http request option.
17486
17241
  * @throws {RequiredError}
17487
17242
  * @memberof DoctorsApi
17488
17243
  */
17489
- public apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig) {
17490
- return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, options).then((request) => request(this.axios, this.basePath));
17244
+ public apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig) {
17245
+ return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, languageCode, options).then((request) => request(this.axios, this.basePath));
17491
17246
  }
17492
17247
 
17493
17248
  /**