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/lib/api.d.ts +239 -531
- package/lib/api.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api.ts +239 -531
package/lib/api.d.ts
CHANGED
|
@@ -4119,31 +4119,7 @@ export interface DoctorItemModel {
|
|
|
4119
4119
|
* @type {string}
|
|
4120
4120
|
* @memberof DoctorItemModel
|
|
4121
4121
|
*/
|
|
4122
|
-
'
|
|
4123
|
-
/**
|
|
4124
|
-
*
|
|
4125
|
-
* @type {string}
|
|
4126
|
-
* @memberof DoctorItemModel
|
|
4127
|
-
*/
|
|
4128
|
-
'firstName'?: string | null;
|
|
4129
|
-
/**
|
|
4130
|
-
*
|
|
4131
|
-
* @type {string}
|
|
4132
|
-
* @memberof DoctorItemModel
|
|
4133
|
-
*/
|
|
4134
|
-
'middleName'?: string | null;
|
|
4135
|
-
/**
|
|
4136
|
-
*
|
|
4137
|
-
* @type {string}
|
|
4138
|
-
* @memberof DoctorItemModel
|
|
4139
|
-
*/
|
|
4140
|
-
'lastName'?: string | null;
|
|
4141
|
-
/**
|
|
4142
|
-
*
|
|
4143
|
-
* @type {string}
|
|
4144
|
-
* @memberof DoctorItemModel
|
|
4145
|
-
*/
|
|
4146
|
-
'fullName'?: string | null;
|
|
4122
|
+
'name'?: string | null;
|
|
4147
4123
|
/**
|
|
4148
4124
|
*
|
|
4149
4125
|
* @type {string}
|
|
@@ -4152,106 +4128,34 @@ export interface DoctorItemModel {
|
|
|
4152
4128
|
'slug'?: string | null;
|
|
4153
4129
|
/**
|
|
4154
4130
|
*
|
|
4155
|
-
* @type {
|
|
4156
|
-
* @memberof DoctorItemModel
|
|
4157
|
-
*/
|
|
4158
|
-
'phone'?: string | null;
|
|
4159
|
-
/**
|
|
4160
|
-
*
|
|
4161
|
-
* @type {string}
|
|
4162
|
-
* @memberof DoctorItemModel
|
|
4163
|
-
*/
|
|
4164
|
-
'email'?: string | null;
|
|
4165
|
-
/**
|
|
4166
|
-
*
|
|
4167
|
-
* @type {string}
|
|
4168
|
-
* @memberof DoctorItemModel
|
|
4169
|
-
*/
|
|
4170
|
-
'photo'?: string | null;
|
|
4171
|
-
/**
|
|
4172
|
-
*
|
|
4173
|
-
* @type {string}
|
|
4174
|
-
* @memberof DoctorItemModel
|
|
4175
|
-
*/
|
|
4176
|
-
'photoThumbnail'?: string | null;
|
|
4177
|
-
/**
|
|
4178
|
-
*
|
|
4179
|
-
* @type {Gender}
|
|
4180
|
-
* @memberof DoctorItemModel
|
|
4181
|
-
*/
|
|
4182
|
-
'gender'?: Gender;
|
|
4183
|
-
/**
|
|
4184
|
-
*
|
|
4185
|
-
* @type {Date}
|
|
4186
|
-
* @memberof DoctorItemModel
|
|
4187
|
-
*/
|
|
4188
|
-
'dateOfBirth'?: Date | null;
|
|
4189
|
-
/**
|
|
4190
|
-
*
|
|
4191
|
-
* @type {string}
|
|
4192
|
-
* @memberof DoctorItemModel
|
|
4193
|
-
*/
|
|
4194
|
-
'timeZone'?: string | null;
|
|
4195
|
-
/**
|
|
4196
|
-
*
|
|
4197
|
-
* @type {string}
|
|
4198
|
-
* @memberof DoctorItemModel
|
|
4199
|
-
*/
|
|
4200
|
-
'communicationUserId'?: string | null;
|
|
4201
|
-
/**
|
|
4202
|
-
*
|
|
4203
|
-
* @type {AuditableEntity}
|
|
4204
|
-
* @memberof DoctorItemModel
|
|
4205
|
-
*/
|
|
4206
|
-
'auditableEntity'?: AuditableEntity;
|
|
4207
|
-
/**
|
|
4208
|
-
*
|
|
4209
|
-
* @type {string}
|
|
4210
|
-
* @memberof DoctorItemModel
|
|
4211
|
-
*/
|
|
4212
|
-
'hospitalId'?: string | null;
|
|
4213
|
-
/**
|
|
4214
|
-
*
|
|
4215
|
-
* @type {string}
|
|
4216
|
-
* @memberof DoctorItemModel
|
|
4217
|
-
*/
|
|
4218
|
-
'hospitalName'?: string | null;
|
|
4219
|
-
/**
|
|
4220
|
-
*
|
|
4221
|
-
* @type {string}
|
|
4222
|
-
* @memberof DoctorItemModel
|
|
4223
|
-
*/
|
|
4224
|
-
'hospitalSlug'?: string | null;
|
|
4225
|
-
/**
|
|
4226
|
-
*
|
|
4227
|
-
* @type {Date}
|
|
4131
|
+
* @type {boolean}
|
|
4228
4132
|
* @memberof DoctorItemModel
|
|
4229
4133
|
*/
|
|
4230
|
-
'
|
|
4134
|
+
'consultationEnabled'?: boolean | null;
|
|
4231
4135
|
/**
|
|
4232
4136
|
*
|
|
4233
|
-
* @type {
|
|
4137
|
+
* @type {number}
|
|
4234
4138
|
* @memberof DoctorItemModel
|
|
4235
4139
|
*/
|
|
4236
|
-
'
|
|
4140
|
+
'consultationFee'?: number | null;
|
|
4237
4141
|
/**
|
|
4238
4142
|
*
|
|
4239
4143
|
* @type {boolean}
|
|
4240
4144
|
* @memberof DoctorItemModel
|
|
4241
4145
|
*/
|
|
4242
|
-
'
|
|
4146
|
+
'confirmed'?: boolean;
|
|
4243
4147
|
/**
|
|
4244
4148
|
*
|
|
4245
|
-
* @type {
|
|
4149
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
4246
4150
|
* @memberof DoctorItemModel
|
|
4247
4151
|
*/
|
|
4248
|
-
'
|
|
4152
|
+
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4249
4153
|
/**
|
|
4250
4154
|
*
|
|
4251
|
-
* @type {
|
|
4155
|
+
* @type {Array<DoctorAffiliationItemModel>}
|
|
4252
4156
|
* @memberof DoctorItemModel
|
|
4253
4157
|
*/
|
|
4254
|
-
'
|
|
4158
|
+
'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
|
|
4255
4159
|
}
|
|
4256
4160
|
/**
|
|
4257
4161
|
*
|
|
@@ -4448,24 +4352,6 @@ export interface DoctorModel {
|
|
|
4448
4352
|
* @memberof DoctorModel
|
|
4449
4353
|
*/
|
|
4450
4354
|
'languageCode'?: string | null;
|
|
4451
|
-
/**
|
|
4452
|
-
*
|
|
4453
|
-
* @type {string}
|
|
4454
|
-
* @memberof DoctorModel
|
|
4455
|
-
*/
|
|
4456
|
-
'hospitalId'?: string | null;
|
|
4457
|
-
/**
|
|
4458
|
-
*
|
|
4459
|
-
* @type {string}
|
|
4460
|
-
* @memberof DoctorModel
|
|
4461
|
-
*/
|
|
4462
|
-
'hospitalName'?: string | null;
|
|
4463
|
-
/**
|
|
4464
|
-
*
|
|
4465
|
-
* @type {string}
|
|
4466
|
-
* @memberof DoctorModel
|
|
4467
|
-
*/
|
|
4468
|
-
'hospitalSlug'?: string | null;
|
|
4469
4355
|
/**
|
|
4470
4356
|
*
|
|
4471
4357
|
* @type {Date}
|
|
@@ -4508,6 +4394,24 @@ export interface DoctorModel {
|
|
|
4508
4394
|
* @memberof DoctorModel
|
|
4509
4395
|
*/
|
|
4510
4396
|
'confirmed'?: boolean;
|
|
4397
|
+
/**
|
|
4398
|
+
*
|
|
4399
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
4400
|
+
* @memberof DoctorModel
|
|
4401
|
+
*/
|
|
4402
|
+
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4403
|
+
/**
|
|
4404
|
+
*
|
|
4405
|
+
* @type {Array<DoctorAffiliationModel>}
|
|
4406
|
+
* @memberof DoctorModel
|
|
4407
|
+
*/
|
|
4408
|
+
'doctorAffiliations'?: Array<DoctorAffiliationModel> | null;
|
|
4409
|
+
/**
|
|
4410
|
+
*
|
|
4411
|
+
* @type {Array<UserTranslationModel>}
|
|
4412
|
+
* @memberof DoctorModel
|
|
4413
|
+
*/
|
|
4414
|
+
'translations'?: Array<UserTranslationModel> | null;
|
|
4511
4415
|
/**
|
|
4512
4416
|
*
|
|
4513
4417
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -4703,57 +4607,64 @@ export interface DoctorSpecialtiesModel {
|
|
|
4703
4607
|
/**
|
|
4704
4608
|
*
|
|
4705
4609
|
* @export
|
|
4706
|
-
* @interface
|
|
4610
|
+
* @interface DoctorSpecialtyItemModel
|
|
4707
4611
|
*/
|
|
4708
|
-
export interface
|
|
4612
|
+
export interface DoctorSpecialtyItemModel {
|
|
4709
4613
|
/**
|
|
4710
4614
|
*
|
|
4711
4615
|
* @type {string}
|
|
4712
|
-
* @memberof
|
|
4616
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4713
4617
|
*/
|
|
4714
4618
|
'specialtyId'?: string;
|
|
4715
4619
|
/**
|
|
4716
4620
|
*
|
|
4717
4621
|
* @type {string}
|
|
4718
|
-
* @memberof
|
|
4622
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4719
4623
|
*/
|
|
4720
4624
|
'specialtyName'?: string | null;
|
|
4721
4625
|
/**
|
|
4722
4626
|
*
|
|
4723
4627
|
* @type {string}
|
|
4724
|
-
* @memberof
|
|
4628
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4725
4629
|
*/
|
|
4726
4630
|
'specialtySlug'?: string | null;
|
|
4727
4631
|
/**
|
|
4728
4632
|
*
|
|
4729
|
-
* @type {
|
|
4730
|
-
* @memberof
|
|
4633
|
+
* @type {number}
|
|
4634
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4731
4635
|
*/
|
|
4732
|
-
'
|
|
4636
|
+
'order'?: number;
|
|
4637
|
+
}
|
|
4638
|
+
/**
|
|
4639
|
+
*
|
|
4640
|
+
* @export
|
|
4641
|
+
* @interface DoctorSpecialtyModel
|
|
4642
|
+
*/
|
|
4643
|
+
export interface DoctorSpecialtyModel {
|
|
4733
4644
|
/**
|
|
4734
4645
|
*
|
|
4735
4646
|
* @type {string}
|
|
4736
4647
|
* @memberof DoctorSpecialtyModel
|
|
4737
4648
|
*/
|
|
4738
|
-
'
|
|
4649
|
+
'specialtyId'?: string;
|
|
4739
4650
|
/**
|
|
4740
4651
|
*
|
|
4741
|
-
* @type {
|
|
4652
|
+
* @type {string}
|
|
4742
4653
|
* @memberof DoctorSpecialtyModel
|
|
4743
4654
|
*/
|
|
4744
|
-
'
|
|
4655
|
+
'specialtyName'?: string | null;
|
|
4745
4656
|
/**
|
|
4746
4657
|
*
|
|
4747
4658
|
* @type {string}
|
|
4748
4659
|
* @memberof DoctorSpecialtyModel
|
|
4749
4660
|
*/
|
|
4750
|
-
'
|
|
4661
|
+
'specialtySlug'?: string | null;
|
|
4751
4662
|
/**
|
|
4752
4663
|
*
|
|
4753
|
-
* @type {
|
|
4664
|
+
* @type {number}
|
|
4754
4665
|
* @memberof DoctorSpecialtyModel
|
|
4755
4666
|
*/
|
|
4756
|
-
'
|
|
4667
|
+
'order'?: number;
|
|
4757
4668
|
}
|
|
4758
4669
|
/**
|
|
4759
4670
|
*
|
|
@@ -5487,24 +5398,6 @@ export interface HospitalEquipmentsModel {
|
|
|
5487
5398
|
* @interface HospitalEvaluationItemModel
|
|
5488
5399
|
*/
|
|
5489
5400
|
export interface HospitalEvaluationItemModel {
|
|
5490
|
-
/**
|
|
5491
|
-
*
|
|
5492
|
-
* @type {string}
|
|
5493
|
-
* @memberof HospitalEvaluationItemModel
|
|
5494
|
-
*/
|
|
5495
|
-
'id'?: string;
|
|
5496
|
-
/**
|
|
5497
|
-
*
|
|
5498
|
-
* @type {string}
|
|
5499
|
-
* @memberof HospitalEvaluationItemModel
|
|
5500
|
-
*/
|
|
5501
|
-
'hospitalId'?: string;
|
|
5502
|
-
/**
|
|
5503
|
-
*
|
|
5504
|
-
* @type {string}
|
|
5505
|
-
* @memberof HospitalEvaluationItemModel
|
|
5506
|
-
*/
|
|
5507
|
-
'hospitalName'?: string | null;
|
|
5508
5401
|
/**
|
|
5509
5402
|
*
|
|
5510
5403
|
* @type {string}
|
|
@@ -5517,18 +5410,6 @@ export interface HospitalEvaluationItemModel {
|
|
|
5517
5410
|
* @memberof HospitalEvaluationItemModel
|
|
5518
5411
|
*/
|
|
5519
5412
|
'stars'?: number;
|
|
5520
|
-
/**
|
|
5521
|
-
*
|
|
5522
|
-
* @type {string}
|
|
5523
|
-
* @memberof HospitalEvaluationItemModel
|
|
5524
|
-
*/
|
|
5525
|
-
'description'?: string | null;
|
|
5526
|
-
/**
|
|
5527
|
-
*
|
|
5528
|
-
* @type {string}
|
|
5529
|
-
* @memberof HospitalEvaluationItemModel
|
|
5530
|
-
*/
|
|
5531
|
-
'referenceUrl'?: string | null;
|
|
5532
5413
|
}
|
|
5533
5414
|
/**
|
|
5534
5415
|
*
|
|
@@ -5536,24 +5417,6 @@ export interface HospitalEvaluationItemModel {
|
|
|
5536
5417
|
* @interface HospitalEvaluationModel
|
|
5537
5418
|
*/
|
|
5538
5419
|
export interface HospitalEvaluationModel {
|
|
5539
|
-
/**
|
|
5540
|
-
*
|
|
5541
|
-
* @type {string}
|
|
5542
|
-
* @memberof HospitalEvaluationModel
|
|
5543
|
-
*/
|
|
5544
|
-
'id'?: string;
|
|
5545
|
-
/**
|
|
5546
|
-
*
|
|
5547
|
-
* @type {string}
|
|
5548
|
-
* @memberof HospitalEvaluationModel
|
|
5549
|
-
*/
|
|
5550
|
-
'hospitalId'?: string;
|
|
5551
|
-
/**
|
|
5552
|
-
*
|
|
5553
|
-
* @type {string}
|
|
5554
|
-
* @memberof HospitalEvaluationModel
|
|
5555
|
-
*/
|
|
5556
|
-
'hospitalName'?: string | null;
|
|
5557
5420
|
/**
|
|
5558
5421
|
*
|
|
5559
5422
|
* @type {string}
|
|
@@ -5615,73 +5478,31 @@ export interface HospitalItemModel {
|
|
|
5615
5478
|
* @type {string}
|
|
5616
5479
|
* @memberof HospitalItemModel
|
|
5617
5480
|
*/
|
|
5618
|
-
'
|
|
5619
|
-
/**
|
|
5620
|
-
*
|
|
5621
|
-
* @type {string}
|
|
5622
|
-
* @memberof HospitalItemModel
|
|
5623
|
-
*/
|
|
5624
|
-
'slug'?: string | null;
|
|
5625
|
-
/**
|
|
5626
|
-
*
|
|
5627
|
-
* @type {string}
|
|
5628
|
-
* @memberof HospitalItemModel
|
|
5629
|
-
*/
|
|
5630
|
-
'description'?: string | null;
|
|
5481
|
+
'languageCode'?: string | null;
|
|
5631
5482
|
/**
|
|
5632
5483
|
*
|
|
5633
5484
|
* @type {string}
|
|
5634
5485
|
* @memberof HospitalItemModel
|
|
5635
5486
|
*/
|
|
5636
|
-
'
|
|
5487
|
+
'name'?: string | null;
|
|
5637
5488
|
/**
|
|
5638
5489
|
*
|
|
5639
5490
|
* @type {string}
|
|
5640
5491
|
* @memberof HospitalItemModel
|
|
5641
5492
|
*/
|
|
5642
|
-
'
|
|
5643
|
-
/**
|
|
5644
|
-
*
|
|
5645
|
-
* @type {number}
|
|
5646
|
-
* @memberof HospitalItemModel
|
|
5647
|
-
*/
|
|
5648
|
-
'bedsCount'?: number | null;
|
|
5649
|
-
/**
|
|
5650
|
-
*
|
|
5651
|
-
* @type {number}
|
|
5652
|
-
* @memberof HospitalItemModel
|
|
5653
|
-
*/
|
|
5654
|
-
'operationsPerYear'?: number | null;
|
|
5655
|
-
/**
|
|
5656
|
-
*
|
|
5657
|
-
* @type {number}
|
|
5658
|
-
* @memberof HospitalItemModel
|
|
5659
|
-
*/
|
|
5660
|
-
'foundationYear'?: number | null;
|
|
5661
|
-
/**
|
|
5662
|
-
*
|
|
5663
|
-
* @type {number}
|
|
5664
|
-
* @memberof HospitalItemModel
|
|
5665
|
-
*/
|
|
5666
|
-
'medicalStaffCount'?: number | null;
|
|
5667
|
-
/**
|
|
5668
|
-
*
|
|
5669
|
-
* @type {number}
|
|
5670
|
-
* @memberof HospitalItemModel
|
|
5671
|
-
*/
|
|
5672
|
-
'doctorCount'?: number | null;
|
|
5493
|
+
'slug'?: string | null;
|
|
5673
5494
|
/**
|
|
5674
5495
|
*
|
|
5675
|
-
* @type {
|
|
5496
|
+
* @type {boolean}
|
|
5676
5497
|
* @memberof HospitalItemModel
|
|
5677
5498
|
*/
|
|
5678
|
-
'
|
|
5499
|
+
'confirmed'?: boolean;
|
|
5679
5500
|
/**
|
|
5680
5501
|
*
|
|
5681
5502
|
* @type {string}
|
|
5682
5503
|
* @memberof HospitalItemModel
|
|
5683
5504
|
*/
|
|
5684
|
-
'
|
|
5505
|
+
'logo'?: string | null;
|
|
5685
5506
|
/**
|
|
5686
5507
|
*
|
|
5687
5508
|
* @type {MarketingType}
|
|
@@ -5714,58 +5535,10 @@ export interface HospitalItemModel {
|
|
|
5714
5535
|
'websiteUrl'?: string | null;
|
|
5715
5536
|
/**
|
|
5716
5537
|
*
|
|
5717
|
-
* @type {
|
|
5718
|
-
* @memberof HospitalItemModel
|
|
5719
|
-
*/
|
|
5720
|
-
'articlesCount'?: number;
|
|
5721
|
-
/**
|
|
5722
|
-
*
|
|
5723
|
-
* @type {number}
|
|
5724
|
-
* @memberof HospitalItemModel
|
|
5725
|
-
*/
|
|
5726
|
-
'packagesCount'?: number;
|
|
5727
|
-
/**
|
|
5728
|
-
*
|
|
5729
|
-
* @type {number}
|
|
5730
|
-
* @memberof HospitalItemModel
|
|
5731
|
-
*/
|
|
5732
|
-
'equipmentsCount'?: number;
|
|
5733
|
-
/**
|
|
5734
|
-
*
|
|
5735
|
-
* @type {number}
|
|
5736
|
-
* @memberof HospitalItemModel
|
|
5737
|
-
*/
|
|
5738
|
-
'reviewsCount'?: number;
|
|
5739
|
-
/**
|
|
5740
|
-
*
|
|
5741
|
-
* @type {number}
|
|
5742
|
-
* @memberof HospitalItemModel
|
|
5743
|
-
*/
|
|
5744
|
-
'departmentsCount'?: number;
|
|
5745
|
-
/**
|
|
5746
|
-
*
|
|
5747
|
-
* @type {number}
|
|
5748
|
-
* @memberof HospitalItemModel
|
|
5749
|
-
*/
|
|
5750
|
-
'specialtiesCount'?: number;
|
|
5751
|
-
/**
|
|
5752
|
-
*
|
|
5753
|
-
* @type {number}
|
|
5754
|
-
* @memberof HospitalItemModel
|
|
5755
|
-
*/
|
|
5756
|
-
'accreditationsCount'?: number;
|
|
5757
|
-
/**
|
|
5758
|
-
*
|
|
5759
|
-
* @type {number}
|
|
5760
|
-
* @memberof HospitalItemModel
|
|
5761
|
-
*/
|
|
5762
|
-
'doctorAffiliationsCount'?: number;
|
|
5763
|
-
/**
|
|
5764
|
-
*
|
|
5765
|
-
* @type {number}
|
|
5538
|
+
* @type {boolean}
|
|
5766
5539
|
* @memberof HospitalItemModel
|
|
5767
5540
|
*/
|
|
5768
|
-
'
|
|
5541
|
+
'paymentEnabled'?: boolean;
|
|
5769
5542
|
/**
|
|
5770
5543
|
*
|
|
5771
5544
|
* @type {string}
|
|
@@ -5774,52 +5547,28 @@ export interface HospitalItemModel {
|
|
|
5774
5547
|
'specialtiesSummerized'?: string | null;
|
|
5775
5548
|
/**
|
|
5776
5549
|
*
|
|
5777
|
-
* @type {
|
|
5778
|
-
* @memberof HospitalItemModel
|
|
5779
|
-
*/
|
|
5780
|
-
'paymentEnabled'?: boolean;
|
|
5781
|
-
/**
|
|
5782
|
-
*
|
|
5783
|
-
* @type {boolean}
|
|
5550
|
+
* @type {string}
|
|
5784
5551
|
* @memberof HospitalItemModel
|
|
5785
5552
|
*/
|
|
5786
|
-
'
|
|
5553
|
+
'countryId'?: string;
|
|
5787
5554
|
/**
|
|
5788
5555
|
*
|
|
5789
|
-
* @type {Array<
|
|
5556
|
+
* @type {Array<HospitalAccreditationItemModel>}
|
|
5790
5557
|
* @memberof HospitalItemModel
|
|
5791
5558
|
*/
|
|
5792
|
-
'
|
|
5559
|
+
'accreditations'?: Array<HospitalAccreditationItemModel> | null;
|
|
5793
5560
|
/**
|
|
5794
5561
|
*
|
|
5795
5562
|
* @type {Array<MediaModel>}
|
|
5796
5563
|
* @memberof HospitalItemModel
|
|
5797
5564
|
*/
|
|
5798
5565
|
'medias'?: Array<MediaModel> | null;
|
|
5799
|
-
/**
|
|
5800
|
-
*
|
|
5801
|
-
* @type {Array<AccreditationModel>}
|
|
5802
|
-
* @memberof HospitalItemModel
|
|
5803
|
-
*/
|
|
5804
|
-
'accreditations'?: Array<AccreditationModel> | null;
|
|
5805
|
-
/**
|
|
5806
|
-
*
|
|
5807
|
-
* @type {Array<HospitalEvaluationModel>}
|
|
5808
|
-
* @memberof HospitalItemModel
|
|
5809
|
-
*/
|
|
5810
|
-
'evaluations'?: Array<HospitalEvaluationModel> | null;
|
|
5811
5566
|
/**
|
|
5812
5567
|
*
|
|
5813
5568
|
* @type {LocationModel}
|
|
5814
5569
|
* @memberof HospitalItemModel
|
|
5815
5570
|
*/
|
|
5816
5571
|
'location'?: LocationModel;
|
|
5817
|
-
/**
|
|
5818
|
-
*
|
|
5819
|
-
* @type {AuditableEntity}
|
|
5820
|
-
* @memberof HospitalItemModel
|
|
5821
|
-
*/
|
|
5822
|
-
'auditableEntity'?: AuditableEntity;
|
|
5823
5572
|
}
|
|
5824
5573
|
/**
|
|
5825
5574
|
*
|
|
@@ -5838,73 +5587,31 @@ export interface HospitalModel {
|
|
|
5838
5587
|
* @type {string}
|
|
5839
5588
|
* @memberof HospitalModel
|
|
5840
5589
|
*/
|
|
5841
|
-
'
|
|
5842
|
-
/**
|
|
5843
|
-
*
|
|
5844
|
-
* @type {string}
|
|
5845
|
-
* @memberof HospitalModel
|
|
5846
|
-
*/
|
|
5847
|
-
'slug'?: string | null;
|
|
5848
|
-
/**
|
|
5849
|
-
*
|
|
5850
|
-
* @type {string}
|
|
5851
|
-
* @memberof HospitalModel
|
|
5852
|
-
*/
|
|
5853
|
-
'description'?: string | null;
|
|
5590
|
+
'languageCode'?: string | null;
|
|
5854
5591
|
/**
|
|
5855
5592
|
*
|
|
5856
5593
|
* @type {string}
|
|
5857
5594
|
* @memberof HospitalModel
|
|
5858
5595
|
*/
|
|
5859
|
-
'
|
|
5596
|
+
'name'?: string | null;
|
|
5860
5597
|
/**
|
|
5861
5598
|
*
|
|
5862
5599
|
* @type {string}
|
|
5863
5600
|
* @memberof HospitalModel
|
|
5864
5601
|
*/
|
|
5865
|
-
'
|
|
5866
|
-
/**
|
|
5867
|
-
*
|
|
5868
|
-
* @type {number}
|
|
5869
|
-
* @memberof HospitalModel
|
|
5870
|
-
*/
|
|
5871
|
-
'bedsCount'?: number | null;
|
|
5872
|
-
/**
|
|
5873
|
-
*
|
|
5874
|
-
* @type {number}
|
|
5875
|
-
* @memberof HospitalModel
|
|
5876
|
-
*/
|
|
5877
|
-
'operationsPerYear'?: number | null;
|
|
5878
|
-
/**
|
|
5879
|
-
*
|
|
5880
|
-
* @type {number}
|
|
5881
|
-
* @memberof HospitalModel
|
|
5882
|
-
*/
|
|
5883
|
-
'foundationYear'?: number | null;
|
|
5884
|
-
/**
|
|
5885
|
-
*
|
|
5886
|
-
* @type {number}
|
|
5887
|
-
* @memberof HospitalModel
|
|
5888
|
-
*/
|
|
5889
|
-
'medicalStaffCount'?: number | null;
|
|
5890
|
-
/**
|
|
5891
|
-
*
|
|
5892
|
-
* @type {number}
|
|
5893
|
-
* @memberof HospitalModel
|
|
5894
|
-
*/
|
|
5895
|
-
'doctorCount'?: number | null;
|
|
5602
|
+
'slug'?: string | null;
|
|
5896
5603
|
/**
|
|
5897
5604
|
*
|
|
5898
|
-
* @type {
|
|
5605
|
+
* @type {boolean}
|
|
5899
5606
|
* @memberof HospitalModel
|
|
5900
5607
|
*/
|
|
5901
|
-
'
|
|
5608
|
+
'confirmed'?: boolean;
|
|
5902
5609
|
/**
|
|
5903
5610
|
*
|
|
5904
5611
|
* @type {string}
|
|
5905
5612
|
* @memberof HospitalModel
|
|
5906
5613
|
*/
|
|
5907
|
-
'
|
|
5614
|
+
'logo'?: string | null;
|
|
5908
5615
|
/**
|
|
5909
5616
|
*
|
|
5910
5617
|
* @type {MarketingType}
|
|
@@ -5937,124 +5644,94 @@ export interface HospitalModel {
|
|
|
5937
5644
|
'websiteUrl'?: string | null;
|
|
5938
5645
|
/**
|
|
5939
5646
|
*
|
|
5940
|
-
* @type {
|
|
5941
|
-
* @memberof HospitalModel
|
|
5942
|
-
*/
|
|
5943
|
-
'articlesCount'?: number;
|
|
5944
|
-
/**
|
|
5945
|
-
*
|
|
5946
|
-
* @type {number}
|
|
5947
|
-
* @memberof HospitalModel
|
|
5948
|
-
*/
|
|
5949
|
-
'packagesCount'?: number;
|
|
5950
|
-
/**
|
|
5951
|
-
*
|
|
5952
|
-
* @type {number}
|
|
5953
|
-
* @memberof HospitalModel
|
|
5954
|
-
*/
|
|
5955
|
-
'equipmentsCount'?: number;
|
|
5956
|
-
/**
|
|
5957
|
-
*
|
|
5958
|
-
* @type {number}
|
|
5647
|
+
* @type {boolean}
|
|
5959
5648
|
* @memberof HospitalModel
|
|
5960
5649
|
*/
|
|
5961
|
-
'
|
|
5650
|
+
'paymentEnabled'?: boolean;
|
|
5962
5651
|
/**
|
|
5963
5652
|
*
|
|
5964
|
-
* @type {
|
|
5653
|
+
* @type {string}
|
|
5965
5654
|
* @memberof HospitalModel
|
|
5966
5655
|
*/
|
|
5967
|
-
'
|
|
5656
|
+
'specialtiesSummerized'?: string | null;
|
|
5968
5657
|
/**
|
|
5969
5658
|
*
|
|
5970
|
-
* @type {
|
|
5659
|
+
* @type {string}
|
|
5971
5660
|
* @memberof HospitalModel
|
|
5972
5661
|
*/
|
|
5973
|
-
'
|
|
5662
|
+
'countryId'?: string;
|
|
5974
5663
|
/**
|
|
5975
5664
|
*
|
|
5976
|
-
* @type {
|
|
5665
|
+
* @type {Array<HospitalAccreditationItemModel>}
|
|
5977
5666
|
* @memberof HospitalModel
|
|
5978
5667
|
*/
|
|
5979
|
-
'
|
|
5668
|
+
'accreditations'?: Array<HospitalAccreditationItemModel> | null;
|
|
5980
5669
|
/**
|
|
5981
5670
|
*
|
|
5982
|
-
* @type {
|
|
5671
|
+
* @type {Array<MediaModel>}
|
|
5983
5672
|
* @memberof HospitalModel
|
|
5984
5673
|
*/
|
|
5985
|
-
'
|
|
5674
|
+
'medias'?: Array<MediaModel> | null;
|
|
5986
5675
|
/**
|
|
5987
5676
|
*
|
|
5988
|
-
* @type {
|
|
5677
|
+
* @type {LocationModel}
|
|
5989
5678
|
* @memberof HospitalModel
|
|
5990
5679
|
*/
|
|
5991
|
-
'
|
|
5680
|
+
'location'?: LocationModel;
|
|
5992
5681
|
/**
|
|
5993
5682
|
*
|
|
5994
5683
|
* @type {string}
|
|
5995
5684
|
* @memberof HospitalModel
|
|
5996
5685
|
*/
|
|
5997
|
-
'
|
|
5998
|
-
/**
|
|
5999
|
-
*
|
|
6000
|
-
* @type {boolean}
|
|
6001
|
-
* @memberof HospitalModel
|
|
6002
|
-
*/
|
|
6003
|
-
'paymentEnabled'?: boolean;
|
|
6004
|
-
/**
|
|
6005
|
-
*
|
|
6006
|
-
* @type {boolean}
|
|
6007
|
-
* @memberof HospitalModel
|
|
6008
|
-
*/
|
|
6009
|
-
'confirmed'?: boolean;
|
|
5686
|
+
'description'?: string | null;
|
|
6010
5687
|
/**
|
|
6011
5688
|
*
|
|
6012
|
-
* @type {
|
|
5689
|
+
* @type {string}
|
|
6013
5690
|
* @memberof HospitalModel
|
|
6014
5691
|
*/
|
|
6015
|
-
'
|
|
5692
|
+
'overview'?: string | null;
|
|
6016
5693
|
/**
|
|
6017
5694
|
*
|
|
6018
|
-
* @type {
|
|
5695
|
+
* @type {string}
|
|
6019
5696
|
* @memberof HospitalModel
|
|
6020
5697
|
*/
|
|
6021
|
-
'
|
|
5698
|
+
'content'?: string | null;
|
|
6022
5699
|
/**
|
|
6023
5700
|
*
|
|
6024
|
-
* @type {Array<
|
|
5701
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6025
5702
|
* @memberof HospitalModel
|
|
6026
5703
|
*/
|
|
6027
|
-
'
|
|
5704
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6028
5705
|
/**
|
|
6029
5706
|
*
|
|
6030
|
-
* @type {
|
|
5707
|
+
* @type {number}
|
|
6031
5708
|
* @memberof HospitalModel
|
|
6032
5709
|
*/
|
|
6033
|
-
'
|
|
5710
|
+
'bedsCount'?: number | null;
|
|
6034
5711
|
/**
|
|
6035
5712
|
*
|
|
6036
|
-
* @type {
|
|
5713
|
+
* @type {number}
|
|
6037
5714
|
* @memberof HospitalModel
|
|
6038
5715
|
*/
|
|
6039
|
-
'
|
|
5716
|
+
'operationsPerYear'?: number | null;
|
|
6040
5717
|
/**
|
|
6041
5718
|
*
|
|
6042
|
-
* @type {
|
|
5719
|
+
* @type {number}
|
|
6043
5720
|
* @memberof HospitalModel
|
|
6044
5721
|
*/
|
|
6045
|
-
'
|
|
5722
|
+
'foundationYear'?: number | null;
|
|
6046
5723
|
/**
|
|
6047
5724
|
*
|
|
6048
|
-
* @type {
|
|
5725
|
+
* @type {number}
|
|
6049
5726
|
* @memberof HospitalModel
|
|
6050
5727
|
*/
|
|
6051
|
-
'
|
|
5728
|
+
'medicalStaffCount'?: number | null;
|
|
6052
5729
|
/**
|
|
6053
5730
|
*
|
|
6054
|
-
* @type {
|
|
5731
|
+
* @type {number}
|
|
6055
5732
|
* @memberof HospitalModel
|
|
6056
5733
|
*/
|
|
6057
|
-
'
|
|
5734
|
+
'doctorCount'?: number | null;
|
|
6058
5735
|
/**
|
|
6059
5736
|
*
|
|
6060
5737
|
* @type {string}
|
|
@@ -6073,6 +5750,12 @@ export interface HospitalModel {
|
|
|
6073
5750
|
* @memberof HospitalModel
|
|
6074
5751
|
*/
|
|
6075
5752
|
'customStyle'?: string | null;
|
|
5753
|
+
/**
|
|
5754
|
+
*
|
|
5755
|
+
* @type {Array<HospitalEvaluationItemModel>}
|
|
5756
|
+
* @memberof HospitalModel
|
|
5757
|
+
*/
|
|
5758
|
+
'evaluations'?: Array<HospitalEvaluationItemModel> | null;
|
|
6076
5759
|
/**
|
|
6077
5760
|
*
|
|
6078
5761
|
* @type {Array<WorkingDay>}
|
|
@@ -6087,10 +5770,10 @@ export interface HospitalModel {
|
|
|
6087
5770
|
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
6088
5771
|
/**
|
|
6089
5772
|
*
|
|
6090
|
-
* @type {Array<
|
|
5773
|
+
* @type {Array<AwardModel>}
|
|
6091
5774
|
* @memberof HospitalModel
|
|
6092
5775
|
*/
|
|
6093
|
-
'
|
|
5776
|
+
'awards'?: Array<AwardModel> | null;
|
|
6094
5777
|
}
|
|
6095
5778
|
/**
|
|
6096
5779
|
*
|
|
@@ -6566,49 +6249,7 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6566
6249
|
* @type {string}
|
|
6567
6250
|
* @memberof HospitalSpecialtyItemModel
|
|
6568
6251
|
*/
|
|
6569
|
-
'
|
|
6570
|
-
/**
|
|
6571
|
-
*
|
|
6572
|
-
* @type {string}
|
|
6573
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6574
|
-
*/
|
|
6575
|
-
'hospitalName'?: string | null;
|
|
6576
|
-
/**
|
|
6577
|
-
*
|
|
6578
|
-
* @type {string}
|
|
6579
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6580
|
-
*/
|
|
6581
|
-
'hospitalSlug'?: string | null;
|
|
6582
|
-
/**
|
|
6583
|
-
*
|
|
6584
|
-
* @type {string}
|
|
6585
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6586
|
-
*/
|
|
6587
|
-
'specialtyId'?: string;
|
|
6588
|
-
/**
|
|
6589
|
-
*
|
|
6590
|
-
* @type {string}
|
|
6591
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6592
|
-
*/
|
|
6593
|
-
'specialtyName'?: string | null;
|
|
6594
|
-
/**
|
|
6595
|
-
*
|
|
6596
|
-
* @type {string}
|
|
6597
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6598
|
-
*/
|
|
6599
|
-
'specialtyTypeId'?: string;
|
|
6600
|
-
/**
|
|
6601
|
-
*
|
|
6602
|
-
* @type {string}
|
|
6603
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6604
|
-
*/
|
|
6605
|
-
'specialtyTypeName'?: string | null;
|
|
6606
|
-
/**
|
|
6607
|
-
*
|
|
6608
|
-
* @type {MarketingType}
|
|
6609
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6610
|
-
*/
|
|
6611
|
-
'marketingType'?: MarketingType;
|
|
6252
|
+
'languageCode'?: string | null;
|
|
6612
6253
|
/**
|
|
6613
6254
|
*
|
|
6614
6255
|
* @type {string}
|
|
@@ -6629,16 +6270,10 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6629
6270
|
'description'?: string | null;
|
|
6630
6271
|
/**
|
|
6631
6272
|
*
|
|
6632
|
-
* @type {
|
|
6633
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6634
|
-
*/
|
|
6635
|
-
'serviceCount'?: number;
|
|
6636
|
-
/**
|
|
6637
|
-
*
|
|
6638
|
-
* @type {Array<HospitalServiceItemModel>}
|
|
6273
|
+
* @type {boolean}
|
|
6639
6274
|
* @memberof HospitalSpecialtyItemModel
|
|
6640
6275
|
*/
|
|
6641
|
-
'
|
|
6276
|
+
'confirmed'?: boolean;
|
|
6642
6277
|
/**
|
|
6643
6278
|
*
|
|
6644
6279
|
* @type {string}
|
|
@@ -6671,22 +6306,16 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6671
6306
|
'order'?: number;
|
|
6672
6307
|
/**
|
|
6673
6308
|
*
|
|
6674
|
-
* @type {
|
|
6675
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6676
|
-
*/
|
|
6677
|
-
'confirmed'?: boolean;
|
|
6678
|
-
/**
|
|
6679
|
-
*
|
|
6680
|
-
* @type {Array<MediaModel>}
|
|
6309
|
+
* @type {number}
|
|
6681
6310
|
* @memberof HospitalSpecialtyItemModel
|
|
6682
6311
|
*/
|
|
6683
|
-
'
|
|
6312
|
+
'servicesCount'?: number;
|
|
6684
6313
|
/**
|
|
6685
6314
|
*
|
|
6686
|
-
* @type {
|
|
6315
|
+
* @type {string}
|
|
6687
6316
|
* @memberof HospitalSpecialtyItemModel
|
|
6688
6317
|
*/
|
|
6689
|
-
'
|
|
6318
|
+
'specialtyId'?: string;
|
|
6690
6319
|
}
|
|
6691
6320
|
/**
|
|
6692
6321
|
*
|
|
@@ -6705,151 +6334,139 @@ export interface HospitalSpecialtyModel {
|
|
|
6705
6334
|
* @type {string}
|
|
6706
6335
|
* @memberof HospitalSpecialtyModel
|
|
6707
6336
|
*/
|
|
6708
|
-
'
|
|
6709
|
-
/**
|
|
6710
|
-
*
|
|
6711
|
-
* @type {string}
|
|
6712
|
-
* @memberof HospitalSpecialtyModel
|
|
6713
|
-
*/
|
|
6714
|
-
'hospitalName'?: string | null;
|
|
6337
|
+
'languageCode'?: string | null;
|
|
6715
6338
|
/**
|
|
6716
6339
|
*
|
|
6717
6340
|
* @type {string}
|
|
6718
6341
|
* @memberof HospitalSpecialtyModel
|
|
6719
6342
|
*/
|
|
6720
|
-
'
|
|
6343
|
+
'name'?: string | null;
|
|
6721
6344
|
/**
|
|
6722
6345
|
*
|
|
6723
6346
|
* @type {string}
|
|
6724
6347
|
* @memberof HospitalSpecialtyModel
|
|
6725
6348
|
*/
|
|
6726
|
-
'
|
|
6349
|
+
'slug'?: string | null;
|
|
6727
6350
|
/**
|
|
6728
6351
|
*
|
|
6729
6352
|
* @type {string}
|
|
6730
6353
|
* @memberof HospitalSpecialtyModel
|
|
6731
6354
|
*/
|
|
6732
|
-
'
|
|
6355
|
+
'description'?: string | null;
|
|
6733
6356
|
/**
|
|
6734
6357
|
*
|
|
6735
|
-
* @type {
|
|
6358
|
+
* @type {boolean}
|
|
6736
6359
|
* @memberof HospitalSpecialtyModel
|
|
6737
6360
|
*/
|
|
6738
|
-
'
|
|
6361
|
+
'confirmed'?: boolean;
|
|
6739
6362
|
/**
|
|
6740
6363
|
*
|
|
6741
6364
|
* @type {string}
|
|
6742
6365
|
* @memberof HospitalSpecialtyModel
|
|
6743
6366
|
*/
|
|
6744
|
-
'
|
|
6745
|
-
/**
|
|
6746
|
-
*
|
|
6747
|
-
* @type {MarketingType}
|
|
6748
|
-
* @memberof HospitalSpecialtyModel
|
|
6749
|
-
*/
|
|
6750
|
-
'marketingType'?: MarketingType;
|
|
6367
|
+
'photo'?: string | null;
|
|
6751
6368
|
/**
|
|
6752
6369
|
*
|
|
6753
6370
|
* @type {string}
|
|
6754
6371
|
* @memberof HospitalSpecialtyModel
|
|
6755
6372
|
*/
|
|
6756
|
-
'
|
|
6373
|
+
'photoThumbnail'?: string | null;
|
|
6757
6374
|
/**
|
|
6758
6375
|
*
|
|
6759
6376
|
* @type {string}
|
|
6760
6377
|
* @memberof HospitalSpecialtyModel
|
|
6761
6378
|
*/
|
|
6762
|
-
'
|
|
6379
|
+
'background'?: string | null;
|
|
6763
6380
|
/**
|
|
6764
6381
|
*
|
|
6765
6382
|
* @type {string}
|
|
6766
6383
|
* @memberof HospitalSpecialtyModel
|
|
6767
6384
|
*/
|
|
6768
|
-
'
|
|
6385
|
+
'backgroundThumbnail'?: string | null;
|
|
6769
6386
|
/**
|
|
6770
6387
|
*
|
|
6771
6388
|
* @type {number}
|
|
6772
6389
|
* @memberof HospitalSpecialtyModel
|
|
6773
6390
|
*/
|
|
6774
|
-
'
|
|
6391
|
+
'order'?: number;
|
|
6775
6392
|
/**
|
|
6776
6393
|
*
|
|
6777
|
-
* @type {
|
|
6394
|
+
* @type {number}
|
|
6778
6395
|
* @memberof HospitalSpecialtyModel
|
|
6779
6396
|
*/
|
|
6780
|
-
'
|
|
6397
|
+
'servicesCount'?: number;
|
|
6781
6398
|
/**
|
|
6782
6399
|
*
|
|
6783
6400
|
* @type {string}
|
|
6784
6401
|
* @memberof HospitalSpecialtyModel
|
|
6785
6402
|
*/
|
|
6786
|
-
'
|
|
6403
|
+
'specialtyId'?: string;
|
|
6787
6404
|
/**
|
|
6788
6405
|
*
|
|
6789
6406
|
* @type {string}
|
|
6790
6407
|
* @memberof HospitalSpecialtyModel
|
|
6791
6408
|
*/
|
|
6792
|
-
'
|
|
6409
|
+
'hospitalId'?: string;
|
|
6793
6410
|
/**
|
|
6794
6411
|
*
|
|
6795
6412
|
* @type {string}
|
|
6796
6413
|
* @memberof HospitalSpecialtyModel
|
|
6797
6414
|
*/
|
|
6798
|
-
'
|
|
6415
|
+
'customStyle'?: string | null;
|
|
6799
6416
|
/**
|
|
6800
6417
|
*
|
|
6801
6418
|
* @type {string}
|
|
6802
6419
|
* @memberof HospitalSpecialtyModel
|
|
6803
6420
|
*/
|
|
6804
|
-
'
|
|
6421
|
+
'content'?: string | null;
|
|
6805
6422
|
/**
|
|
6806
6423
|
*
|
|
6807
|
-
* @type {
|
|
6424
|
+
* @type {string}
|
|
6808
6425
|
* @memberof HospitalSpecialtyModel
|
|
6809
6426
|
*/
|
|
6810
|
-
'
|
|
6427
|
+
'hospitalName'?: string | null;
|
|
6811
6428
|
/**
|
|
6812
6429
|
*
|
|
6813
|
-
* @type {
|
|
6430
|
+
* @type {string}
|
|
6814
6431
|
* @memberof HospitalSpecialtyModel
|
|
6815
6432
|
*/
|
|
6816
|
-
'
|
|
6433
|
+
'hospitalSlug'?: string | null;
|
|
6817
6434
|
/**
|
|
6818
6435
|
*
|
|
6819
|
-
* @type {
|
|
6436
|
+
* @type {string}
|
|
6820
6437
|
* @memberof HospitalSpecialtyModel
|
|
6821
6438
|
*/
|
|
6822
|
-
'
|
|
6439
|
+
'specialtyName'?: string | null;
|
|
6823
6440
|
/**
|
|
6824
6441
|
*
|
|
6825
|
-
* @type {
|
|
6442
|
+
* @type {string}
|
|
6826
6443
|
* @memberof HospitalSpecialtyModel
|
|
6827
6444
|
*/
|
|
6828
|
-
'
|
|
6445
|
+
'specialtyTypeId'?: string;
|
|
6829
6446
|
/**
|
|
6830
6447
|
*
|
|
6831
6448
|
* @type {string}
|
|
6832
6449
|
* @memberof HospitalSpecialtyModel
|
|
6833
6450
|
*/
|
|
6834
|
-
'
|
|
6451
|
+
'specialtyTypeName'?: string | null;
|
|
6835
6452
|
/**
|
|
6836
6453
|
*
|
|
6837
|
-
* @type {
|
|
6454
|
+
* @type {MarketingType}
|
|
6838
6455
|
* @memberof HospitalSpecialtyModel
|
|
6839
6456
|
*/
|
|
6840
|
-
'
|
|
6457
|
+
'marketingType'?: MarketingType;
|
|
6841
6458
|
/**
|
|
6842
6459
|
*
|
|
6843
|
-
* @type {
|
|
6460
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6844
6461
|
* @memberof HospitalSpecialtyModel
|
|
6845
6462
|
*/
|
|
6846
|
-
'
|
|
6463
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6847
6464
|
/**
|
|
6848
6465
|
*
|
|
6849
|
-
* @type {Array<
|
|
6466
|
+
* @type {Array<MediaModel>}
|
|
6850
6467
|
* @memberof HospitalSpecialtyModel
|
|
6851
6468
|
*/
|
|
6852
|
-
'
|
|
6469
|
+
'medias'?: Array<MediaModel> | null;
|
|
6853
6470
|
}
|
|
6854
6471
|
/**
|
|
6855
6472
|
*
|
|
@@ -6883,22 +6500,40 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
6883
6500
|
'description'?: string | null;
|
|
6884
6501
|
/**
|
|
6885
6502
|
*
|
|
6886
|
-
* @type {
|
|
6503
|
+
* @type {number}
|
|
6887
6504
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6888
6505
|
*/
|
|
6889
|
-
'
|
|
6506
|
+
'order'?: number;
|
|
6507
|
+
/**
|
|
6508
|
+
*
|
|
6509
|
+
* @type {boolean}
|
|
6510
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6511
|
+
*/
|
|
6512
|
+
'confirmed'?: boolean;
|
|
6890
6513
|
/**
|
|
6891
6514
|
*
|
|
6892
6515
|
* @type {number}
|
|
6893
6516
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6894
6517
|
*/
|
|
6895
|
-
'
|
|
6518
|
+
'servicesCount'?: number;
|
|
6896
6519
|
/**
|
|
6897
6520
|
*
|
|
6898
|
-
* @type {
|
|
6521
|
+
* @type {string}
|
|
6899
6522
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6900
6523
|
*/
|
|
6901
|
-
'
|
|
6524
|
+
'specialtyId'?: string;
|
|
6525
|
+
/**
|
|
6526
|
+
*
|
|
6527
|
+
* @type {string}
|
|
6528
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6529
|
+
*/
|
|
6530
|
+
'specialtyName'?: string | null;
|
|
6531
|
+
/**
|
|
6532
|
+
*
|
|
6533
|
+
* @type {string}
|
|
6534
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6535
|
+
*/
|
|
6536
|
+
'specialtySlug'?: string | null;
|
|
6902
6537
|
}
|
|
6903
6538
|
/**
|
|
6904
6539
|
*
|
|
@@ -9925,6 +9560,79 @@ export interface UserModel {
|
|
|
9925
9560
|
*/
|
|
9926
9561
|
'locations'?: Array<UserLocationModel> | null;
|
|
9927
9562
|
}
|
|
9563
|
+
/**
|
|
9564
|
+
*
|
|
9565
|
+
* @export
|
|
9566
|
+
* @interface UserTranslationModel
|
|
9567
|
+
*/
|
|
9568
|
+
export interface UserTranslationModel {
|
|
9569
|
+
/**
|
|
9570
|
+
*
|
|
9571
|
+
* @type {string}
|
|
9572
|
+
* @memberof UserTranslationModel
|
|
9573
|
+
*/
|
|
9574
|
+
'userId'?: string;
|
|
9575
|
+
/**
|
|
9576
|
+
*
|
|
9577
|
+
* @type {string}
|
|
9578
|
+
* @memberof UserTranslationModel
|
|
9579
|
+
*/
|
|
9580
|
+
'languageCode'?: string | null;
|
|
9581
|
+
/**
|
|
9582
|
+
*
|
|
9583
|
+
* @type {string}
|
|
9584
|
+
* @memberof UserTranslationModel
|
|
9585
|
+
*/
|
|
9586
|
+
'firstName'?: string | null;
|
|
9587
|
+
/**
|
|
9588
|
+
*
|
|
9589
|
+
* @type {string}
|
|
9590
|
+
* @memberof UserTranslationModel
|
|
9591
|
+
*/
|
|
9592
|
+
'middleName'?: string | null;
|
|
9593
|
+
/**
|
|
9594
|
+
*
|
|
9595
|
+
* @type {string}
|
|
9596
|
+
* @memberof UserTranslationModel
|
|
9597
|
+
*/
|
|
9598
|
+
'lastName'?: string | null;
|
|
9599
|
+
/**
|
|
9600
|
+
*
|
|
9601
|
+
* @type {string}
|
|
9602
|
+
* @memberof UserTranslationModel
|
|
9603
|
+
*/
|
|
9604
|
+
'slug'?: string | null;
|
|
9605
|
+
/**
|
|
9606
|
+
*
|
|
9607
|
+
* @type {string}
|
|
9608
|
+
* @memberof UserTranslationModel
|
|
9609
|
+
*/
|
|
9610
|
+
'overview'?: string | null;
|
|
9611
|
+
/**
|
|
9612
|
+
*
|
|
9613
|
+
* @type {string}
|
|
9614
|
+
* @memberof UserTranslationModel
|
|
9615
|
+
*/
|
|
9616
|
+
'description'?: string | null;
|
|
9617
|
+
/**
|
|
9618
|
+
*
|
|
9619
|
+
* @type {string}
|
|
9620
|
+
* @memberof UserTranslationModel
|
|
9621
|
+
*/
|
|
9622
|
+
'content'?: string | null;
|
|
9623
|
+
/**
|
|
9624
|
+
*
|
|
9625
|
+
* @type {boolean}
|
|
9626
|
+
* @memberof UserTranslationModel
|
|
9627
|
+
*/
|
|
9628
|
+
'confirmed'?: boolean;
|
|
9629
|
+
/**
|
|
9630
|
+
*
|
|
9631
|
+
* @type {AuditableEntity}
|
|
9632
|
+
* @memberof UserTranslationModel
|
|
9633
|
+
*/
|
|
9634
|
+
'auditableEntity'?: AuditableEntity;
|
|
9635
|
+
}
|
|
9928
9636
|
/**
|
|
9929
9637
|
*
|
|
9930
9638
|
* @export
|