ch-admin-api-client-typescript 3.3.2 → 3.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/api.d.ts CHANGED
@@ -977,37 +977,6 @@ export interface AuditableEntity {
977
977
  */
978
978
  'isDeleted'?: boolean;
979
979
  }
980
- /**
981
- *
982
- * @export
983
- * @interface AwardModel
984
- */
985
- export interface AwardModel {
986
- /**
987
- *
988
- * @type {string}
989
- * @memberof AwardModel
990
- */
991
- 'id'?: string;
992
- /**
993
- *
994
- * @type {string}
995
- * @memberof AwardModel
996
- */
997
- 'name'?: string | null;
998
- /**
999
- *
1000
- * @type {string}
1001
- * @memberof AwardModel
1002
- */
1003
- 'image'?: string | null;
1004
- /**
1005
- *
1006
- * @type {Date}
1007
- * @memberof AwardModel
1008
- */
1009
- 'date'?: Date;
1010
- }
1011
980
  /**
1012
981
  *
1013
982
  * @export
@@ -6203,43 +6172,31 @@ export interface DoctorItemModel {
6203
6172
  * @type {string}
6204
6173
  * @memberof DoctorItemModel
6205
6174
  */
6206
- 'userName'?: string | null;
6207
- /**
6208
- *
6209
- * @type {string}
6210
- * @memberof DoctorItemModel
6211
- */
6212
- 'firstName'?: string | null;
6213
- /**
6214
- *
6215
- * @type {string}
6216
- * @memberof DoctorItemModel
6217
- */
6218
- 'middleName'?: string | null;
6175
+ 'name'?: string | null;
6219
6176
  /**
6220
6177
  *
6221
6178
  * @type {string}
6222
6179
  * @memberof DoctorItemModel
6223
6180
  */
6224
- 'lastName'?: string | null;
6181
+ 'slug'?: string | null;
6225
6182
  /**
6226
6183
  *
6227
- * @type {string}
6184
+ * @type {boolean}
6228
6185
  * @memberof DoctorItemModel
6229
6186
  */
6230
- 'fullName'?: string | null;
6187
+ 'consultationEnabled'?: boolean | null;
6231
6188
  /**
6232
6189
  *
6233
- * @type {string}
6190
+ * @type {number}
6234
6191
  * @memberof DoctorItemModel
6235
6192
  */
6236
- 'slug'?: string | null;
6193
+ 'consultationFee'?: number | null;
6237
6194
  /**
6238
6195
  *
6239
- * @type {string}
6196
+ * @type {boolean}
6240
6197
  * @memberof DoctorItemModel
6241
6198
  */
6242
- 'phone'?: string | null;
6199
+ 'confirmed'?: boolean;
6243
6200
  /**
6244
6201
  *
6245
6202
  * @type {string}
@@ -6258,84 +6215,24 @@ export interface DoctorItemModel {
6258
6215
  * @memberof DoctorItemModel
6259
6216
  */
6260
6217
  'photoThumbnail'?: string | null;
6261
- /**
6262
- *
6263
- * @type {Gender}
6264
- * @memberof DoctorItemModel
6265
- */
6266
- 'gender'?: Gender;
6267
- /**
6268
- *
6269
- * @type {Date}
6270
- * @memberof DoctorItemModel
6271
- */
6272
- 'dateOfBirth'?: Date | null;
6273
6218
  /**
6274
6219
  *
6275
6220
  * @type {string}
6276
6221
  * @memberof DoctorItemModel
6277
6222
  */
6278
- 'timeZone'?: string | null;
6223
+ 'hospitalSlug'?: string | null;
6279
6224
  /**
6280
6225
  *
6281
- * @type {string}
6226
+ * @type {Array<DoctorAffiliationItemModel>}
6282
6227
  * @memberof DoctorItemModel
6283
6228
  */
6284
- 'communicationUserId'?: string | null;
6229
+ 'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
6285
6230
  /**
6286
6231
  *
6287
6232
  * @type {AuditableEntity}
6288
6233
  * @memberof DoctorItemModel
6289
6234
  */
6290
6235
  'auditableEntity'?: AuditableEntity;
