ch-api-client-typescript2 3.3.1 → 3.3.4

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
@@ -4138,31 +4138,7 @@ export interface DoctorItemModel {
4138
4138
  * @type {string}
4139
4139
  * @memberof DoctorItemModel
4140
4140
  */
4141
- 'userName'?: string | null;
4142
- /**
4143
- *
4144
- * @type {string}
4145
- * @memberof DoctorItemModel
4146
- */
4147
- 'firstName'?: string | null;
4148
- /**
4149
- *
4150
- * @type {string}
4151
- * @memberof DoctorItemModel
4152
- */
4153
- 'middleName'?: string | null;
4154
- /**
4155
- *
4156
- * @type {string}
4157
- * @memberof DoctorItemModel
4158
- */
4159
- 'lastName'?: string | null;
4160
- /**
4161
- *
4162
- * @type {string}
4163
- * @memberof DoctorItemModel
4164
- */
4165
- 'fullName'?: string | null;
4141
+ 'name'?: string | null;
4166
4142
  /**
4167
4143
  *
4168
4144
  * @type {string}
@@ -4171,106 +4147,34 @@ export interface DoctorItemModel {
4171
4147
  'slug'?: string | null;
4172
4148
  /**
4173
4149
  *
4174
- * @type {string}
4175
- * @memberof DoctorItemModel
4176
- */
4177
- 'phone'?: string | null;
4178
- /**
4179
- *
4180
- * @type {string}
4181
- * @memberof DoctorItemModel
4182
- */
4183
- 'email'?: string | null;
4184
- /**
4185
- *
4186
- * @type {string}
4187
- * @memberof DoctorItemModel
4188
- */
4189
- 'photo'?: string | null;
4190
- /**
4191
- *
4192
- * @type {string}
4193
- * @memberof DoctorItemModel
4194
- */
4195
- '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
- /**
4221
- *
4222
- * @type {AuditableEntity}
4223
- * @memberof DoctorItemModel
4224
- */
4225
- 'auditableEntity'?: AuditableEntity;
4226
- /**
4227
- *
4228
- * @type {string}
4229
- * @memberof DoctorItemModel
4230
- */
4231
- 'hospitalId'?: string | null;
4232
- /**
4233
- *
4234
- * @type {string}
4235
- * @memberof DoctorItemModel
4236
- */
4237
- 'hospitalName'?: string | null;
4238
- /**
4239
- *
4240
- * @type {string}
4241
- * @memberof DoctorItemModel
4242
- */
4243
- 'hospitalSlug'?: string | null;
4244
- /**
4245
- *
4246
- * @type {Date}
4150
+ * @type {boolean}
4247
4151
  * @memberof DoctorItemModel
4248
4152
  */
4249
- 'startPracticeDate'?: Date | null;
4153
+ 'consultationEnabled'?: boolean | null;
4250
4154
  /**
4251
4155
  *
4252
- * @type {string}
4156
+ * @type {number}
4253
4157
  * @memberof DoctorItemModel
4254
4158
  */
4255
- 'overview'?: string | null;
4159
+ 'consultationFee'?: number | null;
4256
4160
  /**
4257
4161
  *
4258
4162
  * @type {boolean}
4259
4163
  * @memberof DoctorItemModel
4260
4164
  */
4261
- 'consultationEnabled'?: boolean | null;
4165
+ 'confirmed'?: boolean;
4262
4166
  /**
4263
4167
  *
4264
- * @type {number}
4168
+ * @type {Array<DoctorSpecialtyItemModel>}
4265
4169
  * @memberof DoctorItemModel
4266
4170
  */
4267
- 'consultationFee'?: number | null;
4171
+ 'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
4268
4172
  /**
4269
4173
  *
4270
- * @type {boolean}
4174
+ * @type {Array<DoctorAffiliationItemModel>}
4271
4175
  * @memberof DoctorItemModel
4272
4176
  */
4273
- 'confirmed'?: boolean;
4177
+ 'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
4274
4178
  }
4275
4179
  /**
4276
4180
  *
@@ -4467,24 +4371,6 @@ export interface DoctorModel {
4467
4371
  * @memberof DoctorModel
4468
4372
  */
4469
4373
  'languageCode'?: string | null;
4470
- /**
4471
- *
4472
- * @type {string}
4473
- * @memberof DoctorModel
4474
- */
4475
- 'hospitalId'?: string | null;
4476
- /**
4477
- *
4478
- * @type {string}
4479
- * @memberof DoctorModel
4480
- */
4481
- 'hospitalName'?: string | null;
4482
- /**
4483
- *
4484
- * @type {string}
4485
- * @memberof DoctorModel
4486
- */
4487
- 'hospitalSlug'?: string | null;
4488
4374
  /**
4489
4375
  *
4490
4376
  * @type {Date}
@@ -4527,6 +4413,24 @@ export interface DoctorModel {
4527
4413
  * @memberof DoctorModel
4528
4414
  */
4529
4415
  'confirmed'?: boolean;
