ch-api-client-typescript2 3.3.5 → 3.4.1
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 +426 -894
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +42 -105
- package/package.json +1 -1
- package/src/api.ts +456 -960
package/lib/api.d.ts
CHANGED
|
@@ -29,19 +29,7 @@ export interface AboutUsPageItemModel {
|
|
|
29
29
|
* @type {string}
|
|
30
30
|
* @memberof AboutUsPageItemModel
|
|
31
31
|
*/
|
|
32
|
-
'
|
|
33
|
-
/**
|
|
34
|
-
*
|
|
35
|
-
* @type {string}
|
|
36
|
-
* @memberof AboutUsPageItemModel
|
|
37
|
-
*/
|
|
38
|
-
'hospitalName'?: string | null;
|
|
39
|
-
/**
|
|
40
|
-
*
|
|
41
|
-
* @type {string}
|
|
42
|
-
* @memberof AboutUsPageItemModel
|
|
43
|
-
*/
|
|
44
|
-
'hospitalSlug'?: string | null;
|
|
32
|
+
'languageCode'?: string | null;
|
|
45
33
|
/**
|
|
46
34
|
*
|
|
47
35
|
* @type {string}
|
|
@@ -54,24 +42,12 @@ export interface AboutUsPageItemModel {
|
|
|
54
42
|
* @memberof AboutUsPageItemModel
|
|
55
43
|
*/
|
|
56
44
|
'slug'?: string | null;
|
|
57
|
-
/**
|
|
58
|
-
*
|
|
59
|
-
* @type {string}
|
|
60
|
-
* @memberof AboutUsPageItemModel
|
|
61
|
-
*/
|
|
62
|
-
'description'?: string | null;
|
|
63
45
|
/**
|
|
64
46
|
*
|
|
65
47
|
* @type {boolean}
|
|
66
48
|
* @memberof AboutUsPageItemModel
|
|
67
49
|
*/
|
|
68
50
|
'confirmed'?: boolean;
|
|
69
|
-
/**
|
|
70
|
-
*
|
|
71
|
-
* @type {Array<MediaModel>}
|
|
72
|
-
* @memberof AboutUsPageItemModel
|
|
73
|
-
*/
|
|
74
|
-
'medias'?: Array<MediaModel> | null;
|
|
75
51
|
/**
|
|
76
52
|
*
|
|
77
53
|
* @type {AuditableEntity}
|
|
@@ -96,19 +72,7 @@ export interface AboutUsPageModel {
|
|
|
96
72
|
* @type {string}
|
|
97
73
|
* @memberof AboutUsPageModel
|
|
98
74
|
*/
|
|
99
|
-
'
|
|
100
|
-
/**
|
|
101
|
-
*
|
|
102
|
-
* @type {string}
|
|
103
|
-
* @memberof AboutUsPageModel
|
|
104
|
-
*/
|
|
105
|
-
'hospitalName'?: string | null;
|
|
106
|
-
/**
|
|
107
|
-
*
|
|
108
|
-
* @type {string}
|
|
109
|
-
* @memberof AboutUsPageModel
|
|
110
|
-
*/
|
|
111
|
-
'hospitalSlug'?: string | null;
|
|
75
|
+
'languageCode'?: string | null;
|
|
112
76
|
/**
|
|
113
77
|
*
|
|
114
78
|
* @type {string}
|
|
@@ -121,12 +85,6 @@ export interface AboutUsPageModel {
|
|
|
121
85
|
* @memberof AboutUsPageModel
|
|
122
86
|
*/
|
|
123
87
|
'slug'?: string | null;
|
|
124
|
-
/**
|
|
125
|
-
*
|
|
126
|
-
* @type {string}
|
|
127
|
-
* @memberof AboutUsPageModel
|
|
128
|
-
*/
|
|
129
|
-
'description'?: string | null;
|
|
130
88
|
/**
|
|
131
89
|
*
|
|
132
90
|
* @type {boolean}
|
|
@@ -135,22 +93,22 @@ export interface AboutUsPageModel {
|
|
|
135
93
|
'confirmed'?: boolean;
|
|
136
94
|
/**
|
|
137
95
|
*
|
|
138
|
-
* @type {
|
|
96
|
+
* @type {AuditableEntity}
|
|
139
97
|
* @memberof AboutUsPageModel
|
|
140
98
|
*/
|
|
141
|
-
'
|
|
99
|
+
'auditableEntity'?: AuditableEntity;
|
|
142
100
|
/**
|
|
143
101
|
*
|
|
144
|
-
* @type {
|
|
102
|
+
* @type {string}
|
|
145
103
|
* @memberof AboutUsPageModel
|
|
146
104
|
*/
|
|
147
|
-
'
|
|
105
|
+
'description'?: string | null;
|
|
148
106
|
/**
|
|
149
107
|
*
|
|
150
108
|
* @type {string}
|
|
151
109
|
* @memberof AboutUsPageModel
|
|
152
110
|
*/
|
|
153
|
-
'
|
|
111
|
+
'overview'?: string | null;
|
|
154
112
|
/**
|
|
155
113
|
*
|
|
156
114
|
* @type {string}
|
|
@@ -181,6 +139,12 @@ export interface AboutUsPageModel {
|
|
|
181
139
|
* @memberof AboutUsPageModel
|
|
182
140
|
*/
|
|
183
141
|
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
142
|
+
/**
|
|
143
|
+
*
|
|
144
|
+
* @type {Array<MediaModel>}
|
|
145
|
+
* @memberof AboutUsPageModel
|
|
146
|
+
*/
|
|
147
|
+
'medias'?: Array<MediaModel> | null;
|
|
184
148
|
}
|
|
185
149
|
/**
|
|
186
150
|
*
|
|
@@ -367,6 +331,12 @@ export interface ArticleContributorItemModel {
|
|
|
367
331
|
* @memberof ArticleContributorItemModel
|
|
368
332
|
*/
|
|
369
333
|
'contributorId'?: string;
|
|
334
|
+
/**
|
|
335
|
+
*
|
|
336
|
+
* @type {string}
|
|
337
|
+
* @memberof ArticleContributorItemModel
|
|
338
|
+
*/
|
|
339
|
+
'languageCode'?: string | null;
|
|
370
340
|
/**
|
|
371
341
|
*
|
|
372
342
|
* @type {string}
|
|
@@ -381,28 +351,28 @@ export interface ArticleContributorItemModel {
|
|
|
381
351
|
'contributorSlug'?: string | null;
|
|
382
352
|
/**
|
|
383
353
|
*
|
|
384
|
-
* @type {
|
|
354
|
+
* @type {boolean}
|
|
385
355
|
* @memberof ArticleContributorItemModel
|
|
386
356
|
*/
|
|
387
|
-
'
|
|
357
|
+
'contributorConfirmed'?: boolean;
|
|
388
358
|
/**
|
|
389
359
|
*
|
|
390
360
|
* @type {string}
|
|
391
361
|
* @memberof ArticleContributorItemModel
|
|
392
362
|
*/
|
|
393
|
-
'
|
|
363
|
+
'contributorEmail'?: string | null;
|
|
394
364
|
/**
|
|
395
365
|
*
|
|
396
366
|
* @type {string}
|
|
397
367
|
* @memberof ArticleContributorItemModel
|
|
398
368
|
*/
|
|
399
|
-
'
|
|
369
|
+
'contributorPhoto'?: string | null;
|
|
400
370
|
/**
|
|
401
371
|
*
|
|
402
372
|
* @type {string}
|
|
403
373
|
* @memberof ArticleContributorItemModel
|
|
404
374
|
*/
|
|
405
|
-
'
|
|
375
|
+
'contributorPhotoThumbnail'?: string | null;
|
|
406
376
|
/**
|
|
407
377
|
*
|
|
408
378
|
* @type {ContributionType}
|
|
@@ -421,24 +391,12 @@ export interface ArticleContributorItemModel {
|
|
|
421
391
|
* @memberof ArticleContributorItemModel
|
|
422
392
|
*/
|
|
423
393
|
'order'?: number;
|
|
424
|
-
/**
|
|
425
|
-
*
|
|
426
|
-
* @type {boolean}
|
|
427
|
-
* @memberof ArticleContributorItemModel
|
|
428
|
-
*/
|
|
429
|
-
'confirmed'?: boolean;
|
|
430
394
|
/**
|
|
431
395
|
*
|
|
432
396
|
* @type {AuditableEntity}
|
|
433
397
|
* @memberof ArticleContributorItemModel
|
|
434
398
|
*/
|
|
435
399
|
'auditableEntity'?: AuditableEntity;
|
|
436
|
-
/**
|
|
437
|
-
*
|
|
438
|
-
* @type {Array<SnsHandleModel>}
|
|
439
|
-
* @memberof ArticleContributorItemModel
|
|
440
|
-
*/
|
|
441
|
-
'contributorSnsHandles'?: Array<SnsHandleModel> | null;
|
|
442
400
|
}
|
|
443
401
|
/**
|
|
444
402
|
*
|
|
@@ -458,6 +416,12 @@ export interface ArticleContributorModel {
|
|
|
458
416
|
* @memberof ArticleContributorModel
|
|
459
417
|
*/
|
|
460
418
|
'contributorId'?: string;
|
|
419
|
+
/**
|
|
420
|
+
*
|
|
421
|
+
* @type {string}
|
|
422
|
+
* @memberof ArticleContributorModel
|
|
423
|
+
*/
|
|
424
|
+
'languageCode'?: string | null;
|
|
461
425
|
/**
|
|
462
426
|
*
|
|
463
427
|
* @type {string}
|
|
@@ -472,28 +436,28 @@ export interface ArticleContributorModel {
|
|
|
472
436
|
'contributorSlug'?: string | null;
|
|
473
437
|
/**
|
|
474
438
|
*
|
|
475
|
-
* @type {
|
|
439
|
+
* @type {boolean}
|
|
476
440
|
* @memberof ArticleContributorModel
|
|
477
441
|
*/
|
|
478
|
-
'
|
|
442
|
+
'contributorConfirmed'?: boolean;
|
|
479
443
|
/**
|
|
480
444
|
*
|
|
481
445
|
* @type {string}
|
|
482
446
|
* @memberof ArticleContributorModel
|
|
483
447
|
*/
|
|
484
|
-
'
|
|
448
|
+
'contributorEmail'?: string | null;
|
|
485
449
|
/**
|
|
486
450
|
*
|
|
487
451
|
* @type {string}
|
|
488
452
|
* @memberof ArticleContributorModel
|
|
489
453
|
*/
|
|
490
|
-
'
|
|
454
|
+
'contributorPhoto'?: string | null;
|
|
491
455
|
/**
|
|
492
456
|
*
|
|
493
457
|
* @type {string}
|
|
494
458
|
* @memberof ArticleContributorModel
|
|
495
459
|
*/
|
|
496
|
-
'
|
|
460
|
+
'contributorPhotoThumbnail'?: string | null;
|
|
497
461
|
/**
|
|
498
462
|
*
|
|
499
463
|
* @type {ContributionType}
|
|
@@ -512,12 +476,6 @@ export interface ArticleContributorModel {
|
|
|
512
476
|
* @memberof ArticleContributorModel
|
|
513
477
|
*/
|
|
514
478
|
'order'?: number;
|
|
515
|
-
/**
|
|
516
|
-
*
|
|
517
|
-
* @type {boolean}
|
|
518
|
-
* @memberof ArticleContributorModel
|
|
519
|
-
*/
|
|
520
|
-
'confirmed'?: boolean;
|
|
521
479
|
/**
|
|
522
480
|
*
|
|
523
481
|
* @type {AuditableEntity}
|
|
@@ -526,16 +484,16 @@ export interface ArticleContributorModel {
|
|
|
526
484
|
'auditableEntity'?: AuditableEntity;
|
|
527
485
|
/**
|
|
528
486
|
*
|
|
529
|
-
* @type {
|
|
487
|
+
* @type {string}
|
|
530
488
|
* @memberof ArticleContributorModel
|
|
531
489
|
*/
|
|
532
|
-
'
|
|
490
|
+
'contributorDescription'?: string | null;
|
|
533
491
|
/**
|
|
534
492
|
*
|
|
535
493
|
* @type {string}
|
|
536
494
|
* @memberof ArticleContributorModel
|
|
537
495
|
*/
|
|
538
|
-
'
|
|
496
|
+
'overview'?: string | null;
|
|
539
497
|
/**
|
|
540
498
|
*
|
|
541
499
|
* @type {string}
|
|
@@ -547,7 +505,7 @@ export interface ArticleContributorModel {
|
|
|
547
505
|
* @type {Array<SnsHandle>}
|
|
548
506
|
* @memberof ArticleContributorModel
|
|
549
507
|
*/
|
|
550
|
-
'
|
|
508
|
+
'contributorSnsHandles'?: Array<SnsHandle> | null;
|
|
551
509
|
/**
|
|
552
510
|
*
|
|
553
511
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -591,31 +549,25 @@ export interface ArticleItemModel {
|
|
|
591
549
|
* @type {string}
|
|
592
550
|
* @memberof ArticleItemModel
|
|
593
551
|
*/
|
|
594
|
-
'
|
|
595
|
-
/**
|
|
596
|
-
*
|
|
597
|
-
* @type {string}
|
|
598
|
-
* @memberof ArticleItemModel
|
|
599
|
-
*/
|
|
600
|
-
'slug'?: string | null;
|
|
552
|
+
'languageCode'?: string | null;
|
|
601
553
|
/**
|
|
602
554
|
*
|
|
603
555
|
* @type {string}
|
|
604
556
|
* @memberof ArticleItemModel
|
|
605
557
|
*/
|
|
606
|
-
'
|
|
558
|
+
'name'?: string | null;
|
|
607
559
|
/**
|
|
608
560
|
*
|
|
609
561
|
* @type {string}
|
|
610
562
|
* @memberof ArticleItemModel
|
|
611
563
|
*/
|
|
612
|
-
'
|
|
564
|
+
'slug'?: string | null;
|
|
613
565
|
/**
|
|
614
566
|
*
|
|
615
|
-
* @type {
|
|
567
|
+
* @type {boolean}
|
|
616
568
|
* @memberof ArticleItemModel
|
|
617
569
|
*/
|
|
618
|
-
'
|
|
570
|
+
'confirmed'?: boolean;
|
|
619
571
|
/**
|
|
620
572
|
*
|
|
621
573
|
* @type {MarketingType}
|
|
@@ -640,54 +592,24 @@ export interface ArticleItemModel {
|
|
|
640
592
|
* @memberof ArticleItemModel
|
|
641
593
|
*/
|
|
642
594
|
'hospitalId'?: string;
|
|
643
|
-
/**
|
|
644
|
-
*
|
|
645
|
-
* @type {string}
|
|
646
|
-
* @memberof ArticleItemModel
|
|
647
|
-
*/
|
|
648
|
-
'hospitalName'?: string | null;
|
|
649
|
-
/**
|
|
650
|
-
*
|
|
651
|
-
* @type {string}
|
|
652
|
-
* @memberof ArticleItemModel
|
|
653
|
-
*/
|
|
654
|
-
'hospitalSlug'?: string | null;
|
|
655
595
|
/**
|
|
656
596
|
*
|
|
657
597
|
* @type {string}
|
|
658
598
|
* @memberof ArticleItemModel
|
|
659
599
|
*/
|
|
660
600
|
'youtubeUrl'?: string | null;
|
|
661
|
-
/**
|
|
662
|
-
*
|
|
663
|
-
* @type {boolean}
|
|
664
|
-
* @memberof ArticleItemModel
|
|
665
|
-
*/
|
|
666
|
-
'confirmed'?: boolean;
|
|
667
601
|
/**
|
|
668
602
|
*
|
|
669
603
|
* @type {Array<ArticleTagItemModel>}
|
|
670
604
|
* @memberof ArticleItemModel
|
|
671
605
|
*/
|
|
672
606
|
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
673
|
-
/**
|
|
674
|
-
*
|
|
675
|
-
* @type {Array<ArticleContributorItemModel>}
|
|
676
|
-
* @memberof ArticleItemModel
|
|
677
|
-
*/
|
|
678
|
-
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
679
607
|
/**
|
|
680
608
|
*
|
|
681
609
|
* @type {Array<MediaModel>}
|
|
682
610
|
* @memberof ArticleItemModel
|
|
683
611
|
*/
|
|
684
612
|
'medias'?: Array<MediaModel> | null;
|
|
685
|
-
/**
|
|
686
|
-
*
|
|
687
|
-
* @type {Array<SourceModel>}
|
|
688
|
-
* @memberof ArticleItemModel
|
|
689
|
-
*/
|
|
690
|
-
'sources'?: Array<SourceModel> | null;
|
|
691
613
|
/**
|
|
692
614
|
*
|
|
693
615
|
* @type {AuditableEntity}
|
|
@@ -712,31 +634,25 @@ export interface ArticleModel {
|
|
|
712
634
|
* @type {string}
|
|
713
635
|
* @memberof ArticleModel
|
|
714
636
|
*/
|
|
715
|
-
'
|
|
716
|
-
/**
|
|
717
|
-
*
|
|
718
|
-
* @type {string}
|
|
719
|
-
* @memberof ArticleModel
|
|
720
|
-
*/
|
|
721
|
-
'slug'?: string | null;
|
|
637
|
+
'languageCode'?: string | null;
|
|
722
638
|
/**
|
|
723
639
|
*
|
|
724
640
|
* @type {string}
|
|
725
641
|
* @memberof ArticleModel
|
|
726
642
|
*/
|
|
727
|
-
'
|
|
643
|
+
'name'?: string | null;
|
|
728
644
|
/**
|
|
729
645
|
*
|
|
730
646
|
* @type {string}
|
|
731
647
|
* @memberof ArticleModel
|
|
732
648
|
*/
|
|
733
|
-
'
|
|
649
|
+
'slug'?: string | null;
|
|
734
650
|
/**
|
|
735
651
|
*
|
|
736
|
-
* @type {
|
|
652
|
+
* @type {boolean}
|
|
737
653
|
* @memberof ArticleModel
|
|
738
654
|
*/
|
|
739
|
-
'
|
|
655
|
+
'confirmed'?: boolean;
|
|
740
656
|
/**
|
|
741
657
|
*
|
|
742
658
|
* @type {MarketingType}
|
|
@@ -761,54 +677,24 @@ export interface ArticleModel {
|
|
|
761
677
|
* @memberof ArticleModel
|
|
762
678
|
*/
|
|
763
679
|
'hospitalId'?: string;
|
|
764
|
-
/**
|
|
765
|
-
*
|
|
766
|
-
* @type {string}
|
|
767
|
-
* @memberof ArticleModel
|
|
768
|
-
*/
|
|
769
|
-
'hospitalName'?: string | null;
|
|
770
|
-
/**
|
|
771
|
-
*
|
|
772
|
-
* @type {string}
|
|
773
|
-
* @memberof ArticleModel
|
|
774
|
-
*/
|
|
775
|
-
'hospitalSlug'?: string | null;
|
|
776
680
|
/**
|
|
777
681
|
*
|
|
778
682
|
* @type {string}
|
|
779
683
|
* @memberof ArticleModel
|
|
780
684
|
*/
|
|
781
685
|
'youtubeUrl'?: string | null;
|
|
782
|
-
/**
|
|
783
|
-
*
|
|
784
|
-
* @type {boolean}
|
|
785
|
-
* @memberof ArticleModel
|
|
786
|
-
*/
|
|
787
|
-
'confirmed'?: boolean;
|
|
788
686
|
/**
|
|
789
687
|
*
|
|
790
688
|
* @type {Array<ArticleTagItemModel>}
|
|
791
689
|
* @memberof ArticleModel
|
|
792
690
|
*/
|
|
793
691
|
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
794
|
-
/**
|
|
795
|
-
*
|
|
796
|
-
* @type {Array<ArticleContributorItemModel>}
|
|
797
|
-
* @memberof ArticleModel
|
|
798
|
-
*/
|
|
799
|
-
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
800
692
|
/**
|
|
801
693
|
*
|
|
802
694
|
* @type {Array<MediaModel>}
|
|
803
695
|
* @memberof ArticleModel
|
|
804
696
|
*/
|
|
805
697
|
'medias'?: Array<MediaModel> | null;
|
|
806
|
-
/**
|
|
807
|
-
*
|
|
808
|
-
* @type {Array<SourceModel>}
|
|
809
|
-
* @memberof ArticleModel
|
|
810
|
-
*/
|
|
811
|
-
'sources'?: Array<SourceModel> | null;
|
|
812
698
|
/**
|
|
813
699
|
*
|
|
814
700
|
* @type {AuditableEntity}
|
|
@@ -821,12 +707,6 @@ export interface ArticleModel {
|
|
|
821
707
|
* @memberof ArticleModel
|
|
822
708
|
*/
|
|
823
709
|
'content'?: string | null;
|
|
824
|
-
/**
|
|
825
|
-
*
|
|
826
|
-
* @type {string}
|
|
827
|
-
* @memberof ArticleModel
|
|
828
|
-
*/
|
|
829
|
-
'languageCode'?: string | null;
|
|
830
710
|
/**
|
|
831
711
|
*
|
|
832
712
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -2353,6 +2233,12 @@ export interface ContributorItemModel {
|
|
|
2353
2233
|
* @memberof ContributorItemModel
|
|
2354
2234
|
*/
|
|
2355
2235
|
'id'?: string;
|
|
2236
|
+
/**
|
|
2237
|
+
*
|
|
2238
|
+
* @type {string}
|
|
2239
|
+
* @memberof ContributorItemModel
|
|
2240
|
+
*/
|
|
2241
|
+
'languageCode'?: string | null;
|
|
2356
2242
|
/**
|
|
2357
2243
|
*
|
|
2358
2244
|
* @type {string}
|
|
@@ -2367,58 +2253,58 @@ export interface ContributorItemModel {
|
|
|
2367
2253
|
'slug'?: string | null;
|
|
2368
2254
|
/**
|
|
2369
2255
|
*
|
|
2370
|
-
* @type {
|
|
2256
|
+
* @type {boolean}
|
|
2371
2257
|
* @memberof ContributorItemModel
|
|
2372
2258
|
*/
|
|
2373
|
-
'
|
|
2259
|
+
'confirmed'?: boolean;
|
|
2374
2260
|
/**
|
|
2375
2261
|
*
|
|
2376
2262
|
* @type {string}
|
|
2377
2263
|
* @memberof ContributorItemModel
|
|
2378
2264
|
*/
|
|
2379
|
-
'
|
|
2265
|
+
'hospitalId'?: string;
|
|
2380
2266
|
/**
|
|
2381
2267
|
*
|
|
2382
2268
|
* @type {string}
|
|
2383
2269
|
* @memberof ContributorItemModel
|
|
2384
2270
|
*/
|
|
2385
|
-
'
|
|
2271
|
+
'hospitalName'?: string | null;
|
|
2386
2272
|
/**
|
|
2387
2273
|
*
|
|
2388
2274
|
* @type {string}
|
|
2389
2275
|
* @memberof ContributorItemModel
|
|
2390
2276
|
*/
|
|
2391
|
-
'
|
|
2277
|
+
'hospitalSlug'?: string | null;
|
|
2392
2278
|
/**
|
|
2393
2279
|
*
|
|
2394
2280
|
* @type {string}
|
|
2395
2281
|
* @memberof ContributorItemModel
|
|
2396
2282
|
*/
|
|
2397
|
-
'
|
|
2283
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
2398
2284
|
/**
|
|
2399
2285
|
*
|
|
2400
2286
|
* @type {string}
|
|
2401
2287
|
* @memberof ContributorItemModel
|
|
2402
2288
|
*/
|
|
2403
|
-
'
|
|
2289
|
+
'email'?: string | null;
|
|
2404
2290
|
/**
|
|
2405
2291
|
*
|
|
2406
2292
|
* @type {string}
|
|
2407
2293
|
* @memberof ContributorItemModel
|
|
2408
2294
|
*/
|
|
2409
|
-
'
|
|
2295
|
+
'photo'?: string | null;
|
|
2410
2296
|
/**
|
|
2411
2297
|
*
|
|
2412
|
-
* @type {
|
|
2298
|
+
* @type {string}
|
|
2413
2299
|
* @memberof ContributorItemModel
|
|
2414
2300
|
*/
|
|
2415
|
-
'
|
|
2301
|
+
'photoThumbnail'?: string | null;
|
|
2416
2302
|
/**
|
|
2417
2303
|
*
|
|
2418
|
-
* @type {
|
|
2304
|
+
* @type {number}
|
|
2419
2305
|
* @memberof ContributorItemModel
|
|
2420
2306
|
*/
|
|
2421
|
-
'
|
|
2307
|
+
'order'?: number;
|
|
2422
2308
|
/**
|
|
2423
2309
|
*
|
|
2424
2310
|
* @type {AuditableEntity}
|
|
@@ -2443,67 +2329,73 @@ export interface ContributorModel {
|
|
|
2443
2329
|
* @type {string}
|
|
2444
2330
|
* @memberof ContributorModel
|
|
2445
2331
|
*/
|
|
2446
|
-
'
|
|
2332
|
+
'languageCode'?: string | null;
|
|
2447
2333
|
/**
|
|
2448
2334
|
*
|
|
2449
2335
|
* @type {string}
|
|
2450
2336
|
* @memberof ContributorModel
|
|
2451
2337
|
*/
|
|
2452
|
-
'
|
|
2338
|
+
'name'?: string | null;
|
|
2453
2339
|
/**
|
|
2454
2340
|
*
|
|
2455
2341
|
* @type {string}
|
|
2456
2342
|
* @memberof ContributorModel
|
|
2457
2343
|
*/
|
|
2458
|
-
'
|
|
2344
|
+
'slug'?: string | null;
|
|
2459
2345
|
/**
|
|
2460
2346
|
*
|
|
2461
|
-
* @type {
|
|
2347
|
+
* @type {boolean}
|
|
2462
2348
|
* @memberof ContributorModel
|
|
2463
2349
|
*/
|
|
2464
|
-
'
|
|
2350
|
+
'confirmed'?: boolean;
|
|
2465
2351
|
/**
|
|
2466
2352
|
*
|
|
2467
2353
|
* @type {string}
|
|
2468
2354
|
* @memberof ContributorModel
|
|
2469
2355
|
*/
|
|
2470
|
-
'
|
|
2356
|
+
'hospitalId'?: string;
|
|
2471
2357
|
/**
|
|
2472
2358
|
*
|
|
2473
2359
|
* @type {string}
|
|
2474
2360
|
* @memberof ContributorModel
|
|
2475
2361
|
*/
|
|
2476
|
-
'
|
|
2362
|
+
'hospitalName'?: string | null;
|
|
2477
2363
|
/**
|
|
2478
2364
|
*
|
|
2479
2365
|
* @type {string}
|
|
2480
2366
|
* @memberof ContributorModel
|
|
2481
2367
|
*/
|
|
2482
|
-
'
|
|
2368
|
+
'hospitalSlug'?: string | null;
|
|
2483
2369
|
/**
|
|
2484
2370
|
*
|
|
2485
2371
|
* @type {string}
|
|
2486
2372
|
* @memberof ContributorModel
|
|
2487
2373
|
*/
|
|
2488
|
-
'
|
|
2374
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
2489
2375
|
/**
|
|
2490
2376
|
*
|
|
2491
2377
|
* @type {string}
|
|
2492
2378
|
* @memberof ContributorModel
|
|
2493
2379
|
*/
|
|
2494
|
-
'
|
|
2380
|
+
'email'?: string | null;
|
|
2495
2381
|
/**
|
|
2496
2382
|
*
|
|
2497
|
-
* @type {
|
|
2383
|
+
* @type {string}
|
|
2498
2384
|
* @memberof ContributorModel
|
|
2499
2385
|
*/
|
|
2500
|
-
'
|
|
2386
|
+
'photo'?: string | null;
|
|
2501
2387
|
/**
|
|
2502
2388
|
*
|
|
2503
|
-
* @type {
|
|
2389
|
+
* @type {string}
|
|
2504
2390
|
* @memberof ContributorModel
|
|
2505
2391
|
*/
|
|
2506
|
-
'
|
|
2392
|
+
'photoThumbnail'?: string | null;
|
|
2393
|
+
/**
|
|
2394
|
+
*
|
|
2395
|
+
* @type {number}
|
|
2396
|
+
* @memberof ContributorModel
|
|
2397
|
+
*/
|
|
2398
|
+
'order'?: number;
|
|
2507
2399
|
/**
|
|
2508
2400
|
*
|
|
2509
2401
|
* @type {AuditableEntity}
|
|
@@ -2515,7 +2407,13 @@ export interface ContributorModel {
|
|
|
2515
2407
|
* @type {string}
|
|
2516
2408
|
* @memberof ContributorModel
|
|
2517
2409
|
*/
|
|
2518
|
-
'
|
|
2410
|
+
'description'?: string | null;
|
|
2411
|
+
/**
|
|
2412
|
+
*
|
|
2413
|
+
* @type {string}
|
|
2414
|
+
* @memberof ContributorModel
|
|
2415
|
+
*/
|
|
2416
|
+
'overview'?: string | null;
|
|
2519
2417
|
/**
|
|
2520
2418
|
*
|
|
2521
2419
|
* @type {string}
|
|
@@ -2609,67 +2507,25 @@ export interface CountryItemModel {
|
|
|
2609
2507
|
* @type {string}
|
|
2610
2508
|
* @memberof CountryItemModel
|
|
2611
2509
|
*/
|
|
2612
|
-
'
|
|
2510
|
+
'languageCode'?: string | null;
|
|
2613
2511
|
/**
|
|
2614
2512
|
*
|
|
2615
2513
|
* @type {string}
|
|
2616
2514
|
* @memberof CountryItemModel
|
|
2617
2515
|
*/
|
|
2618
|
-
'
|
|
2516
|
+
'name'?: string | null;
|
|
2619
2517
|
/**
|
|
2620
2518
|
*
|
|
2621
2519
|
* @type {string}
|
|
2622
2520
|
* @memberof CountryItemModel
|
|
2623
2521
|
*/
|
|
2624
2522
|
'slug'?: string | null;
|
|
2625
|
-
/**
|
|
2626
|
-
*
|
|
2627
|
-
* @type {string}
|
|
2628
|
-
* @memberof CountryItemModel
|
|
2629
|
-
*/
|
|
2630
|
-
'description'?: string | null;
|
|
2631
|
-
/**
|
|
2632
|
-
*
|
|
2633
|
-
* @type {number}
|
|
2634
|
-
* @memberof CountryItemModel
|
|
2635
|
-
*/
|
|
2636
|
-
'hospitalsCount'?: number;
|
|
2637
|
-
/**
|
|
2638
|
-
*
|
|
2639
|
-
* @type {number}
|
|
2640
|
-
* @memberof CountryItemModel
|
|
2641
|
-
*/
|
|
2642
|
-
'doctorsCount'?: number;
|
|
2643
|
-
/**
|
|
2644
|
-
*
|
|
2645
|
-
* @type {number}
|
|
2646
|
-
* @memberof CountryItemModel
|
|
2647
|
-
*/
|
|
2648
|
-
'specialitiesCount'?: number;
|
|
2649
|
-
/**
|
|
2650
|
-
*
|
|
2651
|
-
* @type {number}
|
|
2652
|
-
* @memberof CountryItemModel
|
|
2653
|
-
*/
|
|
2654
|
-
'packagesCount'?: number;
|
|
2655
|
-
/**
|
|
2656
|
-
*
|
|
2657
|
-
* @type {number}
|
|
2658
|
-
* @memberof CountryItemModel
|
|
2659
|
-
*/
|
|
2660
|
-
'articlesCount'?: number;
|
|
2661
2523
|
/**
|
|
2662
2524
|
*
|
|
2663
2525
|
* @type {boolean}
|
|
2664
2526
|
* @memberof CountryItemModel
|
|
2665
2527
|
*/
|
|
2666
2528
|
'confirmed'?: boolean;
|
|
2667
|
-
/**
|
|
2668
|
-
*
|
|
2669
|
-
* @type {Array<MediaModel>}
|
|
2670
|
-
* @memberof CountryItemModel
|
|
2671
|
-
*/
|
|
2672
|
-
'medias'?: Array<MediaModel> | null;
|
|
2673
2529
|
/**
|
|
2674
2530
|
*
|
|
2675
2531
|
* @type {AuditableEntity}
|
|
@@ -2694,55 +2550,19 @@ export interface CountryModel {
|
|
|
2694
2550
|
* @type {string}
|
|
2695
2551
|
* @memberof CountryModel
|
|
2696
2552
|
*/
|
|
2697
|
-
'
|
|
2553
|
+
'languageCode'?: string | null;
|
|
2698
2554
|
/**
|
|
2699
2555
|
*
|
|
2700
2556
|
* @type {string}
|
|
2701
2557
|
* @memberof CountryModel
|
|
2702
2558
|
*/
|
|
2703
|
-
'
|
|
2559
|
+
'name'?: string | null;
|
|
2704
2560
|
/**
|
|
2705
2561
|
*
|
|
2706
2562
|
* @type {string}
|
|
2707
2563
|
* @memberof CountryModel
|
|
2708
2564
|
*/
|
|
2709
2565
|
'slug'?: string | null;
|
|
2710
|
-
/**
|
|
2711
|
-
*
|
|
2712
|
-
* @type {string}
|
|
2713
|
-
* @memberof CountryModel
|
|
2714
|
-
*/
|
|
2715
|
-
'description'?: string | null;
|
|
2716
|
-
/**
|
|
2717
|
-
*
|
|
2718
|
-
* @type {number}
|
|
2719
|
-
* @memberof CountryModel
|
|
2720
|
-
*/
|
|
2721
|
-
'hospitalsCount'?: number;
|
|
2722
|
-
/**
|
|
2723
|
-
*
|
|
2724
|
-
* @type {number}
|
|
2725
|
-
* @memberof CountryModel
|
|
2726
|
-
*/
|
|
2727
|
-
'doctorsCount'?: number;
|
|
2728
|
-
/**
|
|
2729
|
-
*
|
|
2730
|
-
* @type {number}
|
|
2731
|
-
* @memberof CountryModel
|
|
2732
|
-
*/
|
|
2733
|
-
'specialitiesCount'?: number;
|
|
2734
|
-
/**
|
|
2735
|
-
*
|
|
2736
|
-
* @type {number}
|
|
2737
|
-
* @memberof CountryModel
|
|
2738
|
-
*/
|
|
2739
|
-
'packagesCount'?: number;
|
|
2740
|
-
/**
|
|
2741
|
-
*
|
|
2742
|
-
* @type {number}
|
|
2743
|
-
* @memberof CountryModel
|
|
2744
|
-
*/
|
|
2745
|
-
'articlesCount'?: number;
|
|
2746
2566
|
/**
|
|
2747
2567
|
*
|
|
2748
2568
|
* @type {boolean}
|
|
@@ -2751,22 +2571,22 @@ export interface CountryModel {
|
|
|
2751
2571
|
'confirmed'?: boolean;
|
|
2752
2572
|
/**
|
|
2753
2573
|
*
|
|
2754
|
-
* @type {
|
|
2574
|
+
* @type {AuditableEntity}
|
|
2755
2575
|
* @memberof CountryModel
|
|
2756
2576
|
*/
|
|
2757
|
-
'
|
|
2577
|
+
'auditableEntity'?: AuditableEntity;
|
|
2758
2578
|
/**
|
|
2759
2579
|
*
|
|
2760
|
-
* @type {
|
|
2580
|
+
* @type {string}
|
|
2761
2581
|
* @memberof CountryModel
|
|
2762
2582
|
*/
|
|
2763
|
-
'
|
|
2583
|
+
'description'?: string | null;
|
|
2764
2584
|
/**
|
|
2765
2585
|
*
|
|
2766
2586
|
* @type {string}
|
|
2767
2587
|
* @memberof CountryModel
|
|
2768
2588
|
*/
|
|
2769
|
-
'
|
|
2589
|
+
'overview'?: string | null;
|
|
2770
2590
|
/**
|
|
2771
2591
|
*
|
|
2772
2592
|
* @type {string}
|
|
@@ -2779,6 +2599,12 @@ export interface CountryModel {
|
|
|
2779
2599
|
* @memberof CountryModel
|
|
2780
2600
|
*/
|
|
2781
2601
|
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
2602
|
+
/**
|
|
2603
|
+
*
|
|
2604
|
+
* @type {Array<MediaModel>}
|
|
2605
|
+
* @memberof CountryModel
|
|
2606
|
+
*/
|
|
2607
|
+
'medias'?: Array<MediaModel> | null;
|
|
2782
2608
|
}
|
|
2783
2609
|
/**
|
|
2784
2610
|
*
|
|
@@ -3193,61 +3019,43 @@ export interface DealItemModel {
|
|
|
3193
3019
|
* @type {string}
|
|
3194
3020
|
* @memberof DealItemModel
|
|
3195
3021
|
*/
|
|
3196
|
-
'
|
|
3197
|
-
/**
|
|
3198
|
-
*
|
|
3199
|
-
* @type {string}
|
|
3200
|
-
* @memberof DealItemModel
|
|
3201
|
-
*/
|
|
3202
|
-
'slug'?: string | null;
|
|
3022
|
+
'languageCode'?: string | null;
|
|
3203
3023
|
/**
|
|
3204
3024
|
*
|
|
3205
3025
|
* @type {string}
|
|
3206
3026
|
* @memberof DealItemModel
|
|
3207
3027
|
*/
|
|
3208
|
-
'
|
|
3028
|
+
'name'?: string | null;
|
|
3209
3029
|
/**
|
|
3210
3030
|
*
|
|
3211
3031
|
* @type {string}
|
|
3212
3032
|
* @memberof DealItemModel
|
|
3213
3033
|
*/
|
|
3214
|
-
'
|
|
3034
|
+
'slug'?: string | null;
|
|
3215
3035
|
/**
|
|
3216
3036
|
*
|
|
3217
|
-
* @type {
|
|
3037
|
+
* @type {boolean}
|
|
3218
3038
|
* @memberof DealItemModel
|
|
3219
3039
|
*/
|
|
3220
|
-
'
|
|
3040
|
+
'confirmed'?: boolean;
|
|
3221
3041
|
/**
|
|
3222
3042
|
*
|
|
3223
3043
|
* @type {string}
|
|
3224
3044
|
* @memberof DealItemModel
|
|
3225
3045
|
*/
|
|
3226
|
-
'
|
|
3046
|
+
'hospitalId'?: string;
|
|
3227
3047
|
/**
|
|
3228
3048
|
*
|
|
3229
3049
|
* @type {string}
|
|
3230
3050
|
* @memberof DealItemModel
|
|
3231
3051
|
*/
|
|
3232
|
-
'
|
|
3052
|
+
'hospitalName'?: string | null;
|
|
3233
3053
|
/**
|
|
3234
3054
|
*
|
|
3235
3055
|
* @type {string}
|
|
3236
3056
|
* @memberof DealItemModel
|
|
3237
3057
|
*/
|
|
3238
|
-
'
|
|
3239
|
-
/**
|
|
3240
|
-
*
|
|
3241
|
-
* @type {boolean}
|
|
3242
|
-
* @memberof DealItemModel
|
|
3243
|
-
*/
|
|
3244
|
-
'hospitalConsultationEnabled'?: boolean;
|
|
3245
|
-
/**
|
|
3246
|
-
*
|
|
3247
|
-
* @type {number}
|
|
3248
|
-
* @memberof DealItemModel
|
|
3249
|
-
*/
|
|
3250
|
-
'serviceDuration'?: number;
|
|
3058
|
+
'hospitalSlug'?: string | null;
|
|
3251
3059
|
/**
|
|
3252
3060
|
*
|
|
3253
3061
|
* @type {MarketingType}
|
|
@@ -3272,24 +3080,6 @@ export interface DealItemModel {
|
|
|
3272
3080
|
* @memberof DealItemModel
|
|
3273
3081
|
*/
|
|
3274
3082
|
'order'?: number;
|
|
3275
|
-
/**
|
|
3276
|
-
*
|
|
3277
|
-
* @type {boolean}
|
|
3278
|
-
* @memberof DealItemModel
|
|
3279
|
-
*/
|
|
3280
|
-
'confirmed'?: boolean;
|
|
3281
|
-
/**
|
|
3282
|
-
*
|
|
3283
|
-
* @type {Array<DealPackageItemModel>}
|
|
3284
|
-
* @memberof DealItemModel
|
|
3285
|
-
*/
|
|
3286
|
-
'dealPackages'?: Array<DealPackageItemModel> | null;
|
|
3287
|
-
/**
|
|
3288
|
-
*
|
|
3289
|
-
* @type {Array<DealServiceItemModel>}
|
|
3290
|
-
* @memberof DealItemModel
|
|
3291
|
-
*/
|
|
3292
|
-
'dealServices'?: Array<DealServiceItemModel> | null;
|
|
3293
3083
|
/**
|
|
3294
3084
|
*
|
|
3295
3085
|
* @type {AuditableEntity}
|
|
@@ -3314,49 +3104,25 @@ export interface DealItemSimpleModel {
|
|
|
3314
3104
|
* @type {string}
|
|
3315
3105
|
* @memberof DealItemSimpleModel
|
|
3316
3106
|
*/
|
|
3317
|
-
'
|
|
3318
|
-
/**
|
|
3319
|
-
*
|
|
3320
|
-
* @type {string}
|
|
3321
|
-
* @memberof DealItemSimpleModel
|
|
3322
|
-
*/
|
|
3323
|
-
'slug'?: string | null;
|
|
3324
|
-
/**
|
|
3325
|
-
*
|
|
3326
|
-
* @type {string}
|
|
3327
|
-
* @memberof DealItemSimpleModel
|
|
3328
|
-
*/
|
|
3329
|
-
'hospitalId'?: string;
|
|
3107
|
+
'languageCode'?: string | null;
|
|
3330
3108
|
/**
|
|
3331
3109
|
*
|
|
3332
3110
|
* @type {string}
|
|
3333
3111
|
* @memberof DealItemSimpleModel
|
|
3334
3112
|
*/
|
|
3335
|
-
'
|
|
3113
|
+
'name'?: string | null;
|
|
3336
3114
|
/**
|
|
3337
3115
|
*
|
|
3338
3116
|
* @type {string}
|
|
3339
3117
|
* @memberof DealItemSimpleModel
|
|
3340
3118
|
*/
|
|
3341
|
-
'
|
|
3342
|
-
/**
|
|
3343
|
-
*
|
|
3344
|
-
* @type {number}
|
|
3345
|
-
* @memberof DealItemSimpleModel
|
|
3346
|
-
*/
|
|
3347
|
-
'order'?: number;
|
|
3119
|
+
'slug'?: string | null;
|
|
3348
3120
|
/**
|
|
3349
3121
|
*
|
|
3350
3122
|
* @type {boolean}
|
|
3351
3123
|
* @memberof DealItemSimpleModel
|
|
3352
3124
|
*/
|
|
3353
3125
|
'confirmed'?: boolean;
|
|
3354
|
-
/**
|
|
3355
|
-
*
|
|
3356
|
-
* @type {AuditableEntity}
|
|
3357
|
-
* @memberof DealItemSimpleModel
|
|
3358
|
-
*/
|
|
3359
|
-
'auditableEntity'?: AuditableEntity;
|
|
3360
3126
|
}
|
|
3361
3127
|
/**
|
|
3362
3128
|
*
|
|
@@ -3375,61 +3141,43 @@ export interface DealModel {
|
|
|
3375
3141
|
* @type {string}
|
|
3376
3142
|
* @memberof DealModel
|
|
3377
3143
|
*/
|
|
3378
|
-
'
|
|
3379
|
-
/**
|
|
3380
|
-
*
|
|
3381
|
-
* @type {string}
|
|
3382
|
-
* @memberof DealModel
|
|
3383
|
-
*/
|
|
3384
|
-
'slug'?: string | null;
|
|
3144
|
+
'languageCode'?: string | null;
|
|
3385
3145
|
/**
|
|
3386
3146
|
*
|
|
3387
3147
|
* @type {string}
|
|
3388
3148
|
* @memberof DealModel
|
|
3389
3149
|
*/
|
|
3390
|
-
'
|
|
3150
|
+
'name'?: string | null;
|
|
3391
3151
|
/**
|
|
3392
3152
|
*
|
|
3393
3153
|
* @type {string}
|
|
3394
3154
|
* @memberof DealModel
|
|
3395
3155
|
*/
|
|
3396
|
-
'
|
|
3156
|
+
'slug'?: string | null;
|
|
3397
3157
|
/**
|
|
3398
3158
|
*
|
|
3399
|
-
* @type {
|
|
3159
|
+
* @type {boolean}
|
|
3400
3160
|
* @memberof DealModel
|
|
3401
3161
|
*/
|
|
3402
|
-
'
|
|
3162
|
+
'confirmed'?: boolean;
|
|
3403
3163
|
/**
|
|
3404
3164
|
*
|
|
3405
3165
|
* @type {string}
|
|
3406
3166
|
* @memberof DealModel
|
|
3407
3167
|
*/
|
|
3408
|
-
'
|
|
3168
|
+
'hospitalId'?: string;
|
|
3409
3169
|
/**
|
|
3410
3170
|
*
|
|
3411
3171
|
* @type {string}
|
|
3412
3172
|
* @memberof DealModel
|
|
3413
3173
|
*/
|
|
3414
|
-
'
|
|
3174
|
+
'hospitalName'?: string | null;
|
|
3415
3175
|
/**
|
|
3416
3176
|
*
|
|
3417
3177
|
* @type {string}
|
|
3418
3178
|
* @memberof DealModel
|
|
3419
3179
|
*/
|
|
3420
|
-
'
|
|
3421
|
-
/**
|
|
3422
|
-
*
|
|
3423
|
-
* @type {boolean}
|
|
3424
|
-
* @memberof DealModel
|
|
3425
|
-
*/
|
|
3426
|
-
'hospitalConsultationEnabled'?: boolean;
|
|
3427
|
-
/**
|
|
3428
|
-
*
|
|
3429
|
-
* @type {number}
|
|
3430
|
-
* @memberof DealModel
|
|
3431
|
-
*/
|
|
3432
|
-
'serviceDuration'?: number;
|
|
3180
|
+
'hospitalSlug'?: string | null;
|
|
3433
3181
|
/**
|
|
3434
3182
|
*
|
|
3435
3183
|
* @type {MarketingType}
|
|
@@ -3456,34 +3204,34 @@ export interface DealModel {
|
|
|
3456
3204
|
'order'?: number;
|
|
3457
3205
|
/**
|
|
3458
3206
|
*
|
|
3459
|
-
* @type {
|
|
3207
|
+
* @type {AuditableEntity}
|
|
3460
3208
|
* @memberof DealModel
|
|
3461
3209
|
*/
|
|
3462
|
-
'
|
|
3210
|
+
'auditableEntity'?: AuditableEntity;
|
|
3463
3211
|
/**
|
|
3464
3212
|
*
|
|
3465
|
-
* @type {
|
|
3213
|
+
* @type {string}
|
|
3466
3214
|
* @memberof DealModel
|
|
3467
3215
|
*/
|
|
3468
|
-
'
|
|
3216
|
+
'description'?: string | null;
|
|
3469
3217
|
/**
|
|
3470
3218
|
*
|
|
3471
|
-
* @type {
|
|
3219
|
+
* @type {string}
|
|
3472
3220
|
* @memberof DealModel
|
|
3473
3221
|
*/
|
|
3474
|
-
'
|
|
3222
|
+
'overview'?: string | null;
|
|
3475
3223
|
/**
|
|
3476
3224
|
*
|
|
3477
|
-
* @type {
|
|
3225
|
+
* @type {string}
|
|
3478
3226
|
* @memberof DealModel
|
|
3479
3227
|
*/
|
|
3480
|
-
'
|
|
3228
|
+
'content'?: string | null;
|
|
3481
3229
|
/**
|
|
3482
3230
|
*
|
|
3483
|
-
* @type {
|
|
3231
|
+
* @type {number}
|
|
3484
3232
|
* @memberof DealModel
|
|
3485
3233
|
*/
|
|
3486
|
-
'
|
|
3234
|
+
'serviceDuration'?: number;
|
|
3487
3235
|
/**
|
|
3488
3236
|
*
|
|
3489
3237
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -3805,6 +3553,12 @@ export interface DealsSimpleModel {
|
|
|
3805
3553
|
* @interface DoctorAffiliationItemModel
|
|
3806
3554
|
*/
|
|
3807
3555
|
export interface DoctorAffiliationItemModel {
|
|
3556
|
+
/**
|
|
3557
|
+
*
|
|
3558
|
+
* @type {string}
|
|
3559
|
+
* @memberof DoctorAffiliationItemModel
|
|
3560
|
+
*/
|
|
3561
|
+
'languageCode'?: string | null;
|
|
3808
3562
|
/**
|
|
3809
3563
|
*
|
|
3810
3564
|
* @type {string}
|
|
@@ -3823,6 +3577,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
3823
3577
|
* @memberof DoctorAffiliationItemModel
|
|
3824
3578
|
*/
|
|
3825
3579
|
'hospitalSlug'?: string | null;
|
|
3580
|
+
/**
|
|
3581
|
+
*
|
|
3582
|
+
* @type {number}
|
|
3583
|
+
* @memberof DoctorAffiliationItemModel
|
|
3584
|
+
*/
|
|
3585
|
+
'order'?: number;
|
|
3826
3586
|
}
|
|
3827
3587
|
/**
|
|
3828
3588
|
*
|
|
@@ -3830,6 +3590,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
3830
3590
|
* @interface DoctorAffiliationModel
|
|
3831
3591
|
*/
|
|
3832
3592
|
export interface DoctorAffiliationModel {
|
|
3593
|
+
/**
|
|
3594
|
+
*
|
|
3595
|
+
* @type {string}
|
|
3596
|
+
* @memberof DoctorAffiliationModel
|
|
3597
|
+
*/
|
|
3598
|
+
'languageCode'?: string | null;
|
|
3833
3599
|
/**
|
|
3834
3600
|
*
|
|
3835
3601
|
* @type {string}
|
|
@@ -3848,6 +3614,12 @@ export interface DoctorAffiliationModel {
|
|
|
3848
3614
|
* @memberof DoctorAffiliationModel
|
|
3849
3615
|
*/
|
|
3850
3616
|
'hospitalSlug'?: string | null;
|
|
3617
|
+
/**
|
|
3618
|
+
*
|
|
3619
|
+
* @type {number}
|
|
3620
|
+
* @memberof DoctorAffiliationModel
|
|
3621
|
+
*/
|
|
3622
|
+
'order'?: number;
|
|
3851
3623
|
}
|
|
3852
3624
|
/**
|
|
3853
3625
|
*
|
|
@@ -4132,12 +3904,6 @@ export interface DoctorItemModel {
|
|
|
4132
3904
|
* @memberof DoctorItemModel
|
|
4133
3905
|
*/
|
|
4134
3906
|
'firstName'?: string | null;
|
|
4135
|
-
/**
|
|
4136
|
-
*
|
|
4137
|
-
* @type {string}
|
|
4138
|
-
* @memberof DoctorItemModel
|
|
4139
|
-
*/
|
|
4140
|
-
'middleName'?: string | null;
|
|
4141
3907
|
/**
|
|
4142
3908
|
*
|
|
4143
3909
|
* @type {string}
|
|
@@ -4150,18 +3916,6 @@ export interface DoctorItemModel {
|
|
|
4150
3916
|
* @memberof DoctorItemModel
|
|
4151
3917
|
*/
|
|
4152
3918
|
'fullName'?: string | null;
|
|
4153
|
-
/**
|
|
4154
|
-
*
|
|
4155
|
-
* @type {string}
|
|
4156
|
-
* @memberof DoctorItemModel
|
|
4157
|
-
*/
|
|
4158
|
-
'slug'?: string | null;
|
|
4159
|
-
/**
|
|
4160
|
-
*
|
|
4161
|
-
* @type {boolean}
|
|
4162
|
-
* @memberof DoctorItemModel
|
|
4163
|
-
*/
|
|
4164
|
-
'confirmed'?: boolean;
|
|
4165
3919
|
/**
|
|
4166
3920
|
*
|
|
4167
3921
|
* @type {string}
|
|
@@ -4310,12 +4064,6 @@ export interface DoctorModel {
|
|
|
4310
4064
|
* @memberof DoctorModel
|
|
4311
4065
|
*/
|
|
4312
4066
|
'firstName'?: string | null;
|
|
4313
|
-
/**
|
|
4314
|
-
*
|
|
4315
|
-
* @type {string}
|
|
4316
|
-
* @memberof DoctorModel
|
|
4317
|
-
*/
|
|
4318
|
-
'middleName'?: string | null;
|
|
4319
4067
|
/**
|
|
4320
4068
|
*
|
|
4321
4069
|
* @type {string}
|
|
@@ -4328,18 +4076,6 @@ export interface DoctorModel {
|
|
|
4328
4076
|
* @memberof DoctorModel
|
|
4329
4077
|
*/
|
|
4330
4078
|
'fullName'?: string | null;
|
|
4331
|
-
/**
|
|
4332
|
-
*
|
|
4333
|
-
* @type {string}
|
|
4334
|
-
* @memberof DoctorModel
|
|
4335
|
-
*/
|
|
4336
|
-
'slug'?: string | null;
|
|
4337
|
-
/**
|
|
4338
|
-
*
|
|
4339
|
-
* @type {boolean}
|
|
4340
|
-
* @memberof DoctorModel
|
|
4341
|
-
*/
|
|
4342
|
-
'confirmed'?: boolean;
|
|
4343
4079
|
/**
|
|
4344
4080
|
*
|
|
4345
4081
|
* @type {string}
|
|
@@ -4436,6 +4172,30 @@ export interface DoctorModel {
|
|
|
4436
4172
|
* @memberof DoctorModel
|
|
4437
4173
|
*/
|
|
4438
4174
|
'startPracticeDate'?: Date | null;
|
|
4175
|
+
/**
|
|
4176
|
+
*
|
|
4177
|
+
* @type {boolean}
|
|
4178
|
+
* @memberof DoctorModel
|
|
4179
|
+
*/
|
|
4180
|
+
'consultationEnabled'?: boolean | null;
|
|
4181
|
+
/**
|
|
4182
|
+
*
|
|
4183
|
+
* @type {number}
|
|
4184
|
+
* @memberof DoctorModel
|
|
4185
|
+
*/
|
|
4186
|
+
'consultationFee'?: number | null;
|
|
4187
|
+
/**
|
|
4188
|
+
*
|
|
4189
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
4190
|
+
* @memberof DoctorModel
|
|
4191
|
+
*/
|
|
4192
|
+
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4193
|
+
/**
|
|
4194
|
+
*
|
|
4195
|
+
* @type {Array<DoctorAffiliationItemModel>}
|
|
4196
|
+
* @memberof DoctorModel
|
|
4197
|
+
*/
|
|
4198
|
+
'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
|
|
4439
4199
|
/**
|
|
4440
4200
|
*
|
|
4441
4201
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -4572,42 +4332,18 @@ export interface DoctorSimpleItemModel {
|
|
|
4572
4332
|
* @memberof DoctorSimpleItemModel
|
|
4573
4333
|
*/
|
|
4574
4334
|
'id'?: string;
|
|
4575
|
-
/**
|
|
4576
|
-
*
|
|
4577
|
-
* @type {string}
|
|
4578
|
-
* @memberof DoctorSimpleItemModel
|
|
4579
|
-
*/
|
|
4580
|
-
'languageCode'?: string | null;
|
|
4581
4335
|
/**
|
|
4582
4336
|
*
|
|
4583
4337
|
* @type {string}
|
|
4584
4338
|
* @memberof DoctorSimpleItemModel
|
|
4585
4339
|
*/
|
|
4586
4340
|
'firstName'?: string | null;
|
|
4587
|
-
/**
|
|
4588
|
-
*
|
|
4589
|
-
* @type {string}
|
|
4590
|
-
* @memberof DoctorSimpleItemModel
|
|
4591
|
-
*/
|
|
4592
|
-
'middleName'?: string | null;
|
|
4593
4341
|
/**
|
|
4594
4342
|
*
|
|
4595
4343
|
* @type {string}
|
|
4596
4344
|
* @memberof DoctorSimpleItemModel
|
|
4597
4345
|
*/
|
|
4598
4346
|
'lastName'?: string | null;
|
|
4599
|
-
/**
|
|
4600
|
-
*
|
|
4601
|
-
* @type {string}
|
|
4602
|
-
* @memberof DoctorSimpleItemModel
|
|
4603
|
-
*/
|
|
4604
|
-
'slug'?: string | null;
|
|
4605
|
-
/**
|
|
4606
|
-
*
|
|
4607
|
-
* @type {string}
|
|
4608
|
-
* @memberof DoctorSimpleItemModel
|
|
4609
|
-
*/
|
|
4610
|
-
'hospitalId'?: string | null;
|
|
4611
4347
|
}
|
|
4612
4348
|
/**
|
|
4613
4349
|
*
|
|
@@ -4825,7 +4561,7 @@ export interface FaqCategoryItemModel {
|
|
|
4825
4561
|
* @type {string}
|
|
4826
4562
|
* @memberof FaqCategoryItemModel
|
|
4827
4563
|
*/
|
|
4828
|
-
'
|
|
4564
|
+
'languageCode'?: string | null;
|
|
4829
4565
|
/**
|
|
4830
4566
|
*
|
|
4831
4567
|
* @type {string}
|
|
@@ -4838,12 +4574,18 @@ export interface FaqCategoryItemModel {
|
|
|
4838
4574
|
* @memberof FaqCategoryItemModel
|
|
4839
4575
|
*/
|
|
4840
4576
|
'slug'?: string | null;
|
|
4577
|
+
/**
|
|
4578
|
+
*
|
|
4579
|
+
* @type {boolean}
|
|
4580
|
+
* @memberof FaqCategoryItemModel
|
|
4581
|
+
*/
|
|
4582
|
+
'confirmed'?: boolean;
|
|
4841
4583
|
/**
|
|
4842
4584
|
*
|
|
4843
4585
|
* @type {string}
|
|
4844
4586
|
* @memberof FaqCategoryItemModel
|
|
4845
4587
|
*/
|
|
4846
|
-
'
|
|
4588
|
+
'parentId'?: string | null;
|
|
4847
4589
|
/**
|
|
4848
4590
|
*
|
|
4849
4591
|
* @type {number}
|
|
@@ -4864,10 +4606,22 @@ export interface FaqCategoryItemModel {
|
|
|
4864
4606
|
'hospitalName'?: string | null;
|
|
4865
4607
|
/**
|
|
4866
4608
|
*
|
|
4867
|
-
* @type {
|
|
4609
|
+
* @type {string}
|
|
4868
4610
|
* @memberof FaqCategoryItemModel
|
|
4869
4611
|
*/
|
|
4870
|
-
'
|
|
4612
|
+
'hospitalSlug'?: string | null;
|
|
4613
|
+
/**
|
|
4614
|
+
*
|
|
4615
|
+
* @type {string}
|
|
4616
|
+
* @memberof FaqCategoryItemModel
|
|
4617
|
+
*/
|
|
4618
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
4619
|
+
/**
|
|
4620
|
+
*
|
|
4621
|
+
* @type {Array<MediaModel>}
|
|
4622
|
+
* @memberof FaqCategoryItemModel
|
|
4623
|
+
*/
|
|
4624
|
+
'medias'?: Array<MediaModel> | null;
|
|
4871
4625
|
/**
|
|
4872
4626
|
*
|
|
4873
4627
|
* @type {AuditableEntity}
|
|
@@ -4892,7 +4646,7 @@ export interface FaqCategoryModel {
|
|
|
4892
4646
|
* @type {string}
|
|
4893
4647
|
* @memberof FaqCategoryModel
|
|
4894
4648
|
*/
|
|
4895
|
-
'
|
|
4649
|
+
'languageCode'?: string | null;
|
|
4896
4650
|
/**
|
|
4897
4651
|
*
|
|
4898
4652
|
* @type {string}
|
|
@@ -4905,12 +4659,18 @@ export interface FaqCategoryModel {
|
|
|
4905
4659
|
* @memberof FaqCategoryModel
|
|
4906
4660
|
*/
|
|
4907
4661
|
'slug'?: string | null;
|
|
4662
|
+
/**
|
|
4663
|
+
*
|
|
4664
|
+
* @type {boolean}
|
|
4665
|
+
* @memberof FaqCategoryModel
|
|
4666
|
+
*/
|
|
4667
|
+
'confirmed'?: boolean;
|
|
4908
4668
|
/**
|
|
4909
4669
|
*
|
|
4910
4670
|
* @type {string}
|
|
4911
4671
|
* @memberof FaqCategoryModel
|
|
4912
4672
|
*/
|
|
4913
|
-
'
|
|
4673
|
+
'parentId'?: string | null;
|
|
4914
4674
|
/**
|
|
4915
4675
|
*
|
|
4916
4676
|
* @type {number}
|
|
@@ -4931,10 +4691,22 @@ export interface FaqCategoryModel {
|
|
|
4931
4691
|
'hospitalName'?: string | null;
|
|
4932
4692
|
/**
|
|
4933
4693
|
*
|
|
4934
|
-
* @type {
|
|
4694
|
+
* @type {string}
|
|
4935
4695
|
* @memberof FaqCategoryModel
|
|
4936
4696
|
*/
|
|
4937
|
-
'
|
|
4697
|
+
'hospitalSlug'?: string | null;
|
|
4698
|
+
/**
|
|
4699
|
+
*
|
|
4700
|
+
* @type {string}
|
|
4701
|
+
* @memberof FaqCategoryModel
|
|
4702
|
+
*/
|
|
4703
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
4704
|
+
/**
|
|
4705
|
+
*
|
|
4706
|
+
* @type {Array<MediaModel>}
|
|
4707
|
+
* @memberof FaqCategoryModel
|
|
4708
|
+
*/
|
|
4709
|
+
'medias'?: Array<MediaModel> | null;
|
|
4938
4710
|
/**
|
|
4939
4711
|
*
|
|
4940
4712
|
* @type {AuditableEntity}
|
|
@@ -4946,7 +4718,19 @@ export interface FaqCategoryModel {
|
|
|
4946
4718
|
* @type {string}
|
|
4947
4719
|
* @memberof FaqCategoryModel
|
|
4948
4720
|
*/
|
|
4949
|
-
'
|
|
4721
|
+
'description'?: string | null;
|
|
4722
|
+
/**
|
|
4723
|
+
*
|
|
4724
|
+
* @type {string}
|
|
4725
|
+
* @memberof FaqCategoryModel
|
|
4726
|
+
*/
|
|
4727
|
+
'overview'?: string | null;
|
|
4728
|
+
/**
|
|
4729
|
+
*
|
|
4730
|
+
* @type {string}
|
|
4731
|
+
* @memberof FaqCategoryModel
|
|
4732
|
+
*/
|
|
4733
|
+
'content'?: string | null;
|
|
4950
4734
|
/**
|
|
4951
4735
|
*
|
|
4952
4736
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -4966,6 +4750,12 @@ export interface FaqItemModel {
|
|
|
4966
4750
|
* @memberof FaqItemModel
|
|
4967
4751
|
*/
|
|
4968
4752
|
'id'?: string;
|
|
4753
|
+
/**
|
|
4754
|
+
*
|
|
4755
|
+
* @type {string}
|
|
4756
|
+
* @memberof FaqItemModel
|
|
4757
|
+
*/
|
|
4758
|
+
'languageCode'?: string | null;
|
|
4969
4759
|
/**
|
|
4970
4760
|
*
|
|
4971
4761
|
* @type {string}
|
|
@@ -4978,12 +4768,18 @@ export interface FaqItemModel {
|
|
|
4978
4768
|
* @memberof FaqItemModel
|
|
4979
4769
|
*/
|
|
4980
4770
|
'slug'?: string | null;
|
|
4771
|
+
/**
|
|
4772
|
+
*
|
|
4773
|
+
* @type {boolean}
|
|
4774
|
+
* @memberof FaqItemModel
|
|
4775
|
+
*/
|
|
4776
|
+
'confirmed'?: boolean;
|
|
4981
4777
|
/**
|
|
4982
4778
|
*
|
|
4983
4779
|
* @type {string}
|
|
4984
4780
|
* @memberof FaqItemModel
|
|
4985
4781
|
*/
|
|
4986
|
-
'
|
|
4782
|
+
'parentId'?: string | null;
|
|
4987
4783
|
/**
|
|
4988
4784
|
*
|
|
4989
4785
|
* @type {number}
|
|
@@ -5007,19 +4803,25 @@ export interface FaqItemModel {
|
|
|
5007
4803
|
* @type {string}
|
|
5008
4804
|
* @memberof FaqItemModel
|
|
5009
4805
|
*/
|
|
5010
|
-
'
|
|
4806
|
+
'hospitalSlug'?: string | null;
|
|
5011
4807
|
/**
|
|
5012
4808
|
*
|
|
5013
4809
|
* @type {string}
|
|
5014
4810
|
* @memberof FaqItemModel
|
|
5015
4811
|
*/
|
|
5016
|
-
'
|
|
4812
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
5017
4813
|
/**
|
|
5018
4814
|
*
|
|
5019
|
-
* @type {
|
|
4815
|
+
* @type {string}
|
|
5020
4816
|
* @memberof FaqItemModel
|
|
5021
4817
|
*/
|
|
5022
|
-
'
|
|
4818
|
+
'faqCategoryId'?: string;
|
|
4819
|
+
/**
|
|
4820
|
+
*
|
|
4821
|
+
* @type {string}
|
|
4822
|
+
* @memberof FaqItemModel
|
|
4823
|
+
*/
|
|
4824
|
+
'faqCategoryName'?: string | null;
|
|
5023
4825
|
/**
|
|
5024
4826
|
*
|
|
5025
4827
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -5051,6 +4853,12 @@ export interface FaqModel {
|
|
|
5051
4853
|
* @memberof FaqModel
|
|
5052
4854
|
*/
|
|
5053
4855
|
'id'?: string;
|
|
4856
|
+
/**
|
|
4857
|
+
*
|
|
4858
|
+
* @type {string}
|
|
4859
|
+
* @memberof FaqModel
|
|
4860
|
+
*/
|
|
4861
|
+
'languageCode'?: string | null;
|
|
5054
4862
|
/**
|
|
5055
4863
|
*
|
|
5056
4864
|
* @type {string}
|
|
@@ -5063,12 +4871,18 @@ export interface FaqModel {
|
|
|
5063
4871
|
* @memberof FaqModel
|
|
5064
4872
|
*/
|
|
5065
4873
|
'slug'?: string | null;
|
|
4874
|
+
/**
|
|
4875
|
+
*
|
|
4876
|
+
* @type {boolean}
|
|
4877
|
+
* @memberof FaqModel
|
|
4878
|
+
*/
|
|
4879
|
+
'confirmed'?: boolean;
|
|
5066
4880
|
/**
|
|
5067
4881
|
*
|
|
5068
4882
|
* @type {string}
|
|
5069
4883
|
* @memberof FaqModel
|
|
5070
4884
|
*/
|
|
5071
|
-
'
|
|
4885
|
+
'parentId'?: string | null;
|
|
5072
4886
|
/**
|
|
5073
4887
|
*
|
|
5074
4888
|
* @type {number}
|
|
@@ -5092,19 +4906,25 @@ export interface FaqModel {
|
|
|
5092
4906
|
* @type {string}
|
|
5093
4907
|
* @memberof FaqModel
|
|
5094
4908
|
*/
|
|
5095
|
-
'
|
|
4909
|
+
'hospitalSlug'?: string | null;
|
|
5096
4910
|
/**
|
|
5097
4911
|
*
|
|
5098
4912
|
* @type {string}
|
|
5099
4913
|
* @memberof FaqModel
|
|
5100
4914
|
*/
|
|
5101
|
-
'
|
|
4915
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
5102
4916
|
/**
|
|
5103
4917
|
*
|
|
5104
|
-
* @type {
|
|
4918
|
+
* @type {string}
|
|
5105
4919
|
* @memberof FaqModel
|
|
5106
4920
|
*/
|
|
5107
|
-
'
|
|
4921
|
+
'faqCategoryId'?: string;
|
|
4922
|
+
/**
|
|
4923
|
+
*
|
|
4924
|
+
* @type {string}
|
|
4925
|
+
* @memberof FaqModel
|
|
4926
|
+
*/
|
|
4927
|
+
'faqCategoryName'?: string | null;
|
|
5108
4928
|
/**
|
|
5109
4929
|
*
|
|
5110
4930
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -5128,7 +4948,13 @@ export interface FaqModel {
|
|
|
5128
4948
|
* @type {string}
|
|
5129
4949
|
* @memberof FaqModel
|
|
5130
4950
|
*/
|
|
5131
|
-
'
|
|
4951
|
+
'description'?: string | null;
|
|
4952
|
+
/**
|
|
4953
|
+
*
|
|
4954
|
+
* @type {string}
|
|
4955
|
+
* @memberof FaqModel
|
|
4956
|
+
*/
|
|
4957
|
+
'overview'?: string | null;
|
|
5132
4958
|
/**
|
|
5133
4959
|
*
|
|
5134
4960
|
* @type {string}
|
|
@@ -5592,13 +5418,13 @@ export interface HospitalItemModel {
|
|
|
5592
5418
|
* @type {string}
|
|
5593
5419
|
* @memberof HospitalItemModel
|
|
5594
5420
|
*/
|
|
5595
|
-
'
|
|
5421
|
+
'countryId'?: string;
|
|
5596
5422
|
/**
|
|
5597
5423
|
*
|
|
5598
5424
|
* @type {string}
|
|
5599
5425
|
* @memberof HospitalItemModel
|
|
5600
5426
|
*/
|
|
5601
|
-
'
|
|
5427
|
+
'specialtiesSummerized'?: string | null;
|
|
5602
5428
|
/**
|
|
5603
5429
|
*
|
|
5604
5430
|
* @type {Array<HospitalAccreditationItemModel>}
|
|
@@ -5701,13 +5527,13 @@ export interface HospitalModel {
|
|
|
5701
5527
|
* @type {string}
|
|
5702
5528
|
* @memberof HospitalModel
|
|
5703
5529
|
*/
|
|
5704
|
-
'
|
|
5530
|
+
'countryId'?: string;
|
|
5705
5531
|
/**
|
|
5706
5532
|
*
|
|
5707
5533
|
* @type {string}
|
|
5708
5534
|
* @memberof HospitalModel
|
|
5709
5535
|
*/
|
|
5710
|
-
'
|
|
5536
|
+
'specialtiesSummerized'?: string | null;
|
|
5711
5537
|
/**
|
|
5712
5538
|
*
|
|
5713
5539
|
* @type {Array<HospitalAccreditationItemModel>}
|
|
@@ -5840,182 +5666,128 @@ export interface HospitalServiceItemModel {
|
|
|
5840
5666
|
* @type {string}
|
|
5841
5667
|
* @memberof HospitalServiceItemModel
|
|
5842
5668
|
*/
|
|
5843
|
-
'
|
|
5844
|
-
/**
|
|
5845
|
-
*
|
|
5846
|
-
* @type {string}
|
|
5847
|
-
* @memberof HospitalServiceItemModel
|
|
5848
|
-
*/
|
|
5849
|
-
'slug'?: string | null;
|
|
5850
|
-
/**
|
|
5851
|
-
*
|
|
5852
|
-
* @type {string}
|
|
5853
|
-
* @memberof HospitalServiceItemModel
|
|
5854
|
-
*/
|
|
5855
|
-
'description'?: string | null;
|
|
5669
|
+
'languageCode'?: string | null;
|
|
5856
5670
|
/**
|
|
5857
5671
|
*
|
|
5858
5672
|
* @type {string}
|
|
5859
5673
|
* @memberof HospitalServiceItemModel
|
|
5860
5674
|
*/
|
|
5861
|
-
'
|
|
5675
|
+
'name'?: string | null;
|
|
5862
5676
|
/**
|
|
5863
5677
|
*
|
|
5864
5678
|
* @type {string}
|
|
5865
5679
|
* @memberof HospitalServiceItemModel
|
|
5866
5680
|
*/
|
|
5867
|
-
'
|
|
5681
|
+
'slug'?: string | null;
|
|
5868
5682
|
/**
|
|
5869
5683
|
*
|
|
5870
|
-
* @type {
|
|
5684
|
+
* @type {boolean}
|
|
5871
5685
|
* @memberof HospitalServiceItemModel
|
|
5872
5686
|
*/
|
|
5873
|
-
'
|
|
5687
|
+
'confirmed'?: boolean;
|
|
5874
5688
|
/**
|
|
5875
5689
|
*
|
|
5876
|
-
* @type {
|
|
5690
|
+
* @type {number}
|
|
5877
5691
|
* @memberof HospitalServiceItemModel
|
|
5878
5692
|
*/
|
|
5879
|
-
'
|
|
5693
|
+
'order'?: number;
|
|
5880
5694
|
/**
|
|
5881
5695
|
*
|
|
5882
5696
|
* @type {string}
|
|
5883
5697
|
* @memberof HospitalServiceItemModel
|
|
5884
5698
|
*/
|
|
5885
|
-
'
|
|
5699
|
+
'photo'?: string | null;
|
|
5886
5700
|
/**
|
|
5887
5701
|
*
|
|
5888
5702
|
* @type {string}
|
|
5889
5703
|
* @memberof HospitalServiceItemModel
|
|
5890
5704
|
*/
|
|
5891
|
-
'
|
|
5705
|
+
'photoThumbnail'?: string | null;
|
|
5892
5706
|
/**
|
|
5893
5707
|
*
|
|
5894
|
-
* @type {
|
|
5708
|
+
* @type {AuditableEntity}
|
|
5895
5709
|
* @memberof HospitalServiceItemModel
|
|
5896
5710
|
*/
|
|
5897
|
-
'
|
|
5711
|
+
'auditableEntity'?: AuditableEntity;
|
|
5712
|
+
}
|
|
5713
|
+
/**
|
|
5714
|
+
*
|
|
5715
|
+
* @export
|
|
5716
|
+
* @interface HospitalServiceModel
|
|
5717
|
+
*/
|
|
5718
|
+
export interface HospitalServiceModel {
|
|
5898
5719
|
/**
|
|
5899
5720
|
*
|
|
5900
5721
|
* @type {string}
|
|
5901
|
-
* @memberof
|
|
5722
|
+
* @memberof HospitalServiceModel
|
|
5902
5723
|
*/
|
|
5903
|
-
'
|
|
5724
|
+
'id'?: string;
|
|
5904
5725
|
/**
|
|
5905
5726
|
*
|
|
5906
5727
|
* @type {string}
|
|
5907
|
-
* @memberof
|
|
5728
|
+
* @memberof HospitalServiceModel
|
|
5908
5729
|
*/
|
|
5909
|
-
'
|
|
5730
|
+
'languageCode'?: string | null;
|
|
5910
5731
|
/**
|
|
5911
5732
|
*
|
|
5912
5733
|
* @type {string}
|
|
5913
|
-
* @memberof
|
|
5734
|
+
* @memberof HospitalServiceModel
|
|
5914
5735
|
*/
|
|
5915
|
-
'
|
|
5736
|
+
'name'?: string | null;
|
|
5916
5737
|
/**
|
|
5917
5738
|
*
|
|
5918
5739
|
* @type {string}
|
|
5919
|
-
* @memberof
|
|
5920
|
-
*/
|
|
5921
|
-
'serviceCategoryName'?: string | null;
|
|
5922
|
-
/**
|
|
5923
|
-
*
|
|
5924
|
-
* @type {MarketingType}
|
|
5925
|
-
* @memberof HospitalServiceItemModel
|
|
5926
|
-
*/
|
|
5927
|
-
'marketingType'?: MarketingType;
|
|
5928
|
-
/**
|
|
5929
|
-
*
|
|
5930
|
-
* @type {Procedure}
|
|
5931
|
-
* @memberof HospitalServiceItemModel
|
|
5932
|
-
*/
|
|
5933
|
-
'procedure'?: Procedure;
|
|
5934
|
-
/**
|
|
5935
|
-
*
|
|
5936
|
-
* @type {number}
|
|
5937
|
-
* @memberof HospitalServiceItemModel
|
|
5938
|
-
*/
|
|
5939
|
-
'minPrice'?: number | null;
|
|
5940
|
-
/**
|
|
5941
|
-
*
|
|
5942
|
-
* @type {number}
|
|
5943
|
-
* @memberof HospitalServiceItemModel
|
|
5740
|
+
* @memberof HospitalServiceModel
|
|
5944
5741
|
*/
|
|
5945
|
-
'
|
|
5742
|
+
'slug'?: string | null;
|
|
5946
5743
|
/**
|
|
5947
5744
|
*
|
|
5948
5745
|
* @type {boolean}
|
|
5949
|
-
* @memberof
|
|
5746
|
+
* @memberof HospitalServiceModel
|
|
5950
5747
|
*/
|
|
5951
|
-
'
|
|
5748
|
+
'confirmed'?: boolean;
|
|
5952
5749
|
/**
|
|
5953
5750
|
*
|
|
5954
5751
|
* @type {number}
|
|
5955
|
-
* @memberof
|
|
5752
|
+
* @memberof HospitalServiceModel
|
|
5956
5753
|
*/
|
|
5957
5754
|
'order'?: number;
|
|
5958
|
-
/**
|
|
5959
|
-
*
|
|
5960
|
-
* @type {boolean}
|
|
5961
|
-
* @memberof HospitalServiceItemModel
|
|
5962
|
-
*/
|
|
5963
|
-
'confirmed'?: boolean;
|
|
5964
5755
|
/**
|
|
5965
5756
|
*
|
|
5966
5757
|
* @type {string}
|
|
5967
|
-
* @memberof
|
|
5758
|
+
* @memberof HospitalServiceModel
|
|
5968
5759
|
*/
|
|
5969
5760
|
'photo'?: string | null;
|
|
5970
5761
|
/**
|
|
5971
5762
|
*
|
|
5972
5763
|
* @type {string}
|
|
5973
|
-
* @memberof
|
|
5764
|
+
* @memberof HospitalServiceModel
|
|
5974
5765
|
*/
|
|
5975
5766
|
'photoThumbnail'?: string | null;
|
|
5976
|
-
/**
|
|
5977
|
-
*
|
|
5978
|
-
* @type {Array<MediaModel>}
|
|
5979
|
-
* @memberof HospitalServiceItemModel
|
|
5980
|
-
*/
|
|
5981
|
-
'medias'?: Array<MediaModel> | null;
|
|
5982
5767
|
/**
|
|
5983
5768
|
*
|
|
5984
5769
|
* @type {AuditableEntity}
|
|
5985
|
-
* @memberof HospitalServiceItemModel
|
|
5986
|
-
*/
|
|
5987
|
-
'auditableEntity'?: AuditableEntity;
|
|
5988
|
-
}
|
|
5989
|
-
/**
|
|
5990
|
-
*
|
|
5991
|
-
* @export
|
|
5992
|
-
* @interface HospitalServiceModel
|
|
5993
|
-
*/
|
|
5994
|
-
export interface HospitalServiceModel {
|
|
5995
|
-
/**
|
|
5996
|
-
*
|
|
5997
|
-
* @type {string}
|
|
5998
5770
|
* @memberof HospitalServiceModel
|
|
5999
5771
|
*/
|
|
6000
|
-
'
|
|
5772
|
+
'auditableEntity'?: AuditableEntity;
|
|
6001
5773
|
/**
|
|
6002
5774
|
*
|
|
6003
5775
|
* @type {string}
|
|
6004
5776
|
* @memberof HospitalServiceModel
|
|
6005
5777
|
*/
|
|
6006
|
-
'
|
|
5778
|
+
'description'?: string | null;
|
|
6007
5779
|
/**
|
|
6008
5780
|
*
|
|
6009
5781
|
* @type {string}
|
|
6010
5782
|
* @memberof HospitalServiceModel
|
|
6011
5783
|
*/
|
|
6012
|
-
'
|
|
5784
|
+
'overview'?: string | null;
|
|
6013
5785
|
/**
|
|
6014
5786
|
*
|
|
6015
5787
|
* @type {string}
|
|
6016
5788
|
* @memberof HospitalServiceModel
|
|
6017
5789
|
*/
|
|
6018
|
-
'
|
|
5790
|
+
'content'?: string | null;
|
|
6019
5791
|
/**
|
|
6020
5792
|
*
|
|
6021
5793
|
* @type {string}
|
|
@@ -6034,24 +5806,6 @@ export interface HospitalServiceModel {
|
|
|
6034
5806
|
* @memberof HospitalServiceModel
|
|
6035
5807
|
*/
|
|
6036
5808
|
'hospitalSlug'?: string | null;
|
|
6037
|
-
/**
|
|
6038
|
-
*
|
|
6039
|
-
* @type {string}
|
|
6040
|
-
* @memberof HospitalServiceModel
|
|
6041
|
-
*/
|
|
6042
|
-
'specialtyTypeId'?: string | null;
|
|
6043
|
-
/**
|
|
6044
|
-
*
|
|
6045
|
-
* @type {string}
|
|
6046
|
-
* @memberof HospitalServiceModel
|
|
6047
|
-
*/
|
|
6048
|
-
'specialtyTypeName'?: string | null;
|
|
6049
|
-
/**
|
|
6050
|
-
*
|
|
6051
|
-
* @type {string}
|
|
6052
|
-
* @memberof HospitalServiceModel
|
|
6053
|
-
*/
|
|
6054
|
-
'specialtyId'?: string;
|
|
6055
5809
|
/**
|
|
6056
5810
|
*
|
|
6057
5811
|
* @type {string}
|
|
@@ -6082,12 +5836,6 @@ export interface HospitalServiceModel {
|
|
|
6082
5836
|
* @memberof HospitalServiceModel
|
|
6083
5837
|
*/
|
|
6084
5838
|
'serviceCategoryName'?: string | null;
|
|
6085
|
-
/**
|
|
6086
|
-
*
|
|
6087
|
-
* @type {MarketingType}
|
|
6088
|
-
* @memberof HospitalServiceModel
|
|
6089
|
-
*/
|
|
6090
|
-
'marketingType'?: MarketingType;
|
|
6091
5839
|
/**
|
|
6092
5840
|
*
|
|
6093
5841
|
* @type {Procedure}
|
|
@@ -6112,66 +5860,18 @@ export interface HospitalServiceModel {
|
|
|
6112
5860
|
* @memberof HospitalServiceModel
|
|
6113
5861
|
*/
|
|
6114
5862
|
'priceReuqest'?: boolean;
|
|
6115
|
-
/**
|
|
6116
|
-
*
|
|
6117
|
-
* @type {number}
|
|
6118
|
-
* @memberof HospitalServiceModel
|
|
6119
|
-
*/
|
|
6120
|
-
'order'?: number;
|
|
6121
|
-
/**
|
|
6122
|
-
*
|
|
6123
|
-
* @type {boolean}
|
|
6124
|
-
* @memberof HospitalServiceModel
|
|
6125
|
-
*/
|
|
6126
|
-
'confirmed'?: boolean;
|
|
6127
|
-
/**
|
|
6128
|
-
*
|
|
6129
|
-
* @type {string}
|
|
6130
|
-
* @memberof HospitalServiceModel
|
|
6131
|
-
*/
|
|
6132
|
-
'photo'?: string | null;
|
|
6133
5863
|
/**
|
|
6134
5864
|
*
|
|
6135
5865
|
* @type {string}
|
|
6136
5866
|
* @memberof HospitalServiceModel
|
|
6137
5867
|
*/
|
|
6138
|
-
'
|
|
5868
|
+
'customStyle'?: string | null;
|
|
6139
5869
|
/**
|
|
6140
5870
|
*
|
|
6141
5871
|
* @type {Array<MediaModel>}
|
|
6142
5872
|
* @memberof HospitalServiceModel
|
|
6143
5873
|
*/
|
|
6144
5874
|
'medias'?: Array<MediaModel> | null;
|
|
6145
|
-
/**
|
|
6146
|
-
*
|
|
6147
|
-
* @type {AuditableEntity}
|
|
6148
|
-
* @memberof HospitalServiceModel
|
|
6149
|
-
*/
|
|
6150
|
-
'auditableEntity'?: AuditableEntity;
|
|
6151
|
-
/**
|
|
6152
|
-
*
|
|
6153
|
-
* @type {string}
|
|
6154
|
-
* @memberof HospitalServiceModel
|
|
6155
|
-
*/
|
|
6156
|
-
'languageCode'?: string | null;
|
|
6157
|
-
/**
|
|
6158
|
-
*
|
|
6159
|
-
* @type {string}
|
|
6160
|
-
* @memberof HospitalServiceModel
|
|
6161
|
-
*/
|
|
6162
|
-
'content'?: string | null;
|
|
6163
|
-
/**
|
|
6164
|
-
*
|
|
6165
|
-
* @type {string}
|
|
6166
|
-
* @memberof HospitalServiceModel
|
|
6167
|
-
*/
|
|
6168
|
-
'customStyle'?: string | null;
|
|
6169
|
-
/**
|
|
6170
|
-
*
|
|
6171
|
-
* @type {Array<LocalizedUrlModel>}
|
|
6172
|
-
* @memberof HospitalServiceModel
|
|
6173
|
-
*/
|
|
6174
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6175
5875
|
}
|
|
6176
5876
|
/**
|
|
6177
5877
|
*
|
|
@@ -6318,16 +6018,10 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6318
6018
|
'slug'?: string | null;
|
|
6319
6019
|
/**
|
|
6320
6020
|
*
|
|
6321
|
-
* @type {
|
|
6322
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6323
|
-
*/
|
|
6324
|
-
'description'?: string | null;
|
|
6325
|
-
/**
|
|
6326
|
-
*
|
|
6327
|
-
* @type {boolean}
|
|
6021
|
+
* @type {number}
|
|
6328
6022
|
* @memberof HospitalSpecialtyItemModel
|
|
6329
6023
|
*/
|
|
6330
|
-
'
|
|
6024
|
+
'order'?: number;
|
|
6331
6025
|
/**
|
|
6332
6026
|
*
|
|
6333
6027
|
* @type {string}
|
|
@@ -6352,12 +6046,6 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6352
6046
|
* @memberof HospitalSpecialtyItemModel
|
|
6353
6047
|
*/
|
|
6354
6048
|
'backgroundThumbnail'?: string | null;
|
|
6355
|
-
/**
|
|
6356
|
-
*
|
|
6357
|
-
* @type {number}
|
|
6358
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6359
|
-
*/
|
|
6360
|
-
'order'?: number;
|
|
6361
6049
|
/**
|
|
6362
6050
|
*
|
|
6363
6051
|
* @type {number}
|
|
@@ -6400,19 +6088,13 @@ export interface HospitalSpecialtyModel {
|
|
|
6400
6088
|
* @type {string}
|
|
6401
6089
|
* @memberof HospitalSpecialtyModel
|
|
6402
6090
|
*/
|
|
6403
|
-
'slug'?: string | null;
|
|
6404
|
-
/**
|
|
6405
|
-
*
|
|
6406
|
-
* @type {string}
|
|
6407
|
-
* @memberof HospitalSpecialtyModel
|
|
6408
|
-
*/
|
|
6409
|
-
'description'?: string | null;
|
|
6091
|
+
'slug'?: string | null;
|
|
6410
6092
|
/**
|
|
6411
6093
|
*
|
|
6412
|
-
* @type {
|
|
6094
|
+
* @type {number}
|
|
6413
6095
|
* @memberof HospitalSpecialtyModel
|
|
6414
6096
|
*/
|
|
6415
|
-
'
|
|
6097
|
+
'order'?: number;
|
|
6416
6098
|
/**
|
|
6417
6099
|
*
|
|
6418
6100
|
* @type {string}
|
|
@@ -6442,37 +6124,37 @@ export interface HospitalSpecialtyModel {
|
|
|
6442
6124
|
* @type {number}
|
|
6443
6125
|
* @memberof HospitalSpecialtyModel
|
|
6444
6126
|
*/
|
|
6445
|
-
'
|
|
6127
|
+
'servicesCount'?: number;
|
|
6446
6128
|
/**
|
|
6447
6129
|
*
|
|
6448
|
-
* @type {
|
|
6130
|
+
* @type {string}
|
|
6449
6131
|
* @memberof HospitalSpecialtyModel
|
|
6450
6132
|
*/
|
|
6451
|
-
'
|
|
6133
|
+
'specialtyId'?: string;
|
|
6452
6134
|
/**
|
|
6453
6135
|
*
|
|
6454
6136
|
* @type {string}
|
|
6455
6137
|
* @memberof HospitalSpecialtyModel
|
|
6456
6138
|
*/
|
|
6457
|
-
'
|
|
6139
|
+
'description'?: string | null;
|
|
6458
6140
|
/**
|
|
6459
6141
|
*
|
|
6460
6142
|
* @type {string}
|
|
6461
6143
|
* @memberof HospitalSpecialtyModel
|
|
6462
6144
|
*/
|
|
6463
|
-
'
|
|
6145
|
+
'content'?: string | null;
|
|
6464
6146
|
/**
|
|
6465
6147
|
*
|
|
6466
|
-
* @type {
|
|
6148
|
+
* @type {boolean}
|
|
6467
6149
|
* @memberof HospitalSpecialtyModel
|
|
6468
6150
|
*/
|
|
6469
|
-
'
|
|
6151
|
+
'confirmed'?: boolean;
|
|
6470
6152
|
/**
|
|
6471
6153
|
*
|
|
6472
6154
|
* @type {string}
|
|
6473
6155
|
* @memberof HospitalSpecialtyModel
|
|
6474
6156
|
*/
|
|
6475
|
-
'
|
|
6157
|
+
'hospitalId'?: string;
|
|
6476
6158
|
/**
|
|
6477
6159
|
*
|
|
6478
6160
|
* @type {string}
|
|
@@ -6502,13 +6184,7 @@ export interface HospitalSpecialtyModel {
|
|
|
6502
6184
|
* @type {string}
|
|
6503
6185
|
* @memberof HospitalSpecialtyModel
|
|
6504
6186
|
*/
|
|
6505
|
-
'
|
|
6506
|
-
/**
|
|
6507
|
-
*
|
|
6508
|
-
* @type {MarketingType}
|
|
6509
|
-
* @memberof HospitalSpecialtyModel
|
|
6510
|
-
*/
|
|
6511
|
-
'marketingType'?: MarketingType;
|
|
6187
|
+
'customStyle'?: string | null;
|
|
6512
6188
|
/**
|
|
6513
6189
|
*
|
|
6514
6190
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -6552,36 +6228,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
6552
6228
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6553
6229
|
*/
|
|
6554
6230
|
'slug'?: string | null;
|
|
6555
|
-
/**
|
|
6556
|
-
*
|
|
6557
|
-
* @type {string}
|
|
6558
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6559
|
-
*/
|
|
6560
|
-
'description'?: string | null;
|
|
6561
|
-
/**
|
|
6562
|
-
*
|
|
6563
|
-
* @type {boolean}
|
|
6564
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6565
|
-
*/
|
|
6566
|
-
'confirmed'?: boolean;
|
|
6567
6231
|
/**
|
|
6568
6232
|
*
|
|
6569
6233
|
* @type {number}
|
|
6570
6234
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6571
6235
|
*/
|
|
6572
6236
|
'order'?: number;
|
|
6573
|
-
/**
|
|
6574
|
-
*
|
|
6575
|
-
* @type {number}
|
|
6576
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6577
|
-
*/
|
|
6578
|
-
'servicesCount'?: number;
|
|
6579
|
-
/**
|
|
6580
|
-
*
|
|
6581
|
-
* @type {string}
|
|
6582
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6583
|
-
*/
|
|
6584
|
-
'specialtyId'?: string;
|
|
6585
6237
|
}
|
|
6586
6238
|
/**
|
|
6587
6239
|
*
|
|
@@ -7342,12 +6994,6 @@ export interface PatientModel {
|
|
|
7342
6994
|
* @memberof PatientModel
|
|
7343
6995
|
*/
|
|
7344
6996
|
'firstName'?: string | null;
|
|
7345
|
-
/**
|
|
7346
|
-
*
|
|
7347
|
-
* @type {string}
|
|
7348
|
-
* @memberof PatientModel
|
|
7349
|
-
*/
|
|
7350
|
-
'middleName'?: string | null;
|
|
7351
6997
|
/**
|
|
7352
6998
|
*
|
|
7353
6999
|
* @type {string}
|
|
@@ -7360,18 +7006,6 @@ export interface PatientModel {
|
|
|
7360
7006
|
* @memberof PatientModel
|
|
7361
7007
|
*/
|
|
7362
7008
|
'fullName'?: string | null;
|
|
7363
|
-
/**
|
|
7364
|
-
*
|
|
7365
|
-
* @type {string}
|
|
7366
|
-
* @memberof PatientModel
|
|
7367
|
-
*/
|
|
7368
|
-
'slug'?: string | null;
|
|
7369
|
-
/**
|
|
7370
|
-
*
|
|
7371
|
-
* @type {boolean}
|
|
7372
|
-
* @memberof PatientModel
|
|
7373
|
-
*/
|
|
7374
|
-
'confirmed'?: boolean;
|
|
7375
7009
|
/**
|
|
7376
7010
|
*
|
|
7377
7011
|
* @type {string}
|
|
@@ -8460,31 +8094,25 @@ export interface SpecialtyItemModel {
|
|
|
8460
8094
|
* @type {string}
|
|
8461
8095
|
* @memberof SpecialtyItemModel
|
|
8462
8096
|
*/
|
|
8463
|
-
'
|
|
8097
|
+
'languageCode'?: string | null;
|
|
8464
8098
|
/**
|
|
8465
8099
|
*
|
|
8466
8100
|
* @type {string}
|
|
8467
8101
|
* @memberof SpecialtyItemModel
|
|
8468
8102
|
*/
|
|
8469
|
-
'
|
|
8103
|
+
'name'?: string | null;
|
|
8470
8104
|
/**
|
|
8471
8105
|
*
|
|
8472
8106
|
* @type {string}
|
|
8473
8107
|
* @memberof SpecialtyItemModel
|
|
8474
8108
|
*/
|
|
8475
|
-
'
|
|
8476
|
-
/**
|
|
8477
|
-
*
|
|
8478
|
-
* @type {number}
|
|
8479
|
-
* @memberof SpecialtyItemModel
|
|
8480
|
-
*/
|
|
8481
|
-
'hospitalSpecialtyCount'?: number;
|
|
8109
|
+
'slug'?: string | null;
|
|
8482
8110
|
/**
|
|
8483
8111
|
*
|
|
8484
|
-
* @type {
|
|
8112
|
+
* @type {boolean}
|
|
8485
8113
|
* @memberof SpecialtyItemModel
|
|
8486
8114
|
*/
|
|
8487
|
-
'
|
|
8115
|
+
'confirmed'?: boolean;
|
|
8488
8116
|
/**
|
|
8489
8117
|
*
|
|
8490
8118
|
* @type {string}
|
|
@@ -8499,28 +8127,16 @@ export interface SpecialtyItemModel {
|
|
|
8499
8127
|
'specialtyTypeName'?: string | null;
|
|
8500
8128
|
/**
|
|
8501
8129
|
*
|
|
8502
|
-
* @type {
|
|
8130
|
+
* @type {Array<MediaModel>}
|
|
8503
8131
|
* @memberof SpecialtyItemModel
|
|
8504
8132
|
*/
|
|
8505
|
-
'
|
|
8133
|
+
'medias'?: Array<MediaModel> | null;
|
|
8506
8134
|
/**
|
|
8507
8135
|
*
|
|
8508
8136
|
* @type {AuditableEntity}
|
|
8509
8137
|
* @memberof SpecialtyItemModel
|
|
8510
8138
|
*/
|
|
8511
8139
|
'auditableEntity'?: AuditableEntity;
|
|
8512
|
-
/**
|
|
8513
|
-
*
|
|
8514
|
-
* @type {boolean}
|
|
8515
|
-
* @memberof SpecialtyItemModel
|
|
8516
|
-
*/
|
|
8517
|
-
'returnDefaultValue'?: boolean | null;
|
|
8518
|
-
/**
|
|
8519
|
-
*
|
|
8520
|
-
* @type {Array<MediaModel>}
|
|
8521
|
-
* @memberof SpecialtyItemModel
|
|
8522
|
-
*/
|
|
8523
|
-
'medias'?: Array<MediaModel> | null;
|
|
8524
8140
|
}
|
|
8525
8141
|
/**
|
|
8526
8142
|
*
|
|
@@ -8539,25 +8155,31 @@ export interface SpecialtyItemSimpleModel {
|
|
|
8539
8155
|
* @type {string}
|
|
8540
8156
|
* @memberof SpecialtyItemSimpleModel
|
|
8541
8157
|
*/
|
|
8542
|
-
'
|
|
8158
|
+
'languageCode'?: string | null;
|
|
8543
8159
|
/**
|
|
8544
8160
|
*
|
|
8545
8161
|
* @type {string}
|
|
8546
8162
|
* @memberof SpecialtyItemSimpleModel
|
|
8547
8163
|
*/
|
|
8548
|
-
'
|
|
8164
|
+
'name'?: string | null;
|
|
8549
8165
|
/**
|
|
8550
8166
|
*
|
|
8551
8167
|
* @type {string}
|
|
8552
8168
|
* @memberof SpecialtyItemSimpleModel
|
|
8553
8169
|
*/
|
|
8554
|
-
'
|
|
8170
|
+
'slug'?: string | null;
|
|
8555
8171
|
/**
|
|
8556
8172
|
*
|
|
8557
8173
|
* @type {boolean}
|
|
8558
8174
|
* @memberof SpecialtyItemSimpleModel
|
|
8559
8175
|
*/
|
|
8560
8176
|
'confirmed'?: boolean;
|
|
8177
|
+
/**
|
|
8178
|
+
*
|
|
8179
|
+
* @type {string}
|
|
8180
|
+
* @memberof SpecialtyItemSimpleModel
|
|
8181
|
+
*/
|
|
8182
|
+
'specialtyTypeId'?: string;
|
|
8561
8183
|
}
|
|
8562
8184
|
/**
|
|
8563
8185
|
*
|
|
@@ -8576,31 +8198,25 @@ export interface SpecialtyModel {
|
|
|
8576
8198
|
* @type {string}
|
|
8577
8199
|
* @memberof SpecialtyModel
|
|
8578
8200
|
*/
|
|
8579
|
-
'
|
|
8201
|
+
'languageCode'?: string | null;
|
|
8580
8202
|
/**
|
|
8581
8203
|
*
|
|
8582
8204
|
* @type {string}
|
|
8583
8205
|
* @memberof SpecialtyModel
|
|
8584
8206
|
*/
|
|
8585
|
-
'
|
|
8207
|
+
'name'?: string | null;
|
|
8586
8208
|
/**
|
|
8587
8209
|
*
|
|
8588
8210
|
* @type {string}
|
|
8589
8211
|
* @memberof SpecialtyModel
|
|
8590
8212
|
*/
|
|
8591
|
-
'
|
|
8592
|
-
/**
|
|
8593
|
-
*
|
|
8594
|
-
* @type {number}
|
|
8595
|
-
* @memberof SpecialtyModel
|
|
8596
|
-
*/
|
|
8597
|
-
'hospitalSpecialtyCount'?: number;
|
|
8213
|
+
'slug'?: string | null;
|
|
8598
8214
|
/**
|
|
8599
8215
|
*
|
|
8600
|
-
* @type {
|
|
8216
|
+
* @type {boolean}
|
|
8601
8217
|
* @memberof SpecialtyModel
|
|
8602
8218
|
*/
|
|
8603
|
-
'
|
|
8219
|
+
'confirmed'?: boolean;
|
|
8604
8220
|
/**
|
|
8605
8221
|
*
|
|
8606
8222
|
* @type {string}
|
|
@@ -8615,10 +8231,10 @@ export interface SpecialtyModel {
|
|
|
8615
8231
|
'specialtyTypeName'?: string | null;
|
|
8616
8232
|
/**
|
|
8617
8233
|
*
|
|
8618
|
-
* @type {
|
|
8234
|
+
* @type {Array<MediaModel>}
|
|
8619
8235
|
* @memberof SpecialtyModel
|
|
8620
8236
|
*/
|
|
8621
|
-
'
|
|
8237
|
+
'medias'?: Array<MediaModel> | null;
|
|
8622
8238
|
/**
|
|
8623
8239
|
*
|
|
8624
8240
|
* @type {AuditableEntity}
|
|
@@ -8627,22 +8243,16 @@ export interface SpecialtyModel {
|
|
|
8627
8243
|
'auditableEntity'?: AuditableEntity;
|
|
8628
8244
|
/**
|
|
8629
8245
|
*
|
|
8630
|
-
* @type {
|
|
8631
|
-
* @memberof SpecialtyModel
|
|
8632
|
-
*/
|
|
8633
|
-
'returnDefaultValue'?: boolean | null;
|
|
8634
|
-
/**
|
|
8635
|
-
*
|
|
8636
|
-
* @type {Array<MediaModel>}
|
|
8246
|
+
* @type {string}
|
|
8637
8247
|
* @memberof SpecialtyModel
|
|
8638
8248
|
*/
|
|
8639
|
-
'
|
|
8249
|
+
'description'?: string | null;
|
|
8640
8250
|
/**
|
|
8641
8251
|
*
|
|
8642
8252
|
* @type {string}
|
|
8643
8253
|
* @memberof SpecialtyModel
|
|
8644
8254
|
*/
|
|
8645
|
-
'
|
|
8255
|
+
'overview'?: string | null;
|
|
8646
8256
|
/**
|
|
8647
8257
|
*
|
|
8648
8258
|
* @type {string}
|
|
@@ -8673,55 +8283,43 @@ export interface SpecialtyTypeItemModel {
|
|
|
8673
8283
|
* @type {string}
|
|
8674
8284
|
* @memberof SpecialtyTypeItemModel
|
|
8675
8285
|
*/
|
|
8676
|
-
'
|
|
8286
|
+
'languageCode'?: string | null;
|
|
8677
8287
|
/**
|
|
8678
8288
|
*
|
|
8679
8289
|
* @type {string}
|
|
8680
8290
|
* @memberof SpecialtyTypeItemModel
|
|
8681
8291
|
*/
|
|
8682
|
-
'
|
|
8292
|
+
'name'?: string | null;
|
|
8683
8293
|
/**
|
|
8684
8294
|
*
|
|
8685
8295
|
* @type {string}
|
|
8686
8296
|
* @memberof SpecialtyTypeItemModel
|
|
8687
8297
|
*/
|
|
8688
|
-
'
|
|
8298
|
+
'slug'?: string | null;
|
|
8689
8299
|
/**
|
|
8690
8300
|
*
|
|
8691
|
-
* @type {
|
|
8301
|
+
* @type {boolean}
|
|
8692
8302
|
* @memberof SpecialtyTypeItemModel
|
|
8693
8303
|
*/
|
|
8694
|
-
'
|
|
8304
|
+
'confirmed'?: boolean;
|
|
8695
8305
|
/**
|
|
8696
8306
|
*
|
|
8697
|
-
* @type {
|
|
8307
|
+
* @type {string}
|
|
8698
8308
|
* @memberof SpecialtyTypeItemModel
|
|
8699
8309
|
*/
|
|
8700
|
-
'
|
|
8310
|
+
'description'?: string | null;
|
|
8701
8311
|
/**
|
|
8702
8312
|
*
|
|
8703
|
-
* @type {
|
|
8313
|
+
* @type {MarketingType}
|
|
8704
8314
|
* @memberof SpecialtyTypeItemModel
|
|
8705
8315
|
*/
|
|
8706
|
-
'
|
|
8316
|
+
'marketingType'?: MarketingType;
|
|
8707
8317
|
/**
|
|
8708
8318
|
*
|
|
8709
8319
|
* @type {number}
|
|
8710
8320
|
* @memberof SpecialtyTypeItemModel
|
|
8711
8321
|
*/
|
|
8712
|
-
'
|
|
8713
|
-
/**
|
|
8714
|
-
*
|
|
8715
|
-
* @type {Date}
|
|
8716
|
-
* @memberof SpecialtyTypeItemModel
|
|
8717
|
-
*/
|
|
8718
|
-
'created'?: Date;
|
|
8719
|
-
/**
|
|
8720
|
-
*
|
|
8721
|
-
* @type {boolean}
|
|
8722
|
-
* @memberof SpecialtyTypeItemModel
|
|
8723
|
-
*/
|
|
8724
|
-
'confirmed'?: boolean;
|
|
8322
|
+
'specialtiesCount'?: number;
|
|
8725
8323
|
/**
|
|
8726
8324
|
*
|
|
8727
8325
|
* @type {Array<MediaModel>}
|
|
@@ -8752,55 +8350,43 @@ export interface SpecialtyTypeModel {
|
|
|
8752
8350
|
* @type {string}
|
|
8753
8351
|
* @memberof SpecialtyTypeModel
|
|
8754
8352
|
*/
|
|
8755
|
-
'
|
|
8353
|
+
'languageCode'?: string | null;
|
|
8756
8354
|
/**
|
|
8757
8355
|
*
|
|
8758
8356
|
* @type {string}
|
|
8759
8357
|
* @memberof SpecialtyTypeModel
|
|
8760
8358
|
*/
|
|
8761
|
-
'
|
|
8359
|
+
'name'?: string | null;
|
|
8762
8360
|
/**
|
|
8763
8361
|
*
|
|
8764
8362
|
* @type {string}
|
|
8765
8363
|
* @memberof SpecialtyTypeModel
|
|
8766
8364
|
*/
|
|
8767
|
-
'
|
|
8365
|
+
'slug'?: string | null;
|
|
8768
8366
|
/**
|
|
8769
8367
|
*
|
|
8770
|
-
* @type {
|
|
8368
|
+
* @type {boolean}
|
|
8771
8369
|
* @memberof SpecialtyTypeModel
|
|
8772
8370
|
*/
|
|
8773
|
-
'
|
|
8371
|
+
'confirmed'?: boolean;
|
|
8774
8372
|
/**
|
|
8775
8373
|
*
|
|
8776
|
-
* @type {
|
|
8374
|
+
* @type {string}
|
|
8777
8375
|
* @memberof SpecialtyTypeModel
|
|
8778
8376
|
*/
|
|
8779
|
-
'
|
|
8377
|
+
'description'?: string | null;
|
|
8780
8378
|
/**
|
|
8781
8379
|
*
|
|
8782
|
-
* @type {
|
|
8380
|
+
* @type {MarketingType}
|
|
8783
8381
|
* @memberof SpecialtyTypeModel
|
|
8784
8382
|
*/
|
|
8785
|
-
'
|
|
8383
|
+
'marketingType'?: MarketingType;
|
|
8786
8384
|
/**
|
|
8787
8385
|
*
|
|
8788
8386
|
* @type {number}
|
|
8789
8387
|
* @memberof SpecialtyTypeModel
|
|
8790
8388
|
*/
|
|
8791
|
-
'
|
|
8792
|
-
/**
|
|
8793
|
-
*
|
|
8794
|
-
* @type {Date}
|
|
8795
|
-
* @memberof SpecialtyTypeModel
|
|
8796
|
-
*/
|
|
8797
|
-
'created'?: Date;
|
|
8798
|
-
/**
|
|
8799
|
-
*
|
|
8800
|
-
* @type {boolean}
|
|
8801
|
-
* @memberof SpecialtyTypeModel
|
|
8802
|
-
*/
|
|
8803
|
-
'confirmed'?: boolean;
|
|
8389
|
+
'specialtiesCount'?: number;
|
|
8804
8390
|
/**
|
|
8805
8391
|
*
|
|
8806
8392
|
* @type {Array<MediaModel>}
|
|
@@ -8813,12 +8399,6 @@ export interface SpecialtyTypeModel {
|
|
|
8813
8399
|
* @memberof SpecialtyTypeModel
|
|
8814
8400
|
*/
|
|
8815
8401
|
'auditableEntity'?: AuditableEntity;
|
|
8816
|
-
/**
|
|
8817
|
-
*
|
|
8818
|
-
* @type {string}
|
|
8819
|
-
* @memberof SpecialtyTypeModel
|
|
8820
|
-
*/
|
|
8821
|
-
'languageCode'?: string | null;
|
|
8822
8402
|
/**
|
|
8823
8403
|
*
|
|
8824
8404
|
* @type {string}
|
|
@@ -8844,6 +8424,12 @@ export interface SpecialtyTypeSimpleItemModel {
|
|
|
8844
8424
|
* @memberof SpecialtyTypeSimpleItemModel
|
|
8845
8425
|
*/
|
|
8846
8426
|
'id'?: string;
|
|
8427
|
+
/**
|
|
8428
|
+
*
|
|
8429
|
+
* @type {string}
|
|
8430
|
+
* @memberof SpecialtyTypeSimpleItemModel
|
|
8431
|
+
*/
|
|
8432
|
+
'languageCode'?: string | null;
|
|
8847
8433
|
/**
|
|
8848
8434
|
*
|
|
8849
8435
|
* @type {string}
|
|
@@ -9529,12 +9115,6 @@ export interface UserModel {
|
|
|
9529
9115
|
* @memberof UserModel
|
|
9530
9116
|
*/
|
|
9531
9117
|
'firstName'?: string | null;
|
|
9532
|
-
/**
|
|
9533
|
-
*
|
|
9534
|
-
* @type {string}
|
|
9535
|
-
* @memberof UserModel
|
|
9536
|
-
*/
|
|
9537
|
-
'middleName'?: string | null;
|
|
9538
9118
|
/**
|
|
9539
9119
|
*
|
|
9540
9120
|
* @type {string}
|
|
@@ -9547,18 +9127,6 @@ export interface UserModel {
|
|
|
9547
9127
|
* @memberof UserModel
|
|
9548
9128
|
*/
|
|
9549
9129
|
'fullName'?: string | null;
|
|
9550
|
-
/**
|
|
9551
|
-
*
|
|
9552
|
-
* @type {string}
|
|
9553
|
-
* @memberof UserModel
|
|
9554
|
-
*/
|
|
9555
|
-
'slug'?: string | null;
|
|
9556
|
-
/**
|
|
9557
|
-
*
|
|
9558
|
-
* @type {boolean}
|
|
9559
|
-
* @memberof UserModel
|
|
9560
|
-
*/
|
|
9561
|
-
'confirmed'?: boolean;
|
|
9562
9130
|
/**
|
|
9563
9131
|
*
|
|
9564
9132
|
* @type {string}
|
|
@@ -12525,13 +12093,14 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12525
12093
|
* @summary Get all doctor affiliations.
|
|
12526
12094
|
* @param {string} doctorId
|
|
12527
12095
|
* @param {string} [hospitalName]
|
|
12096
|
+
* @param {string} [languageCode]
|
|
12528
12097
|
* @param {number} [page]
|
|
12529
12098
|
* @param {number} [limit]
|
|
12530
12099
|
* @param {Date} [lastRetrieved]
|
|
12531
12100
|
* @param {*} [options] Override http request option.
|
|
12532
12101
|
* @throws {RequiredError}
|
|
12533
12102
|
*/
|
|
12534
|
-
apiV2DoctorsDoctorIdAffiliationsGet: (doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12103
|
+
apiV2DoctorsDoctorIdAffiliationsGet: (doctorId: string, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12535
12104
|
/**
|
|
12536
12105
|
*
|
|
12537
12106
|
* @summary Get doctor affiliation.
|
|
@@ -12760,13 +12329,14 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
12760
12329
|
* @summary Get all doctor affiliations.
|
|
12761
12330
|
* @param {string} doctorId
|
|
12762
12331
|
* @param {string} [hospitalName]
|
|
12332
|
+
* @param {string} [languageCode]
|
|
12763
12333
|
* @param {number} [page]
|
|
12764
12334
|
* @param {number} [limit]
|
|
12765
12335
|
* @param {Date} [lastRetrieved]
|
|
12766
12336
|
* @param {*} [options] Override http request option.
|
|
12767
12337
|
* @throws {RequiredError}
|
|
12768
12338
|
*/
|
|
12769
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
12339
|
+
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
12770
12340
|
/**
|
|
12771
12341
|
*
|
|
12772
12342
|
* @summary Get doctor affiliation.
|
|
@@ -12995,13 +12565,14 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
12995
12565
|
* @summary Get all doctor affiliations.
|
|
12996
12566
|
* @param {string} doctorId
|
|
12997
12567
|
* @param {string} [hospitalName]
|
|
12568
|
+
* @param {string} [languageCode]
|
|
12998
12569
|
* @param {number} [page]
|
|
12999
12570
|
* @param {number} [limit]
|
|
13000
12571
|
* @param {Date} [lastRetrieved]
|
|
13001
12572
|
* @param {*} [options] Override http request option.
|
|
13002
12573
|
* @throws {RequiredError}
|
|
13003
12574
|
*/
|
|
13004
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
12575
|
+
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
13005
12576
|
/**
|
|
13006
12577
|
*
|
|
13007
12578
|
* @summary Get doctor affiliation.
|
|
@@ -13232,6 +12803,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13232
12803
|
* @summary Get all doctor affiliations.
|
|
13233
12804
|
* @param {string} doctorId
|
|
13234
12805
|
* @param {string} [hospitalName]
|
|
12806
|
+
* @param {string} [languageCode]
|
|
13235
12807
|
* @param {number} [page]
|
|
13236
12808
|
* @param {number} [limit]
|
|
13237
12809
|
* @param {Date} [lastRetrieved]
|
|
@@ -13239,7 +12811,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13239
12811
|
* @throws {RequiredError}
|
|
13240
12812
|
* @memberof DoctorsApi
|
|
13241
12813
|
*/
|
|
13242
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel, any>>;
|
|
12814
|
+
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel, any>>;
|
|
13243
12815
|
/**
|
|
13244
12816
|
*
|
|
13245
12817
|
* @summary Get doctor affiliation.
|
|
@@ -14382,17 +13954,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14382
13954
|
* @param {string} [name]
|
|
14383
13955
|
* @param {string} [slug]
|
|
14384
13956
|
* @param {MarketingType} [marketingType]
|
|
14385
|
-
* @param {boolean} [returnDefaultValue]
|
|
14386
|
-
* @param {boolean} [includeServices]
|
|
14387
13957
|
* @param {string} [languageCode]
|
|
14388
|
-
* @param {boolean} [showHidden]
|
|
14389
13958
|
* @param {number} [page]
|
|
14390
13959
|
* @param {number} [limit]
|
|
14391
13960
|
* @param {Date} [lastRetrieved]
|
|
14392
13961
|
* @param {*} [options] Override http request option.
|
|
14393
13962
|
* @throws {RequiredError}
|
|
14394
13963
|
*/
|
|
14395
|
-
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined,
|
|
13964
|
+
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14396
13965
|
/**
|
|
14397
13966
|
*
|
|
14398
13967
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -14429,41 +13998,34 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14429
13998
|
* @param {string} [name]
|
|
14430
13999
|
* @param {string} [slug]
|
|
14431
14000
|
* @param {MarketingType} [marketingType]
|
|
14432
|
-
* @param {boolean} [returnDefaultValue]
|
|
14433
|
-
* @param {boolean} [includeServices]
|
|
14434
14001
|
* @param {string} [languageCode]
|
|
14435
|
-
* @param {boolean} [showHidden]
|
|
14436
14002
|
* @param {number} [page]
|
|
14437
14003
|
* @param {number} [limit]
|
|
14438
14004
|
* @param {Date} [lastRetrieved]
|
|
14439
14005
|
* @param {*} [options] Override http request option.
|
|
14440
14006
|
* @throws {RequiredError}
|
|
14441
14007
|
*/
|
|
14442
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined,
|
|
14008
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14443
14009
|
/**
|
|
14444
14010
|
*
|
|
14445
14011
|
* @summary Get HospitalSpecialty by slug.
|
|
14446
14012
|
* @param {string} hospitalId
|
|
14447
14013
|
* @param {string} slug
|
|
14448
14014
|
* @param {string} [languageCode]
|
|
14449
|
-
* @param {boolean} [returnDefaultValue]
|
|
14450
|
-
* @param {boolean} [includeServices]
|
|
14451
14015
|
* @param {*} [options] Override http request option.
|
|
14452
14016
|
* @throws {RequiredError}
|
|
14453
14017
|
*/
|
|
14454
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet: (hospitalId: string, slug: string, languageCode?: string | undefined,
|
|
14018
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet: (hospitalId: string, slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14455
14019
|
/**
|
|
14456
14020
|
*
|
|
14457
14021
|
* @summary Get HospitalSpecialty.
|
|
14458
14022
|
* @param {string} hospitalId
|
|
14459
14023
|
* @param {string} specialtyId
|
|
14460
14024
|
* @param {string} [languageCode]
|
|
14461
|
-
* @param {boolean} [returnDefaultValue]
|
|
14462
|
-
* @param {boolean} [includeServices]
|
|
14463
14025
|
* @param {*} [options] Override http request option.
|
|
14464
14026
|
* @throws {RequiredError}
|
|
14465
14027
|
*/
|
|
14466
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined,
|
|
14028
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14467
14029
|
/**
|
|
14468
14030
|
*
|
|
14469
14031
|
* @summary Get all HospitalServices.
|
|
@@ -14771,17 +14333,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14771
14333
|
* @param {string} [name]
|
|
14772
14334
|
* @param {string} [slug]
|
|
14773
14335
|
* @param {MarketingType} [marketingType]
|
|
14774
|
-
* @param {boolean} [returnDefaultValue]
|
|
14775
|
-
* @param {boolean} [includeServices]
|
|
14776
14336
|
* @param {string} [languageCode]
|
|
14777
|
-
* @param {boolean} [showHidden]
|
|
14778
14337
|
* @param {number} [page]
|
|
14779
14338
|
* @param {number} [limit]
|
|
14780
14339
|
* @param {Date} [lastRetrieved]
|
|
14781
14340
|
* @param {*} [options] Override http request option.
|
|
14782
14341
|
* @throws {RequiredError}
|
|
14783
14342
|
*/
|
|
14784
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined,
|
|
14343
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
14785
14344
|
/**
|
|
14786
14345
|
*
|
|
14787
14346
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -14818,41 +14377,34 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14818
14377
|
* @param {string} [name]
|
|
14819
14378
|
* @param {string} [slug]
|
|
14820
14379
|
* @param {MarketingType} [marketingType]
|
|
14821
|
-
* @param {boolean} [returnDefaultValue]
|
|
14822
|
-
* @param {boolean} [includeServices]
|
|
14823
14380
|
* @param {string} [languageCode]
|
|
14824
|
-
* @param {boolean} [showHidden]
|
|
14825
14381
|
* @param {number} [page]
|
|
14826
14382
|
* @param {number} [limit]
|
|
14827
14383
|
* @param {Date} [lastRetrieved]
|
|
14828
14384
|
* @param {*} [options] Override http request option.
|
|
14829
14385
|
* @throws {RequiredError}
|
|
14830
14386
|
*/
|
|
14831
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined,
|
|
14387
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
|
|
14832
14388
|
/**
|
|
14833
14389
|
*
|
|
14834
14390
|
* @summary Get HospitalSpecialty by slug.
|
|
14835
14391
|
* @param {string} hospitalId
|
|
14836
14392
|
* @param {string} slug
|
|
14837
14393
|
* @param {string} [languageCode]
|
|
14838
|
-
* @param {boolean} [returnDefaultValue]
|
|
14839
|
-
* @param {boolean} [includeServices]
|
|
14840
14394
|
* @param {*} [options] Override http request option.
|
|
14841
14395
|
* @throws {RequiredError}
|
|
14842
14396
|
*/
|
|
14843
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined,
|
|
14397
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
14844
14398
|
/**
|
|
14845
14399
|
*
|
|
14846
14400
|
* @summary Get HospitalSpecialty.
|
|
14847
14401
|
* @param {string} hospitalId
|
|
14848
14402
|
* @param {string} specialtyId
|
|
14849
14403
|
* @param {string} [languageCode]
|
|
14850
|
-
* @param {boolean} [returnDefaultValue]
|
|
14851
|
-
* @param {boolean} [includeServices]
|
|
14852
14404
|
* @param {*} [options] Override http request option.
|
|
14853
14405
|
* @throws {RequiredError}
|
|
14854
14406
|
*/
|
|
14855
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined,
|
|
14407
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
14856
14408
|
/**
|
|
14857
14409
|
*
|
|
14858
14410
|
* @summary Get all HospitalServices.
|
|
@@ -15160,17 +14712,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15160
14712
|
* @param {string} [name]
|
|
15161
14713
|
* @param {string} [slug]
|
|
15162
14714
|
* @param {MarketingType} [marketingType]
|
|
15163
|
-
* @param {boolean} [returnDefaultValue]
|
|
15164
|
-
* @param {boolean} [includeServices]
|
|
15165
14715
|
* @param {string} [languageCode]
|
|
15166
|
-
* @param {boolean} [showHidden]
|
|
15167
14716
|
* @param {number} [page]
|
|
15168
14717
|
* @param {number} [limit]
|
|
15169
14718
|
* @param {Date} [lastRetrieved]
|
|
15170
14719
|
* @param {*} [options] Override http request option.
|
|
15171
14720
|
* @throws {RequiredError}
|
|
15172
14721
|
*/
|
|
15173
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined,
|
|
14722
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
15174
14723
|
/**
|
|
15175
14724
|
*
|
|
15176
14725
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -15207,41 +14756,34 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15207
14756
|
* @param {string} [name]
|
|
15208
14757
|
* @param {string} [slug]
|
|
15209
14758
|
* @param {MarketingType} [marketingType]
|
|
15210
|
-
* @param {boolean} [returnDefaultValue]
|
|
15211
|
-
* @param {boolean} [includeServices]
|
|
15212
14759
|
* @param {string} [languageCode]
|
|
15213
|
-
* @param {boolean} [showHidden]
|
|
15214
14760
|
* @param {number} [page]
|
|
15215
14761
|
* @param {number} [limit]
|
|
15216
14762
|
* @param {Date} [lastRetrieved]
|
|
15217
14763
|
* @param {*} [options] Override http request option.
|
|
15218
14764
|
* @throws {RequiredError}
|
|
15219
14765
|
*/
|
|
15220
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined,
|
|
14766
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
|
|
15221
14767
|
/**
|
|
15222
14768
|
*
|
|
15223
14769
|
* @summary Get HospitalSpecialty by slug.
|
|
15224
14770
|
* @param {string} hospitalId
|
|
15225
14771
|
* @param {string} slug
|
|
15226
14772
|
* @param {string} [languageCode]
|
|
15227
|
-
* @param {boolean} [returnDefaultValue]
|
|
15228
|
-
* @param {boolean} [includeServices]
|
|
15229
14773
|
* @param {*} [options] Override http request option.
|
|
15230
14774
|
* @throws {RequiredError}
|
|
15231
14775
|
*/
|
|
15232
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined,
|
|
14776
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
15233
14777
|
/**
|
|
15234
14778
|
*
|
|
15235
14779
|
* @summary Get HospitalSpecialty.
|
|
15236
14780
|
* @param {string} hospitalId
|
|
15237
14781
|
* @param {string} specialtyId
|
|
15238
14782
|
* @param {string} [languageCode]
|
|
15239
|
-
* @param {boolean} [returnDefaultValue]
|
|
15240
|
-
* @param {boolean} [includeServices]
|
|
15241
14783
|
* @param {*} [options] Override http request option.
|
|
15242
14784
|
* @throws {RequiredError}
|
|
15243
14785
|
*/
|
|
15244
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined,
|
|
14786
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
15245
14787
|
/**
|
|
15246
14788
|
*
|
|
15247
14789
|
* @summary Get all HospitalServices.
|
|
@@ -15565,10 +15107,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15565
15107
|
* @param {string} [name]
|
|
15566
15108
|
* @param {string} [slug]
|
|
15567
15109
|
* @param {MarketingType} [marketingType]
|
|
15568
|
-
* @param {boolean} [returnDefaultValue]
|
|
15569
|
-
* @param {boolean} [includeServices]
|
|
15570
15110
|
* @param {string} [languageCode]
|
|
15571
|
-
* @param {boolean} [showHidden]
|
|
15572
15111
|
* @param {number} [page]
|
|
15573
15112
|
* @param {number} [limit]
|
|
15574
15113
|
* @param {Date} [lastRetrieved]
|
|
@@ -15576,7 +15115,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15576
15115
|
* @throws {RequiredError}
|
|
15577
15116
|
* @memberof HospitalsApi
|
|
15578
15117
|
*/
|
|
15579
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
15118
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
|
|
15580
15119
|
/**
|
|
15581
15120
|
*
|
|
15582
15121
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -15615,10 +15154,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15615
15154
|
* @param {string} [name]
|
|
15616
15155
|
* @param {string} [slug]
|
|
15617
15156
|
* @param {MarketingType} [marketingType]
|
|
15618
|
-
* @param {boolean} [returnDefaultValue]
|
|
15619
|
-
* @param {boolean} [includeServices]
|
|
15620
15157
|
* @param {string} [languageCode]
|
|
15621
|
-
* @param {boolean} [showHidden]
|
|
15622
15158
|
* @param {number} [page]
|
|
15623
15159
|
* @param {number} [limit]
|
|
15624
15160
|
* @param {Date} [lastRetrieved]
|
|
@@ -15626,33 +15162,29 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15626
15162
|
* @throws {RequiredError}
|
|
15627
15163
|
* @memberof HospitalsApi
|
|
15628
15164
|
*/
|
|
15629
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
15165
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel, any>>;
|
|
15630
15166
|
/**
|
|
15631
15167
|
*
|
|
15632
15168
|
* @summary Get HospitalSpecialty by slug.
|
|
15633
15169
|
* @param {string} hospitalId
|
|
15634
15170
|
* @param {string} slug
|
|
15635
15171
|
* @param {string} [languageCode]
|
|
15636
|
-
* @param {boolean} [returnDefaultValue]
|
|
15637
|
-
* @param {boolean} [includeServices]
|
|
15638
15172
|
* @param {*} [options] Override http request option.
|
|
15639
15173
|
* @throws {RequiredError}
|
|
15640
15174
|
* @memberof HospitalsApi
|
|
15641
15175
|
*/
|
|
15642
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string,
|
|
15176
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
|
|
15643
15177
|
/**
|
|
15644
15178
|
*
|
|
15645
15179
|
* @summary Get HospitalSpecialty.
|
|
15646
15180
|
* @param {string} hospitalId
|
|
15647
15181
|
* @param {string} specialtyId
|
|
15648
15182
|
* @param {string} [languageCode]
|
|
15649
|
-
* @param {boolean} [returnDefaultValue]
|
|
15650
|
-
* @param {boolean} [includeServices]
|
|
15651
15183
|
* @param {*} [options] Override http request option.
|
|
15652
15184
|
* @throws {RequiredError}
|
|
15653
15185
|
* @memberof HospitalsApi
|
|
15654
15186
|
*/
|
|
15655
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string,
|
|
15187
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
|
|
15656
15188
|
/**
|
|
15657
15189
|
*
|
|
15658
15190
|
* @summary Get all HospitalServices.
|