6291
- /**
6292
- *
6293
- * @type {string}
6294
- * @memberof DoctorItemModel
6295
- */
6296
- 'hospitalId'?: string | null;
6297
- /**
6298
- *
6299
- * @type {string}
6300
- * @memberof DoctorItemModel
6301
- */
6302
- 'hospitalName'?: string | null;
6303
- /**
6304
- *
6305
- * @type {string}
6306
- * @memberof DoctorItemModel
6307
- */
6308
- 'hospitalSlug'?: string | null;
6309
- /**
6310
- *
6311
- * @type {Date}
6312
- * @memberof DoctorItemModel
6313
- */
6314
- 'startPracticeDate'?: Date | null;
6315
- /**
6316
- *
6317
- * @type {string}
6318
- * @memberof DoctorItemModel
6319
- */
6320
- 'overview'?: string | null;
6321
- /**
6322
- *
6323
- * @type {boolean}
6324
- * @memberof DoctorItemModel
6325
- */
6326
- 'consultationEnabled'?: boolean | null;
6327
- /**
6328
- *
6329
- * @type {number}
6330
- * @memberof DoctorItemModel
6331
- */
6332
- 'consultationFee'?: number | null;
6333
- /**
6334
- *
6335
- * @type {boolean}
6336
- * @memberof DoctorItemModel
6337
- */
6338
- 'confirmed'?: boolean;
6339
6236
  }
6340
6237
  /**
6341
6238
  *
@@ -6532,30 +6429,6 @@ export interface DoctorModel {
6532
6429
  * @memberof DoctorModel
6533
6430
  */
6534
6431
  'languageCode'?: string | null;
6535
- /**
6536
- *
6537
- * @type {string}
6538
- * @memberof DoctorModel
6539
- */
6540
- 'hospitalId'?: string | null;
6541
- /**
6542
- *
6543
- * @type {string}
6544
- * @memberof DoctorModel
6545
- */
6546
- 'hospitalName'?: string | null;
6547
- /**
6548
- *
6549
- * @type {string}
6550
- * @memberof DoctorModel
6551
- */
6552
- 'hospitalSlug'?: string | null;
6553
- /**
6554
- *
6555
- * @type {Date}
6556
- * @memberof DoctorModel
6557
- */
6558
- 'startPracticeDate'?: Date | null;
6559
6432
  /**
6560
6433
  *
6561
6434
  * @type {string}
@@ -6594,10 +6467,16 @@ export interface DoctorModel {
6594
6467
  'confirmed'?: boolean;
6595
6468
  /**
6596
6469
  *
6597
- * @type {Array<LocalizedUrlModel>}
6470
+ * @type {Date}
6598
6471
  * @memberof DoctorModel
6599
6472
  */
6600
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6473
+ 'startPracticeDate'?: Date | null;
6474
+ /**
6475
+ *
6476
+ * @type {Array<DoctorAffiliationItemModel>}
6477
+ * @memberof DoctorModel
6478
+ */
6479
+ 'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
6601
6480
  }
6602
6481
  /**
6603
6482
  *
@@ -7723,224 +7602,152 @@ export interface HospitalItemModel {
7723
7602
  * @type {string}
7724
7603
  * @memberof HospitalItemModel
7725
7604
  */
7726
- 'description'?: string | null;
7605
+ 'logo'?: string | null;
7727
7606
  /**
7728
7607
  *
7729
7608
  * @type {string}
7730
7609
  * @memberof HospitalItemModel
7731
7610
  */
7732
- 'logo'?: string | null;
7611
+ 'countryId'?: string;
7733
7612
  /**
7734
7613
  *
7735
7614
  * @type {string}
7736
7615
  * @memberof HospitalItemModel
7737
7616
  */
7738
- 'overview'?: string | null;
7617
+ 'countryName'?: string | null;
7739
7618
  /**
7740
7619
  *
7741
- * @type {number}
7620
+ * @type {MarketingType}
7742
7621
  * @memberof HospitalItemModel
7743
7622
  */
7744
- 'bedsCount'?: number | null;
7623
+ 'marketingType'?: MarketingType;
7745
7624
  /**
7746
7625
  *
7747
- * @type {number}
7626
+ * @type {string}
7748
7627
  * @memberof HospitalItemModel
7749
7628
  */
7750
- 'operationsPerYear'?: number | null;
7629
+ 'timeZone'?: string | null;
7751
7630
  /**
7752
7631
  *
7753
- * @type {number}
7632
+ * @type {string}
7754
7633
  * @memberof HospitalItemModel
7755
7634
  */