4416
+ /**
4417
+ *
4418
+ * @type {Array<DoctorSpecialtyItemModel>}
4419
+ * @memberof DoctorModel
4420
+ */
4421
+ 'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
4422
+ /**
4423
+ *
4424
+ * @type {Array<DoctorAffiliationModel>}
4425
+ * @memberof DoctorModel
4426
+ */
4427
+ 'doctorAffiliations'?: Array<DoctorAffiliationModel> | null;
4428
+ /**
4429
+ *
4430
+ * @type {Array<UserTranslationModel>}
4431
+ * @memberof DoctorModel
4432
+ */
4433
+ 'translations'?: Array<UserTranslationModel> | null;
4530
4434
  /**
4531
4435
  *
4532
4436
  * @type {Array<LocalizedUrlModel>}
@@ -4722,57 +4626,64 @@ export interface DoctorSpecialtiesModel {
4722
4626
  /**
4723
4627
  *
4724
4628
  * @export
4725
- * @interface DoctorSpecialtyModel
4629
+ * @interface DoctorSpecialtyItemModel
4726
4630
  */
4727
- export interface DoctorSpecialtyModel {
4631
+ export interface DoctorSpecialtyItemModel {
4728
4632
  /**
4729
4633
  *
4730
4634
  * @type {string}
4731
- * @memberof DoctorSpecialtyModel
4635
+ * @memberof DoctorSpecialtyItemModel
4732
4636
  */
4733
4637
  'specialtyId'?: string;
4734
4638
  /**
4735
4639
  *
4736
4640
  * @type {string}
4737
- * @memberof DoctorSpecialtyModel
4641
+ * @memberof DoctorSpecialtyItemModel
4738
4642
  */
4739
4643
  'specialtyName'?: string | null;
4740
4644
  /**
4741
4645
  *
4742
4646
  * @type {string}
4743
- * @memberof DoctorSpecialtyModel
4647
+ * @memberof DoctorSpecialtyItemModel
4744
4648
  */
4745
4649
  'specialtySlug'?: string | null;
4746
4650
  /**
4747
4651
  *
4748
- * @type {string}
4749
- * @memberof DoctorSpecialtyModel
4652
+ * @type {number}
4653
+ * @memberof DoctorSpecialtyItemModel
4750
4654
  */
4751
- 'specialtyTypeId'?: string;
4655
+ 'order'?: number;
4656
+ }
4657
+ /**
4658
+ *
4659
+ * @export
4660
+ * @interface DoctorSpecialtyModel
4661
+ */
4662
+ export interface DoctorSpecialtyModel {
4752
4663
  /**
4753
4664
  *
4754
4665
  * @type {string}
4755
4666
  * @memberof DoctorSpecialtyModel
4756
4667
  */
4757
- 'specialtyTypeName'?: string | null;
4668
+ 'specialtyId'?: string;
4758
4669
  /**
4759
4670
  *
4760
- * @type {number}
4671
+ * @type {string}
4761
4672
  * @memberof DoctorSpecialtyModel
4762
4673
  */
4763
- 'order'?: number;
4674
+ 'specialtyName'?: string | null;
4764
4675
  /**
4765
4676
  *
4766
4677
  * @type {string}
4767
4678
  * @memberof DoctorSpecialtyModel
4768
4679
  */
4769
- 'doctorId'?: string;
4680
+ 'specialtySlug'?: string | null;
4770
4681
  /**
4771
4682
  *
4772
- * @type {string}
4683
+ * @type {number}
4773
4684
  * @memberof DoctorSpecialtyModel
4774
4685
  */
4775
- 'doctorName'?: string | null;
4686
+ 'order'?: number;
4776
4687
  }
4777
4688
  /**
4778
4689
  *
@@ -5508,24 +5419,6 @@ export interface HospitalEquipmentsModel {
5508
5419
  * @interface HospitalEvaluationItemModel
5509
5420
  */
5510
5421
  export interface HospitalEvaluationItemModel {
5511
- /**
5512
- *
5513
- * @type {string}
5514
- * @memberof HospitalEvaluationItemModel
5515
- */
5516
- 'id'?: string;
5517
- /**
5518
- *
5519
- * @type {string}
5520
- * @memberof HospitalEvaluationItemModel
5521
- */
5522
- 'hospitalId'?: string;
5523
- /**
5524
- *
5525
- * @type {string}
5526
- * @memberof HospitalEvaluationItemModel
5527
- */
5528
- 'hospitalName'?: string | null;
5529
5422
  /**
5530
5423
  *
5531
5424
  * @type {string}
@@ -5538,18 +5431,6 @@ export interface HospitalEvaluationItemModel {
5538
5431
  * @memberof HospitalEvaluationItemModel
5539
5432
  */
5540
5433
  'stars'?: number;
5541
- /**
5542
- *
5543
- * @type {string}
5544
- * @memberof HospitalEvaluationItemModel
5545
- */
5546
- 'description'?: string | null;
5547
- /**
5548
- *
5549
- * @type {string}
5550
- * @memberof HospitalEvaluationItemModel
5551
- */
5552
- 'referenceUrl'?: string | null;
5553
5434
  }
5554
5435
  /**
5555
5436
  *
@@ -5557,24 +5438,6 @@ export interface HospitalEvaluationItemModel {
5557
5438
  * @interface HospitalEvaluationModel
5558
5439
  */
5559
5440
  export interface HospitalEvaluationModel {
5560
- /**
5561
- *
5562
- * @type {string}
5563
- * @memberof HospitalEvaluationModel
5564
- */
5565
- 'id'?: string;
5566
- /**
5567
- *
5568
- * @type {string}
5569
- * @memberof HospitalEvaluationModel
5570
- */
5571
- 'hospitalId'?: string;
5572
- /**
5573
- *
5574
- * @type {string}
5575
- * @memberof HospitalEvaluationModel
5576
- */
5577
- 'hospitalName'?: string | null;
5578
5441
  /**
5579
5442
  *
5580
5443
  * @type {string}
@@ -5636,73 +5499,31 @@ export interface HospitalItemModel {
5636
5499
  * @type {string}
5637
5500
  * @memberof HospitalItemModel
5638
5501
  */
5639
- 'name'?: string | null;
5640
- /**
5641
- *
5642
- * @type {string}
5643
- * @memberof HospitalItemModel
5644
- */
5645
- 'slug'?: string | null;
5646
- /**
5647
- *
5648
- * @type {string}
5649
- * @memberof HospitalItemModel
5650
- */
5651
- 'description'?: string | null;
5502
+ 'languageCode'?: string | null;
5652
5503
  /**
5653
5504
  *
5654
5505
  * @type {string}
5655
5506
  * @memberof HospitalItemModel
5656
5507
  */
5657
- 'logo'?: string | null;
5508
+ 'name'?: string | null;
5658
5509
  /**
5659
5510
  *
5660
5511
  * @type {string}
5661
5512
  * @memberof HospitalItemModel
5662
5513
  */
5663
- 'overview'?: string | null;
5664
- /**
5665
- *
5666
- * @type {number}
5667
- * @memberof HospitalItemModel
5668
- */
5669
- 'bedsCount'?: number | null;
5670
- /**
5671
- *
5672
- * @type {number}
5673
- * @memberof HospitalItemModel
5674
- */
5675
- 'operationsPerYear'?: number | null;
5676
- /**
5677
- *
5678
- * @type {number}
5679
- * @memberof HospitalItemModel
5680
- */
5681
- 'foundationYear'?: number | null;
5682
- /**
5683
- *
5684
- * @type {number}
5685
- * @memberof HospitalItemModel
5686
- */
5687
- 'medicalStaffCount'?: number | null;
5688
- /**
5689
- *
5690
- * @type {number}
5691
- * @memberof HospitalItemModel
5692
- */
5693
- 'doctorCount'?: number | null;
5514
+ 'slug'?: string | null;
5694
5515
  /**
5695
5516
  *
5696
- * @type {string}
5517
+ * @type {boolean}
5697
5518
  * @memberof HospitalItemModel
5698
5519
  */
5699
- 'countryId'?: string;
5520
+ 'confirmed'?: boolean;
5700
5521
  /**
5701
5522
  *
5702
5523
  * @type {string}
5703
5524
  * @memberof HospitalItemModel
5704
5525
  */
5705
- 'countryName'?: string | null;
5526
+ 'logo'?: string | null;
5706
5527
  /**
5707
5528
  *
5708
5529
  * @type {MarketingType}
@@ -5735,58 +5556,10 @@ export interface HospitalItemModel {
5735
5556
  'websiteUrl'?: string | null;
5736
5557
  /**
5737
5558
  *
5738
- * @type {number}
5739
- * @memberof HospitalItemModel
5740
- */
5741
- 'articlesCount'?: number;
5742
- /**
5743
- *
5744
- * @type {number}
5745
- * @memberof HospitalItemModel
5746
- */
5747
- 'packagesCount'?: number;
5748
- /**
5749
- *
5750
- * @type {number}
5751
- * @memberof HospitalItemModel
5752
- */
5753
- 'equipmentsCount'?: number;
5754
- /**
5755
- *
5756
- * @type {number}
5757
- * @memberof HospitalItemModel
5758
- */
5759
- 'reviewsCount'?: number;
5760
- /**
5761
- *
5762
- * @type {number}
5763
- * @memberof HospitalItemModel
5764
- */
5765
- 'departmentsCount'?: number;
5766
- /**
5767
- *
5768
- * @type {number}
5769
- * @memberof HospitalItemModel
5770
- */
5771
- 'specialtiesCount'?: number;
5772
- /**
5773
- *
5774
- * @type {number}
5775
- * @memberof HospitalItemModel
5776
- */
5777
- 'accreditationsCount'?: number;
5778
- /**
5779
- *
5780
- * @type {number}
5781
- * @memberof HospitalItemModel
5782
- */
5783
- 'doctorAffiliationsCount'?: number;
5784
- /**
5785
- *
5786
- * @type {number}
5559
+ * @type {boolean}
5787
5560
  * @memberof HospitalItemModel
5788
5561
  */
5789
- 'managerAffiliationsCount'?: number;
5562
+ 'paymentEnabled'?: boolean;
5790
5563
  /**
5791
5564
  *
5792
5565
  * @type {string}
@@ -5795,52 +5568,28 @@ export interface HospitalItemModel {
5795
5568
  'specialtiesSummerized'?: string | null;
5796
5569
  /**
5797
5570
  *
5798
- * @type {boolean}
5799
- * @memberof HospitalItemModel
5800
- */
5801
- 'paymentEnabled'?: boolean;
5802
- /**
5803
- *
5804
- * @type {boolean}
5571
+ * @type {string}
5805
5572
  * @memberof HospitalItemModel
5806
5573
  */
5807
- 'confirmed'?: boolean;
5574
+ 'countryId'?: string;
5808
5575
  /**
5809
5576
  *
5810
- * @type {Array<AwardModel>}
5577
+ * @type {Array<HospitalAccreditationItemModel>}
5811
5578
  * @memberof HospitalItemModel
5812
5579
  */
5813
- 'awards'?: Array<AwardModel> | null;
5580
+ 'accreditations'?: Array<HospitalAccreditationItemModel> | null;
5814
5581
  /**
5815
5582
  *
5816
5583
  * @type {Array<MediaModel>}
5817
5584
  * @memberof HospitalItemModel
5818
5585
  */
5819
5586
  'medias'?: Array<MediaModel> | null;
5820
- /**
5821
- *
5822
- * @type {Array<AccreditationModel>}
5823
- * @memberof HospitalItemModel
5824
- */
5825
- 'accreditations'?: Array<AccreditationModel> | null;
5826
- /**
5827
- *
5828
- * @type {Array<HospitalEvaluationModel>}
5829
- * @memberof HospitalItemModel
5830
- */
5831
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
5832
5587
  /**
5833
5588
  *
5834
5589
  * @type {LocationModel}
5835
5590
  * @memberof HospitalItemModel
5836
5591
  */
5837
5592
  'location'?: LocationModel;
5838
- /**
5839
- *
5840
- * @type {AuditableEntity}
5841
- * @memberof HospitalItemModel
5842
- */
5843
- 'auditableEntity'?: AuditableEntity;
5844
5593
  }
5845
5594
  /**
5846
5595
  *
@@ -5859,73 +5608,31 @@ export interface HospitalModel {
5859
5608
  * @type {string}
5860
5609
  * @memberof HospitalModel
5861
5610
  */
5862
- 'name'?: string | null;
5863
- /**
5864
- *
5865
- * @type {string}
5866
- * @memberof HospitalModel
5867
- */
5868
- 'slug'?: string | null;
5869
- /**
5870
- *
5871
- * @type {string}
5872
- * @memberof HospitalModel
5873
- */
5874
- 'description'?: string | null;
5611
+ 'languageCode'?: string | null;
5875
5612
  /**
5876
5613
  *
5877
5614
  * @type {string}
5878
5615
  * @memberof HospitalModel
5879
5616
  */
5880
- 'logo'?: string | null;
5617
+ 'name'?: string | null;
5881
5618
  /**
5882
5619
  *
5883
5620
  * @type {string}
5884
5621
  * @memberof HospitalModel
5885
5622
  */
5886
- 'overview'?: string | null;
5887
- /**
5888
- *
5889
- * @type {number}
5890
- * @memberof HospitalModel
5891
- */
5892
- 'bedsCount'?: number | null;
5893
- /**
5894
- *
5895
- * @type {number}
5896
- * @memberof HospitalModel
5897
- */
5898
- 'operationsPerYear'?: number | null;
5899
- /**
5900
- *
5901
- * @type {number}
5902
- * @memberof HospitalModel
5903
- */
5904
- 'foundationYear'?: number | null;
5905
- /**
5906
- *
5907
- * @type {number}
5908
- * @memberof HospitalModel
5909
- */
5910
- 'medicalStaffCount'?: number | null;
5911
- /**
5912
- *
5913
- * @type {number}
5914
- * @memberof HospitalModel
5915
- */
5916
- 'doctorCount'?: number | null;
5623
+ 'slug'?: string | null;
5917
5624
  /**
5918
5625
  *
5919
- * @type {string}
5626
+ * @type {boolean}
5920
5627
  * @memberof HospitalModel
5921
5628
  */
5922
- 'countryId'?: string;
5629
+ 'confirmed'?: boolean;
5923
5630
  /**
5924
5631
  *
5925
5632
  * @type {string}
5926
5633
  * @memberof HospitalModel
5927
5634
  */
5928
- 'countryName'?: string | null;
5635
+ 'logo'?: string | null;
5929
5636
  /**
5930
5637
  *
5931
5638
  * @type {MarketingType}
@@ -5958,124 +5665,94 @@ export interface HospitalModel {
5958
5665
  'websiteUrl'?: string | null;
5959
5666
  /**
5960
5667
  *
5961
- * @type {number}
5962
- * @memberof HospitalModel
5963
- */
5964
- 'articlesCount'?: number;
5965
- /**
5966
- *
5967
- * @type {number}
5968
- * @memberof HospitalModel
5969
- */
5970
- 'packagesCount'?: number;
5971
- /**
5972
- *
5973
- * @type {number}
5974
- * @memberof HospitalModel
5975
- */
5976
- 'equipmentsCount'?: number;
5977
- /**
5978
- *
5979
- * @type {number}
5668
+ * @type {boolean}
5980
5669
  * @memberof HospitalModel
5981
5670
  */
5982
- 'reviewsCount'?: number;
5671
+ 'paymentEnabled'?: boolean;
5983
5672
  /**
5984
5673
  *
5985
- * @type {number}
5674
+ * @type {string}
5986
5675
  * @memberof HospitalModel
5987
5676
  */
5988
- 'departmentsCount'?: number;
5677
+ 'specialtiesSummerized'?: string | null;
5989
5678
  /**
5990
5679
  *
5991
- * @type {number}
5680
+ * @type {string}
5992
5681
  * @memberof HospitalModel
5993
5682
  */
5994
- 'specialtiesCount'?: number;
5683
+ 'countryId'?: string;
5995
5684
  /**
5996
5685
  *
5997
- * @type {number}
5686
+ * @type {Array<HospitalAccreditationItemModel>}
5998
5687
  * @memberof HospitalModel
5999
5688
  */
6000
- 'accreditationsCount'?: number;
5689
+ 'accreditations'?: Array<HospitalAccreditationItemModel> | null;
6001
5690
  /**
6002
5691
  *
6003
- * @type {number}
5692
+ * @type {Array<MediaModel>}
6004
5693
  * @memberof HospitalModel
6005
5694
  */
6006
- 'doctorAffiliationsCount'?: number;
5695
+ 'medias'?: Array<MediaModel> | null;
6007
5696
  /**
6008
5697
  *
6009
- * @type {number}
5698
+ * @type {LocationModel}
6010
5699
  * @memberof HospitalModel
6011
5700
  */
6012
- 'managerAffiliationsCount'?: number;
5701
+ 'location'?: LocationModel;
6013
5702
  /**
6014
5703
  *
6015
5704
  * @type {string}
6016
5705
  * @memberof HospitalModel
6017
5706
  */
6018
- 'specialtiesSummerized'?: string | null;
6019
- /**
6020
- *
6021
- * @type {boolean}
6022
- * @memberof HospitalModel
6023
- */
6024
- 'paymentEnabled'?: boolean;
6025
- /**
6026
- *
6027
- * @type {boolean}
6028
- * @memberof HospitalModel
6029
- */
6030
- 'confirmed'?: boolean;
5707
+ 'description'?: string | null;
6031
5708
  /**
6032
5709
  *
6033
- * @type {Array<AwardModel>}
5710
+ * @type {string}
6034
5711
  * @memberof HospitalModel
6035
5712
  */
6036
- 'awards'?: Array<AwardModel> | null;
5713
+ 'overview'?: string | null;
6037
5714
  /**
6038
5715
  *
6039
- * @type {Array<MediaModel>}
5716
+ * @type {string}
6040
5717
  * @memberof HospitalModel
6041
5718
  */
6042
- 'medias'?: Array<MediaModel> | null;
5719
+ 'content'?: string | null;
6043
5720
  /**
6044
5721
  *
6045
- * @type {Array<AccreditationModel>}
5722
+ * @type {Array<LocalizedUrlModel>}
6046
5723
  * @memberof HospitalModel
6047
5724
  */
6048
- 'accreditations'?: Array<AccreditationModel> | null;
5725
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6049
5726
  /**
6050
5727
  *
6051
- * @type {Array<HospitalEvaluationModel>}
5728
+ * @type {number}
6052
5729
  * @memberof HospitalModel
6053
5730
  */
6054
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
5731
+ 'bedsCount'?: number | null;
6055
5732
  /**
6056
5733
  *
6057
- * @type {LocationModel}
5734
+ * @type {number}
6058
5735
  * @memberof HospitalModel
6059
5736
  */
6060
- 'location'?: LocationModel;
5737
+ 'operationsPerYear'?: number | null;
6061
5738
  /**
6062
5739
  *
6063
- * @type {AuditableEntity}
5740
+ * @type {number}
6064
5741
  * @memberof HospitalModel
6065
5742
  */
6066
- 'auditableEntity'?: AuditableEntity;
5743
+ 'foundationYear'?: number | null;
6067
5744
  /**
6068
5745
  *
6069
- * @type {string}
5746
+ * @type {number}
6070
5747
  * @memberof HospitalModel
6071
5748
  */
6072
- 'languageCode'?: string | null;
5749
+ 'medicalStaffCount'?: number | null;
6073
5750
  /**
6074
5751
  *
6075
- * @type {string}
5752
+ * @type {number}
6076
5753
  * @memberof HospitalModel
6077
5754
  */
6078
- 'content'?: string | null;
5755
+ 'doctorCount'?: number | null;
6079
5756
  /**
6080
5757
  *
6081
5758
  * @type {string}
@@ -6094,6 +5771,12 @@ export interface HospitalModel {
6094
5771
  * @memberof HospitalModel
6095
5772
  */
6096
5773
  'customStyle'?: string | null;
5774
+ /**
5775
+ *
5776
+ * @type {Array<HospitalEvaluationItemModel>}
5777
+ * @memberof HospitalModel
5778
+ */
5779
+ 'evaluations'?: Array<HospitalEvaluationItemModel> | null;
6097
5780
  /**
6098
5781
  *
6099
5782
  * @type {Array<WorkingDay>}
@@ -6108,10 +5791,10 @@ export interface HospitalModel {
6108
5791
  'hospitalSnsHandles'?: Array<SnsHandle> | null;
6109
5792
  /**
6110
5793
  *
6111
- * @type {Array<LocalizedUrlModel>}
5794
+ * @type {Array<AwardModel>}
6112
5795
  * @memberof HospitalModel
6113
5796
  */
6114
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5797
+ 'awards'?: Array<AwardModel> | null;
6115
5798
  }
6116
5799
  /**
6117
5800
  *
@@ -6587,49 +6270,7 @@ export interface HospitalSpecialtyItemModel {
6587
6270
  * @type {string}
6588
6271
  * @memberof HospitalSpecialtyItemModel
6589
6272
  */
6590
- 'hospitalId'?: string;
6591
- /**
6592
- *
6593
- * @type {string}
6594
- * @memberof HospitalSpecialtyItemModel
6595
- */
6596
- 'hospitalName'?: string | null;
6597
- /**
6598
- *
6599
- * @type {string}
6600
- * @memberof HospitalSpecialtyItemModel
6601
- */
6602
- 'hospitalSlug'?: string | null;
6603
- /**
6604
- *
6605
- * @type {string}
6606
- * @memberof HospitalSpecialtyItemModel
6607
- */
6608
- 'specialtyId'?: string;
6609
- /**
6610
- *
6611
- * @type {string}
6612
- * @memberof HospitalSpecialtyItemModel
6613
- */
6614
- 'specialtyName'?: string | null;
6615
- /**
6616
- *
6617
- * @type {string}
6618
- * @memberof HospitalSpecialtyItemModel
6619
- */
6620
- 'specialtyTypeId'?: string;
6621
- /**
6622
- *
6623
- * @type {string}
6624
- * @memberof HospitalSpecialtyItemModel
6625
- */
6626
- 'specialtyTypeName'?: string | null;
6627
- /**
6628
- *
6629
- * @type {MarketingType}
6630
- * @memberof HospitalSpecialtyItemModel
6631
- */
6632
- 'marketingType'?: MarketingType;
6273
+ 'languageCode'?: string | null;
6633
6274
  /**
6634
6275
  *
6635
6276
  * @type {string}
@@ -6650,16 +6291,10 @@ export interface HospitalSpecialtyItemModel {
6650
6291
  'description'?: string | null;
6651
6292
  /**
6652
6293
  *
6653
- * @type {number}
6654
- * @memberof HospitalSpecialtyItemModel
6655
- */
6656
- 'serviceCount'?: number;
6657
- /**
6658
- *
6659
- * @type {Array<HospitalServiceItemModel>}
6294
+ * @type {boolean}
6660
6295
  * @memberof HospitalSpecialtyItemModel
6661
6296
  */