7756
- 'foundationYear'?: number | null;
7635
+ 'websiteUrl'?: string | null;
7757
7636
  /**
7758
7637
  *
7759
- * @type {number}
7638
+ * @type {boolean}
7760
7639
  * @memberof HospitalItemModel
7761
7640
  */
7762
- 'medicalStaffCount'?: number | null;
7641
+ 'paymentEnabled'?: boolean;
7763
7642
  /**
7764
7643
  *
7765
- * @type {number}
7644
+ * @type {boolean}
7766
7645
  * @memberof HospitalItemModel
7767
7646
  */
7768
- 'doctorCount'?: number | null;
7647
+ 'confirmed'?: boolean;
7769
7648
  /**
7770
7649
  *
7771
- * @type {string}
7650
+ * @type {LocationModel}
7772
7651
  * @memberof HospitalItemModel
7773
7652
  */
7774
- 'countryId'?: string;
7653
+ 'location'?: LocationModel;
7775
7654
  /**
7776
7655
  *
7777
- * @type {string}
7656
+ * @type {AuditableEntity}
7778
7657
  * @memberof HospitalItemModel
7779
7658
  */
7780
- 'countryName'?: string | null;
7659
+ 'auditableEntity'?: AuditableEntity;
7660
+ }
7661
+ /**
7662
+ *
7663
+ * @export
7664
+ * @interface HospitalModel
7665
+ */
7666
+ export interface HospitalModel {
7781
7667
  /**
7782
7668
  *
7783
- * @type {MarketingType}
7784
- * @memberof HospitalItemModel
7669
+ * @type {string}
7670
+ * @memberof HospitalModel
7785
7671
  */
7786
- 'marketingType'?: MarketingType;
7672
+ 'id'?: string;
7787
7673
  /**
7788
7674
  *
7789
- * @type {boolean}
7790
- * @memberof HospitalItemModel
7675
+ * @type {string}
7676
+ * @memberof HospitalModel
7791
7677
  */
7792
- 'consultationEnabled'?: boolean | null;
7678
+ 'name'?: string | null;
7793
7679
  /**
7794
7680
  *
7795
- * @type {number}
7796
- * @memberof HospitalItemModel
7681
+ * @type {string}
7682
+ * @memberof HospitalModel
7797
7683
  */
7798
- 'consultationFee'?: number | null;
7684
+ 'slug'?: string | null;
7799
7685
  /**
7800
7686
  *
7801
7687
  * @type {string}
7802
- * @memberof HospitalItemModel
7688
+ * @memberof HospitalModel
7803
7689
  */
7804
- 'timeZone'?: string | null;
7690
+ 'logo'?: string | null;
7805
7691
  /**
7806
7692
  *
7807
7693
  * @type {string}
7808
- * @memberof HospitalItemModel
7694
+ * @memberof HospitalModel
7809
7695
  */
7810
- 'websiteUrl'?: string | null;
7696
+ 'countryId'?: string;
7811
7697
  /**
7812
7698
  *
7813
- * @type {number}
7814
- * @memberof HospitalItemModel
7699
+ * @type {string}
7700
+ * @memberof HospitalModel
7815
7701
  */
7816
- 'articlesCount'?: number;
7702
+ 'countryName'?: string | null;
7817
7703
  /**
7818
7704
  *
7819
- * @type {number}
7820
- * @memberof HospitalItemModel
7705
+ * @type {MarketingType}
7706
+ * @memberof HospitalModel
7821
7707
  */
7822
- 'packagesCount'?: number;
7708
+ 'marketingType'?: MarketingType;
7823
7709
  /**
7824
7710
  *
7825
- * @type {number}
7826
- * @memberof HospitalItemModel
7711
+ * @type {string}
7712
+ * @memberof HospitalModel
7827
7713
  */
7828
- 'equipmentsCount'?: number;
7714
+ 'timeZone'?: string | null;
7829
7715
  /**
7830
7716
  *
7831
- * @type {number}
7832
- * @memberof HospitalItemModel
7717
+ * @type {string}
7718
+ * @memberof HospitalModel
7833
7719
  */
7834
- 'reviewsCount'?: number;
7720
+ 'websiteUrl'?: string | null;
7835
7721
  /**
7836
7722
  *
7837
- * @type {number}
7838
- * @memberof HospitalItemModel
7723
+ * @type {boolean}
7724
+ * @memberof HospitalModel
7839
7725
  */
7840
- 'departmentsCount'?: number;
7726
+ 'paymentEnabled'?: boolean;
7841
7727
  /**
7842
7728
  *
7843
- * @type {number}
7844
- * @memberof HospitalItemModel
7729
+ * @type {boolean}
7730
+ * @memberof HospitalModel
7845
7731
  */
7846
- 'specialtiesCount'?: number;
7732
+ 'confirmed'?: boolean;
7847
7733
  /**
7848
7734
  *
7849
- * @type {number}
7850
- * @memberof HospitalItemModel
7735
+ * @type {LocationModel}
7736
+ * @memberof HospitalModel
7851
7737
  */
7852
- 'accreditationsCount'?: number;
7853
- /**
7854
- *
7855
- * @type {number}
7856
- * @memberof HospitalItemModel
7857
- */
7858
- 'doctorAffiliationsCount'?: number;
7859
- /**
7860
- *
7861
- * @type {number}
7862
- * @memberof HospitalItemModel
7863
- */
7864
- 'managerAffiliationsCount'?: number;
7865
- /**
7866
- *
7867
- * @type {string}
7868
- * @memberof HospitalItemModel
7869
- */
7870
- 'specialtiesSummerized'?: string | null;
7871
- /**
7872
- *
7873
- * @type {boolean}
7874
- * @memberof HospitalItemModel
7875
- */
7876
- 'paymentEnabled'?: boolean;
7877
- /**
7878
- *
7879
- * @type {boolean}
7880
- * @memberof HospitalItemModel
7881
- */
7882
- 'confirmed'?: boolean;
7883
- /**
7884
- *
7885
- * @type {Array<AwardModel>}
7886
- * @memberof HospitalItemModel
7887
- */
7888
- 'awards'?: Array<AwardModel> | null;
7889
- /**
7890
- *
7891
- * @type {Array<MediaModel>}
7892
- * @memberof HospitalItemModel
7893
- */
7894
- 'medias'?: Array<MediaModel> | null;
7895
- /**
7896
- *
7897
- * @type {Array<AccreditationModel>}
7898
- * @memberof HospitalItemModel
7899
- */
7900
- 'accreditations'?: Array<AccreditationModel> | null;
7901
- /**
7902
- *
7903
- * @type {Array<HospitalEvaluationModel>}
7904
- * @memberof HospitalItemModel
7905
- */
7906
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
7907
- /**
7908
- *
7909
- * @type {LocationModel}
7910
- * @memberof HospitalItemModel
7911
- */
7912
- 'location'?: LocationModel;
7738
+ 'location'?: LocationModel;
7913
7739
  /**
7914
7740
  *
7915
7741
  * @type {AuditableEntity}
7916
- * @memberof HospitalItemModel
7917
- */
7918
- 'auditableEntity'?: AuditableEntity;
7919
- }
7920
- /**
7921
- *
7922
- * @export
7923
- * @interface HospitalModel
7924
- */
7925
- export interface HospitalModel {
7926
- /**
7927
- *
7928
- * @type {string}
7929
- * @memberof HospitalModel
7930
- */
7931
- 'id'?: string;
7932
- /**
7933
- *
7934
- * @type {string}
7935
7742
  * @memberof HospitalModel
7936
7743
  */
7937
- 'name'?: string | null;
7744
+ 'auditableEntity'?: AuditableEntity;
7938
7745
  /**
7939
7746
  *
7940
7747
  * @type {string}
7941
7748
  * @memberof HospitalModel
7942
7749
  */
7943
- 'slug'?: string | null;
7750
+ 'languageCode'?: string | null;
7944
7751
  /**
7945
7752
  *
7946
7753
  * @type {string}
@@ -7952,13 +7759,13 @@ export interface HospitalModel {
7952
7759
  * @type {string}
7953
7760
  * @memberof HospitalModel
7954
7761
  */
7955
- 'logo'?: string | null;
7762
+ 'overview'?: string | null;
7956
7763
  /**
7957
7764
  *
7958
7765
  * @type {string}
7959
7766
  * @memberof HospitalModel
7960
7767
  */
7961
- 'overview'?: string | null;
7768
+ 'content'?: string | null;
7962
7769
  /**
7963
7770
  *
7964
7771
  * @type {number}
@@ -7989,24 +7796,6 @@ export interface HospitalModel {
7989
7796
  * @memberof HospitalModel
7990
7797
  */
7991
7798
  'doctorCount'?: number | null;
7992
- /**
7993
- *
7994
- * @type {string}
7995
- * @memberof HospitalModel
7996
- */
7997
- 'countryId'?: string;
7998
- /**
7999
- *
8000
- * @type {string}
8001
- * @memberof HospitalModel
8002
- */
8003
- 'countryName'?: string | null;
8004
- /**
8005
- *
8006
- * @type {MarketingType}
8007
- * @memberof HospitalModel
8008
- */
8009
- 'marketingType'?: MarketingType;
8010
7799
  /**
8011
7800
  *
8012
7801
  * @type {boolean}
@@ -8019,138 +7808,6 @@ export interface HospitalModel {
8019
7808
  * @memberof HospitalModel
8020
7809
  */
8021
7810
  'consultationFee'?: number | null;
8022
- /**
8023
- *
8024
- * @type {string}
8025
- * @memberof HospitalModel
8026
- */
8027
- 'timeZone'?: string | null;
8028
- /**
8029
- *
8030
- * @type {string}
8031
- * @memberof HospitalModel
8032
- */
8033
- 'websiteUrl'?: string | null;
8034
- /**
8035
- *
8036
- * @type {number}
8037
- * @memberof HospitalModel
8038
- */
8039
- 'articlesCount'?: number;
8040
- /**
8041
- *
8042
- * @type {number}
8043
- * @memberof HospitalModel
8044
- */
8045
- 'packagesCount'?: number;
8046
- /**
8047
- *
8048
- * @type {number}
8049
- * @memberof HospitalModel
8050
- */
8051
- 'equipmentsCount'?: number;
8052
- /**
8053
- *
8054
- * @type {number}
8055
- * @memberof HospitalModel
8056
- */
8057
- 'reviewsCount'?: number;
8058
- /**
8059
- *
8060
- * @type {number}
8061
- * @memberof HospitalModel
8062
- */
8063
- 'departmentsCount'?: number;
8064
- /**
8065
- *
8066
- * @type {number}
8067
- * @memberof HospitalModel
8068
- */
8069
- 'specialtiesCount'?: number;
8070
- /**
8071
- *
8072
- * @type {number}
8073
- * @memberof HospitalModel
8074
- */
8075
- 'accreditationsCount'?: number;
8076
- /**
8077
- *
8078
- * @type {number}
8079
- * @memberof HospitalModel
8080
- */
8081
- 'doctorAffiliationsCount'?: number;
8082
- /**
8083
- *
8084
- * @type {number}
8085
- * @memberof HospitalModel
8086
- */
8087
- 'managerAffiliationsCount'?: number;
8088
- /**
8089
- *
8090
- * @type {string}
8091
- * @memberof HospitalModel
8092
- */
8093
- 'specialtiesSummerized'?: string | null;
8094
- /**
8095
- *
8096
- * @type {boolean}
8097
- * @memberof HospitalModel
8098
- */
8099
- 'paymentEnabled'?: boolean;
8100
- /**
8101
- *
8102
- * @type {boolean}
8103
- * @memberof HospitalModel
8104
- */
8105
- 'confirmed'?: boolean;
8106
- /**
8107
- *
8108
- * @type {Array<AwardModel>}
8109
- * @memberof HospitalModel
8110
- */
8111
- 'awards'?: Array<AwardModel> | null;
8112
- /**
8113
- *
8114
- * @type {Array<MediaModel>}
8115
- * @memberof HospitalModel
8116
- */
8117
- 'medias'?: Array<MediaModel> | null;
8118
- /**
8119
- *
8120
- * @type {Array<AccreditationModel>}
8121
- * @memberof HospitalModel
8122
- */
8123
- 'accreditations'?: Array<AccreditationModel> | null;
8124
- /**
8125
- *
8126
- * @type {Array<HospitalEvaluationModel>}
8127
- * @memberof HospitalModel
8128
- */
8129
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
8130
- /**
8131
- *
8132
- * @type {LocationModel}
8133
- * @memberof HospitalModel
8134
- */
8135
- 'location'?: LocationModel;
8136
- /**
8137
- *
8138
- * @type {AuditableEntity}
8139
- * @memberof HospitalModel
8140
- */
8141
- 'auditableEntity'?: AuditableEntity;
8142
- /**
8143
- *
8144
- * @type {string}
8145
- * @memberof HospitalModel
8146
- */
8147
- 'languageCode'?: string | null;
8148
- /**
8149
- *
8150
- * @type {string}
8151
- * @memberof HospitalModel
8152
- */
8153
- 'content'?: string | null;
8154
7811
  /**
8155
7812
  *
8156
7813
  * @type {string}
@@ -8171,22 +7828,10 @@ export interface HospitalModel {
8171
7828
  'customStyle'?: string | null;
8172
7829
  /**
8173
7830
  *
8174
- * @type {Array<WorkingDay>}
8175
- * @memberof HospitalModel
8176
- */
8177
- 'hospitalWorkingDays'?: Array<WorkingDay> | null;
8178
- /**
8179
- *
8180
- * @type {Array<SnsHandle>}
8181
- * @memberof HospitalModel
8182
- */
8183
- 'hospitalSnsHandles'?: Array<SnsHandle> | null;
8184
- /**
8185
- *
8186
- * @type {Array<LocalizedUrlModel>}
7831
+ * @type {Array<MediaModel>}
8187
7832
  * @memberof HospitalModel
8188
7833
  */
8189
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
7834
+ 'medias'?: Array<MediaModel> | null;
8190
7835
  }