6662
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
6297
+ 'confirmed'?: boolean;
6663
6298
  /**
6664
6299
  *
6665
6300
  * @type {string}
@@ -6692,22 +6327,16 @@ export interface HospitalSpecialtyItemModel {
6692
6327
  'order'?: number;
6693
6328
  /**
6694
6329
  *
6695
- * @type {boolean}
6696
- * @memberof HospitalSpecialtyItemModel
6697
- */
6698
- 'confirmed'?: boolean;
6699
- /**
6700
- *
6701
- * @type {Array<MediaModel>}
6330
+ * @type {number}
6702
6331
  * @memberof HospitalSpecialtyItemModel
6703
6332
  */
6704
- 'medias'?: Array<MediaModel> | null;
6333
+ 'servicesCount'?: number;
6705
6334
  /**
6706
6335
  *
6707
- * @type {AuditableEntity}
6336
+ * @type {string}
6708
6337
  * @memberof HospitalSpecialtyItemModel
6709
6338
  */
6710
- 'auditableEntity'?: AuditableEntity;
6339
+ 'specialtyId'?: string;
6711
6340
  }
6712
6341
  /**
6713
6342
  *
@@ -6726,151 +6355,139 @@ export interface HospitalSpecialtyModel {
6726
6355
  * @type {string}
6727
6356
  * @memberof HospitalSpecialtyModel
6728
6357
  */