8191
7836
  /**
8192
7837
  *
@@ -8662,19 +8307,13 @@ export interface HospitalSpecialtyItemModel {
8662
8307
  * @type {string}
8663
8308
  * @memberof HospitalSpecialtyItemModel
8664
8309
  */
8665
- 'hospitalId'?: string;
8666
- /**
8667
- *
8668
- * @type {string}
8669
- * @memberof HospitalSpecialtyItemModel
8670
- */
8671
- 'hospitalName'?: string | null;
8310
+ 'name'?: string | null;
8672
8311
  /**
8673
8312
  *
8674
8313
  * @type {string}
8675
8314
  * @memberof HospitalSpecialtyItemModel
8676
8315
  */
8677
- 'hospitalSlug'?: string | null;
8316
+ 'slug'?: string | null;
8678
8317
  /**
8679
8318
  *
8680
8319
  * @type {string}
@@ -8692,73 +8331,13 @@ export interface HospitalSpecialtyItemModel {
8692
8331
  * @type {string}
8693
8332
  * @memberof HospitalSpecialtyItemModel
8694
8333
  */
8695
- 'specialtyTypeId'?: string;
8696
- /**
8697
- *
8698
- * @type {string}
8699
- * @memberof HospitalSpecialtyItemModel
8700
- */
8701
- 'specialtyTypeName'?: string | null;
8334
+ 'specialtySlug'?: string | null;
8702
8335
  /**
8703
8336
  *
8704
8337
  * @type {MarketingType}
8705
8338
  * @memberof HospitalSpecialtyItemModel
8706
8339
  */
8707
8340
  'marketingType'?: MarketingType;
8708
- /**
8709
- *
8710
- * @type {string}
8711
- * @memberof HospitalSpecialtyItemModel
8712
- */
8713
- 'name'?: string | null;
8714
- /**
8715
- *
8716
- * @type {string}
8717
- * @memberof HospitalSpecialtyItemModel
8718
- */
8719
- 'slug'?: string | null;
8720
- /**
8721
- *
8722
- * @type {string}
8723
- * @memberof HospitalSpecialtyItemModel
8724
- */
8725
- 'description'?: string | null;
8726
- /**
8727
- *
8728
- * @type {number}
8729
- * @memberof HospitalSpecialtyItemModel
8730
- */
8731
- 'serviceCount'?: number;
8732
- /**
8733
- *
8734
- * @type {Array<HospitalServiceItemModel>}
8735
- * @memberof HospitalSpecialtyItemModel
8736
- */
8737
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
8738
- /**
8739
- *
8740
- * @type {string}
8741
- * @memberof HospitalSpecialtyItemModel
8742
- */
8743
- 'photo'?: string | null;
8744
- /**
8745
- *
8746
- * @type {string}
8747
- * @memberof HospitalSpecialtyItemModel
8748
- */
8749
- 'photoThumbnail'?: string | null;
8750
- /**
8751
- *
8752
- * @type {string}
8753
- * @memberof HospitalSpecialtyItemModel
8754
- */
8755
- 'background'?: string | null;
8756
- /**
8757
- *
8758
- * @type {string}
8759
- * @memberof HospitalSpecialtyItemModel
8760
- */
8761
- 'backgroundThumbnail'?: string | null;
8762
8341
  /**
8763
8342
  *
8764
8343
  * @type {number}
@@ -8771,12 +8350,6 @@ export interface HospitalSpecialtyItemModel {
8771
8350
  * @memberof HospitalSpecialtyItemModel
8772
8351
  */