6729
- 'hospitalId'?: string;
6730
- /**
6731
- *
6732
- * @type {string}
6733
- * @memberof HospitalSpecialtyModel
6734
- */
6735
- 'hospitalName'?: string | null;
6358
+ 'languageCode'?: string | null;
6736
6359
  /**
6737
6360
  *
6738
6361
  * @type {string}
6739
6362
  * @memberof HospitalSpecialtyModel
6740
6363
  */
6741
- 'hospitalSlug'?: string | null;
6364
+ 'name'?: string | null;
6742
6365
  /**
6743
6366
  *
6744
6367
  * @type {string}
6745
6368
  * @memberof HospitalSpecialtyModel
6746
6369
  */
6747
- 'specialtyId'?: string;
6370
+ 'slug'?: string | null;
6748
6371
  /**
6749
6372
  *
6750
6373
  * @type {string}
6751
6374
  * @memberof HospitalSpecialtyModel
6752
6375
  */
6753
- 'specialtyName'?: string | null;
6376
+ 'description'?: string | null;
6754
6377
  /**
6755
6378
  *
6756
- * @type {string}
6379
+ * @type {boolean}
6757
6380
  * @memberof HospitalSpecialtyModel
6758
6381
  */
6759
- 'specialtyTypeId'?: string;
6382
+ 'confirmed'?: boolean;
6760
6383
  /**
6761
6384
  *
6762
6385
  * @type {string}
6763
6386
  * @memberof HospitalSpecialtyModel
6764
6387
  */