8773
8352
  'confirmed'?: boolean;
8774
- /**
8775
- *
8776
- * @type {Array<MediaModel>}
8777
- * @memberof HospitalSpecialtyItemModel
8778
- */
8779
- 'medias'?: Array<MediaModel> | null;
8780
8353
  /**
8781
8354
  *
8782
8355
  * @type {AuditableEntity}
@@ -8801,19 +8374,13 @@ export interface HospitalSpecialtyModel {
8801
8374
  * @type {string}
8802
8375
  * @memberof HospitalSpecialtyModel
8803
8376
  */
8804
- 'hospitalId'?: string;
8805
- /**
8806
- *
8807
- * @type {string}
8808
- * @memberof HospitalSpecialtyModel
8809
- */
8810
- 'hospitalName'?: string | null;
8377
+ 'name'?: string | null;
8811
8378
  /**
8812
8379
  *
8813
8380
  * @type {string}
8814
8381
  * @memberof HospitalSpecialtyModel
8815
8382
  */
8816
- 'hospitalSlug'?: string | null;
8383
+ 'slug'?: string | null;
8817
8384
  /**
8818
8385
  *
8819
8386
  * @type {string}
@@ -8831,13 +8398,7 @@ export interface HospitalSpecialtyModel {
8831
8398
  * @type {string}
8832
8399
  * @memberof HospitalSpecialtyModel
8833
8400
  */
8834
- 'specialtyTypeId'?: string;
8835
- /**
8836
- *
8837
- * @type {string}
8838
- * @memberof HospitalSpecialtyModel
8839
- */
8840
- 'specialtyTypeName'?: string | null;
8401
+ 'specialtySlug'?: string | null;
8841
8402
  /**
8842
8403
  *
8843
8404
  * @type {MarketingType}
@@ -8846,106 +8407,106 @@ export interface HospitalSpecialtyModel {
8846
8407
  'marketingType'?: MarketingType;
8847
8408
  /**
8848
8409
  *
8849
- * @type {string}
8410
+ * @type {number}
8850
8411
  * @memberof HospitalSpecialtyModel
8851
8412
  */
8852
- 'name'?: string | null;
8413
+ 'order'?: number;
8853
8414
  /**
8854
8415
  *
8855
- * @type {string}
8416
+ * @type {boolean}
8856
8417
  * @memberof HospitalSpecialtyModel
8857
8418
  */
8858
- 'slug'?: string | null;
8419
+ 'confirmed'?: boolean;
8859
8420
  /**
8860
8421
  *
8861
- * @type {string}
8422
+ * @type {AuditableEntity}
8862
8423
  * @memberof HospitalSpecialtyModel
8863
8424
  */
8864
- 'description'?: string | null;
8425
+ 'auditableEntity'?: AuditableEntity;
8865
8426
  /**
8866
8427
  *
8867
- * @type {number}
8428
+ * @type {string}
8868
8429
  * @memberof HospitalSpecialtyModel
8869
8430
  */
8870
- 'serviceCount'?: number;
8431
+ 'languageCode'?: string | null;
8871
8432
  /**
8872
8433
  *
8873
- * @type {Array<HospitalServiceItemModel>}
8434
+ * @type {string}
8874
8435
  * @memberof HospitalSpecialtyModel
8875
8436
  */
8876
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
8437
+ 'description'?: string | null;
8877
8438
  /**
8878
8439
  *
8879
8440
  * @type {string}
8880
8441
  * @memberof HospitalSpecialtyModel
8881
8442
  */
8882
- 'photo'?: string | null;
8443
+ 'content'?: string | null;
8883
8444
  /**
8884
8445
  *
8885
8446
  * @type {string}
8886
8447
  * @memberof HospitalSpecialtyModel
8887
8448
  */
8888
- 'photoThumbnail'?: string | null;
8449
+ 'hospitalId'?: string;
8889
8450
  /**
8890
8451
  *
8891
8452
  * @type {string}
8892
8453
  * @memberof HospitalSpecialtyModel
8893
8454
  */