6765
- 'specialtyTypeName'?: string | null;
6766
- /**
6767
- *
6768
- * @type {MarketingType}
6769
- * @memberof HospitalSpecialtyModel
6770
- */
6771
- 'marketingType'?: MarketingType;
6388
+ 'photo'?: string | null;
6772
6389
  /**
6773
6390
  *
6774
6391
  * @type {string}
6775
6392
  * @memberof HospitalSpecialtyModel
6776
6393
  */
6777
- 'name'?: string | null;
6394
+ 'photoThumbnail'?: string | null;
6778
6395
  /**
6779
6396
  *
6780
6397
  * @type {string}
6781
6398
  * @memberof HospitalSpecialtyModel
6782
6399
  */
6783
- 'slug'?: string | null;
6400
+ 'background'?: string | null;
6784
6401
  /**
6785
6402
  *
6786
6403
  * @type {string}
6787
6404
  * @memberof HospitalSpecialtyModel
6788
6405
  */
6789
- 'description'?: string | null;
6406
+ 'backgroundThumbnail'?: string | null;
6790
6407
  /**
6791
6408
  *
6792
6409
  * @type {number}
6793
6410
  * @memberof HospitalSpecialtyModel
6794
6411
  */
6795
- 'serviceCount'?: number;
6412
+ 'order'?: number;
6796
6413
  /**
6797
6414
  *
6798
- * @type {Array<HospitalServiceItemModel>}
6415
+ * @type {number}
6799
6416
  * @memberof HospitalSpecialtyModel
6800
6417
  */
6801
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
6418
+ 'servicesCount'?: number;
6802
6419
  /**
6803
6420
  *
6804
6421
  * @type {string}
6805
6422
  * @memberof HospitalSpecialtyModel
6806
6423
  */
6807
- 'photo'?: string | null;
6424
+ 'specialtyId'?: string;
6808
6425
  /**
6809
6426
  *
6810
6427
  * @type {string}
6811
6428
  * @memberof HospitalSpecialtyModel
6812
6429
  */
6813
- 'photoThumbnail'?: string | null;
6430
+ 'hospitalId'?: string;
6814
6431
  /**
6815
6432
  *
6816
6433
  * @type {string}
6817
6434
  * @memberof HospitalSpecialtyModel
6818
6435
  */
6819
- 'background'?: string | null;
6436
+ 'customStyle'?: string | null;
6820
6437
  /**
6821
6438
  *
6822
6439
  * @type {string}
6823
6440
  * @memberof HospitalSpecialtyModel
6824
6441
  */
6825
- 'backgroundThumbnail'?: string | null;
6442
+ 'content'?: string | null;
6826
6443
  /**
6827
6444
  *
6828
- * @type {number}
6445
+ * @type {string}
6829
6446
  * @memberof HospitalSpecialtyModel
6830
6447
  */
6831
- 'order'?: number;
6448
+ 'hospitalName'?: string | null;
6832
6449
  /**
6833
6450
  *
6834
- * @type {boolean}
6451
+ * @type {string}
6835
6452
  * @memberof HospitalSpecialtyModel
6836
6453
  */
6837
- 'confirmed'?: boolean;
6454
+ 'hospitalSlug'?: string | null;
6838
6455
  /**
6839
6456
  *
6840
- * @type {Array<MediaModel>}
6457
+ * @type {string}
6841
6458
  * @memberof HospitalSpecialtyModel
6842
6459
  */
6843
- 'medias'?: Array<MediaModel> | null;
6460
+ 'specialtyName'?: string | null;
6844
6461
  /**
6845
6462
  *
6846
- * @type {AuditableEntity}
6463
+ * @type {string}
6847
6464
  * @memberof HospitalSpecialtyModel
6848
6465
  */
6849
- 'auditableEntity'?: AuditableEntity;
6466
+ 'specialtyTypeId'?: string;
6850
6467
  /**
6851
6468
  *
6852
6469
  * @type {string}
6853
6470
  * @memberof HospitalSpecialtyModel
6854
6471
  */