8894
- 'background'?: string | null;
8455
+ 'hospitalName'?: string | null;
8895
8456
  /**
8896
8457
  *
8897
8458
  * @type {string}
8898
8459
  * @memberof HospitalSpecialtyModel
8899
8460
  */
8900
- 'backgroundThumbnail'?: string | null;
8461
+ 'hospitalSlug'?: string | null;
8901
8462
  /**
8902
8463
  *
8903
- * @type {number}
8464
+ * @type {string}
8904
8465
  * @memberof HospitalSpecialtyModel
8905
8466
  */
8906
- 'order'?: number;
8467
+ 'specialtyTypeId'?: string;
8907
8468
  /**
8908
8469
  *
8909
- * @type {boolean}
8470
+ * @type {string}
8910
8471
  * @memberof HospitalSpecialtyModel
8911
8472
  */
8912
- 'confirmed'?: boolean;
8473
+ 'specialtyTypeName'?: string | null;
8913
8474
  /**
8914
8475
  *
8915
- * @type {Array<MediaModel>}
8476
+ * @type {string}
8916
8477
  * @memberof HospitalSpecialtyModel
8917
8478
  */
8918
- 'medias'?: Array<MediaModel> | null;
8479
+ 'photo'?: string | null;
8919
8480
  /**
8920
8481
  *
8921
- * @type {AuditableEntity}
8482
+ * @type {string}
8922
8483
  * @memberof HospitalSpecialtyModel
8923
8484
  */
8924
- 'auditableEntity'?: AuditableEntity;
8485
+ 'photoThumbnail'?: string | null;
8925
8486
  /**
8926
8487
  *
8927
8488
  * @type {string}
8928
8489
  * @memberof HospitalSpecialtyModel
8929
8490
  */
8930
- 'content'?: string | null;
8491
+ 'background'?: string | null;
8931
8492
  /**
8932
8493
  *
8933
8494
  * @type {string}
8934
8495
  * @memberof HospitalSpecialtyModel
8935
8496
  */
8936
- 'customStyle'?: string | null;
8497
+ 'backgroundThumbnail'?: string | null;
8937
8498
  /**
8938
8499
  *
8939
8500
  * @type {string}
8940
8501
  * @memberof HospitalSpecialtyModel
8941
8502
  */
8942
- 'languageCode'?: string | null;
8503
+ 'customStyle'?: string | null;
8943
8504
  /**
8944
8505
  *
8945
- * @type {Array<LocalizedUrlModel>}
8506
+ * @type {Array<MediaModel>}
8946
8507
  * @memberof HospitalSpecialtyModel
8947
8508
  */
8948
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
8509
+ 'medias'?: Array<MediaModel> | null;
8949
8510
  }
8950
8511
  /**
8951
8512
  *
@@ -8971,12 +8532,6 @@ export interface HospitalSpecialtySimpleItemModel {
8971
8532
  * @memberof HospitalSpecialtySimpleItemModel
8972
8533
  */
8973
8534
  'slug'?: string | null;
8974
- /**
8975
- *
8976
- * @type {string}
8977
- * @memberof HospitalSpecialtySimpleItemModel
8978
- */
8979
- 'description'?: string | null;
8980
8535
  /**
8981
8536
  *
8982
8537
  * @type {string}
@@ -14167,43 +13722,6 @@ export interface UserModel {
14167
13722
  */
14168
13723
  'locations'?: Array<UserLocationModel> | null;
14169
13724
  }
14170
- /**
14171
- *
14172
- * @export
14173
- * @interface WorkingDay
14174
- */
14175
- export interface WorkingDay {
14176
- /**
14177
- *
14178
- * @type {string}
14179
- * @memberof WorkingDay
14180
- */
14181
- 'id'?: string;
14182
- /**
14183
- *
14184
- * @type {string}
14185
- * @memberof WorkingDay
14186
- */
14187
- 'dayOfWeek'?: string | null;
14188
- /**
14189
- *
14190
- * @type {Date}
14191
- * @memberof WorkingDay
14192
- */
14193
- 'timeFrom'?: Date;
14194
- /**
14195
- *
14196
- * @type {Date}
14197
- * @memberof WorkingDay
14198
- */
14199
- 'timeTo'?: Date;
14200
- /**
14201
- *
14202
- * @type {boolean}
14203
- * @memberof WorkingDay
14204
- */
14205
- 'checkHoliday'?: boolean;
14206
- }
14207
13725
  /**
14208
13726
  *
14209
13727
  * @export