6855
- 'content'?: string | null;
6472
+ 'specialtyTypeName'?: string | null;
6856
6473
  /**
6857
6474
  *
6858
- * @type {string}
6475
+ * @type {MarketingType}
6859
6476
  * @memberof HospitalSpecialtyModel
6860
6477
  */
6861
- 'customStyle'?: string | null;
6478
+ 'marketingType'?: MarketingType;
6862
6479
  /**
6863
6480
  *
6864
- * @type {string}
6481
+ * @type {Array<LocalizedUrlModel>}
6865
6482
  * @memberof HospitalSpecialtyModel
6866
6483
  */
6867
- 'languageCode'?: string | null;
6484
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6868
6485
  /**
6869
6486
  *
6870
- * @type {Array<LocalizedUrlModel>}
6487
+ * @type {Array<MediaModel>}
6871
6488
  * @memberof HospitalSpecialtyModel
6872
6489
  */
6873
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6490
+ 'medias'?: Array<MediaModel> | null;
6874
6491
  }
6875
6492
  /**
6876
6493
  *
@@ -6904,22 +6521,40 @@ export interface HospitalSpecialtySimpleItemModel {
6904
6521
  'description'?: string | null;
6905
6522
  /**
6906
6523
  *
6907
- * @type {string}
6524
+ * @type {number}
6908
6525
  * @memberof HospitalSpecialtySimpleItemModel
6909
6526
  */
6910
- 'specialtyName'?: string | null;
6527
+ 'order'?: number;
6528
+ /**
6529
+ *
6530
+ * @type {boolean}
6531
+ * @memberof HospitalSpecialtySimpleItemModel
6532
+ */
6533
+ 'confirmed'?: boolean;
6911
6534
  /**
6912
6535
  *
6913
6536
  * @type {number}
6914
6537
  * @memberof HospitalSpecialtySimpleItemModel
6915
6538
  */
6916
- 'order'?: number;
6539
+ 'servicesCount'?: number;
6917
6540
  /**
6918
6541
  *
6919
- * @type {boolean}
6542
+ * @type {string}
6920
6543
  * @memberof HospitalSpecialtySimpleItemModel
6921
6544
  */
6922
- 'confirmed'?: boolean;
6545
+ 'specialtyId'?: string;
6546
+ /**
6547
+ *
6548
+ * @type {string}
6549
+ * @memberof HospitalSpecialtySimpleItemModel
6550
+ */
6551
+ 'specialtyName'?: string | null;
6552
+ /**
6553
+ *
6554
+ * @type {string}
6555
+ * @memberof HospitalSpecialtySimpleItemModel
6556
+ */
6557
+ 'specialtySlug'?: string | null;
6923
6558
  }
6924
6559
  /**
6925
6560
  *
@@ -9967,6 +9602,79 @@ export interface UserModel {
9967
9602
  */
9968
9603
  'locations'?: Array<UserLocationModel> | null;
9969
9604
  }
9605
+ /**
9606
+ *
9607
+ * @export
9608
+ * @interface UserTranslationModel
9609
+ */
9610
+ export interface UserTranslationModel {
9611
+ /**
9612
+ *
9613
+ * @type {string}
9614
+ * @memberof UserTranslationModel
9615
+ */
9616
+ 'userId'?: string;
9617
+ /**
9618
+ *
9619
+ * @type {string}
9620
+ * @memberof UserTranslationModel
9621
+ */
9622
+ 'languageCode'?: string | null;
9623
+ /**
9624
+ *
9625
+ * @type {string}
9626
+ * @memberof UserTranslationModel
9627
+ */
9628
+ 'firstName'?: string | null;
9629
+ /**
9630
+ *
9631
+ * @type {string}
9632
+ * @memberof UserTranslationModel
9633
+ */
9634
+ 'middleName'?: string | null;
9635
+ /**
9636
+ *
9637
+ * @type {string}
9638
+ * @memberof UserTranslationModel
9639
+ */
9640
+ 'lastName'?: string | null;
9641
+ /**
9642
+ *
9643
+ * @type {string}
9644
+ * @memberof UserTranslationModel
9645
+ */
9646
+ 'slug'?: string | null;
9647
+ /**
9648
+ *
9649
+ * @type {string}
9650
+ * @memberof UserTranslationModel
9651
+ */
9652
+ 'overview'?: string | null;
9653
+ /**
9654
+ *
9655
+ * @type {string}
9656
+ * @memberof UserTranslationModel
9657
+ */
9658
+ 'description'?: string | null;
9659
+ /**
9660
+ *
9661
+ * @type {string}
9662
+ * @memberof UserTranslationModel
9663
+ */
9664
+ 'content'?: string | null;
9665
+ /**
9666
+ *
9667
+ * @type {boolean}
9668
+ * @memberof UserTranslationModel
9669
+ */
9670
+ 'confirmed'?: boolean;
9671
+ /**
9672
+ *
9673
+ * @type {AuditableEntity}
9674
+ * @memberof UserTranslationModel
9675
+ */
9676
+ 'auditableEntity'?: AuditableEntity;
9677
+ }
9970
9678
  /**
9971
9679
  *
9972
9680
  * @export