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/src/api.ts
CHANGED
|
@@ -38,19 +38,7 @@ export interface AboutUsPageItemModel {
|
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof AboutUsPageItemModel
|
|
40
40
|
*/
|
|
41
|
-
'
|
|
42
|
-
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof AboutUsPageItemModel
|
|
46
|
-
*/
|
|
47
|
-
'hospitalName'?: string | null;
|
|
48
|
-
/**
|
|
49
|
-
*
|
|
50
|
-
* @type {string}
|
|
51
|
-
* @memberof AboutUsPageItemModel
|
|
52
|
-
*/
|
|
53
|
-
'hospitalSlug'?: string | null;
|
|
41
|
+
'languageCode'?: string | null;
|
|
54
42
|
/**
|
|
55
43
|
*
|
|
56
44
|
* @type {string}
|
|
@@ -63,24 +51,12 @@ export interface AboutUsPageItemModel {
|
|
|
63
51
|
* @memberof AboutUsPageItemModel
|
|
64
52
|
*/
|
|
65
53
|
'slug'?: string | null;
|
|
66
|
-
/**
|
|
67
|
-
*
|
|
68
|
-
* @type {string}
|
|
69
|
-
* @memberof AboutUsPageItemModel
|
|
70
|
-
*/
|
|
71
|
-
'description'?: string | null;
|
|
72
54
|
/**
|
|
73
55
|
*
|
|
74
56
|
* @type {boolean}
|
|
75
57
|
* @memberof AboutUsPageItemModel
|
|
76
58
|
*/
|
|
77
59
|
'confirmed'?: boolean;
|
|
78
|
-
/**
|
|
79
|
-
*
|
|
80
|
-
* @type {Array<MediaModel>}
|
|
81
|
-
* @memberof AboutUsPageItemModel
|
|
82
|
-
*/
|
|
83
|
-
'medias'?: Array<MediaModel> | null;
|
|
84
60
|
/**
|
|
85
61
|
*
|
|
86
62
|
* @type {AuditableEntity}
|
|
@@ -105,19 +81,7 @@ export interface AboutUsPageModel {
|
|
|
105
81
|
* @type {string}
|
|
106
82
|
* @memberof AboutUsPageModel
|
|
107
83
|
*/
|
|
108
|
-
'
|
|
109
|
-
/**
|
|
110
|
-
*
|
|
111
|
-
* @type {string}
|
|
112
|
-
* @memberof AboutUsPageModel
|
|
113
|
-
*/
|
|
114
|
-
'hospitalName'?: string | null;
|
|
115
|
-
/**
|
|
116
|
-
*
|
|
117
|
-
* @type {string}
|
|
118
|
-
* @memberof AboutUsPageModel
|
|
119
|
-
*/
|
|
120
|
-
'hospitalSlug'?: string | null;
|
|
84
|
+
'languageCode'?: string | null;
|
|
121
85
|
/**
|
|
122
86
|
*
|
|
123
87
|
* @type {string}
|
|
@@ -130,12 +94,6 @@ export interface AboutUsPageModel {
|
|
|
130
94
|
* @memberof AboutUsPageModel
|
|
131
95
|
*/
|
|
132
96
|
'slug'?: string | null;
|
|
133
|
-
/**
|
|
134
|
-
*
|
|
135
|
-
* @type {string}
|
|
136
|
-
* @memberof AboutUsPageModel
|
|
137
|
-
*/
|
|
138
|
-
'description'?: string | null;
|
|
139
97
|
/**
|
|
140
98
|
*
|
|
141
99
|
* @type {boolean}
|
|
@@ -144,22 +102,22 @@ export interface AboutUsPageModel {
|
|
|
144
102
|
'confirmed'?: boolean;
|
|
145
103
|
/**
|
|
146
104
|
*
|
|
147
|
-
* @type {
|
|
105
|
+
* @type {AuditableEntity}
|
|
148
106
|
* @memberof AboutUsPageModel
|
|
149
107
|
*/
|
|
150
|
-
'
|
|
108
|
+
'auditableEntity'?: AuditableEntity;
|
|
151
109
|
/**
|
|
152
110
|
*
|
|
153
|
-
* @type {
|
|
111
|
+
* @type {string}
|
|
154
112
|
* @memberof AboutUsPageModel
|
|
155
113
|
*/
|
|
156
|
-
'
|
|
114
|
+
'description'?: string | null;
|
|
157
115
|
/**
|
|
158
116
|
*
|
|
159
117
|
* @type {string}
|
|
160
118
|
* @memberof AboutUsPageModel
|
|
161
119
|
*/
|
|
162
|
-
'
|
|
120
|
+
'overview'?: string | null;
|
|
163
121
|
/**
|
|
164
122
|
*
|
|
165
123
|
* @type {string}
|
|
@@ -190,6 +148,12 @@ export interface AboutUsPageModel {
|
|
|
190
148
|
* @memberof AboutUsPageModel
|
|
191
149
|
*/
|
|
192
150
|
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
151
|
+
/**
|
|
152
|
+
*
|
|
153
|
+
* @type {Array<MediaModel>}
|
|
154
|
+
* @memberof AboutUsPageModel
|
|
155
|
+
*/
|
|
156
|
+
'medias'?: Array<MediaModel> | null;
|
|
193
157
|
}
|
|
194
158
|
/**
|
|
195
159
|
*
|
|
@@ -376,6 +340,12 @@ export interface ArticleContributorItemModel {
|
|
|
376
340
|
* @memberof ArticleContributorItemModel
|
|
377
341
|
*/
|
|
378
342
|
'contributorId'?: string;
|
|
343
|
+
/**
|
|
344
|
+
*
|
|
345
|
+
* @type {string}
|
|
346
|
+
* @memberof ArticleContributorItemModel
|
|
347
|
+
*/
|
|
348
|
+
'languageCode'?: string | null;
|
|
379
349
|
/**
|
|
380
350
|
*
|
|
381
351
|
* @type {string}
|
|
@@ -390,28 +360,28 @@ export interface ArticleContributorItemModel {
|
|
|
390
360
|
'contributorSlug'?: string | null;
|
|
391
361
|
/**
|
|
392
362
|
*
|
|
393
|
-
* @type {
|
|
363
|
+
* @type {boolean}
|
|
394
364
|
* @memberof ArticleContributorItemModel
|
|
395
365
|
*/
|
|
396
|
-
'
|
|
366
|
+
'contributorConfirmed'?: boolean;
|
|
397
367
|
/**
|
|
398
368
|
*
|
|
399
369
|
* @type {string}
|
|
400
370
|
* @memberof ArticleContributorItemModel
|
|
401
371
|
*/
|
|
402
|
-
'
|
|
372
|
+
'contributorEmail'?: string | null;
|
|
403
373
|
/**
|
|
404
374
|
*
|
|
405
375
|
* @type {string}
|
|
406
376
|
* @memberof ArticleContributorItemModel
|
|
407
377
|
*/
|
|
408
|
-
'
|
|
378
|
+
'contributorPhoto'?: string | null;
|
|
409
379
|
/**
|
|
410
380
|
*
|
|
411
381
|
* @type {string}
|
|
412
382
|
* @memberof ArticleContributorItemModel
|
|
413
383
|
*/
|
|
414
|
-
'
|
|
384
|
+
'contributorPhotoThumbnail'?: string | null;
|
|
415
385
|
/**
|
|
416
386
|
*
|
|
417
387
|
* @type {ContributionType}
|
|
@@ -430,24 +400,12 @@ export interface ArticleContributorItemModel {
|
|
|
430
400
|
* @memberof ArticleContributorItemModel
|
|
431
401
|
*/
|
|
432
402
|
'order'?: number;
|
|
433
|
-
/**
|
|
434
|
-
*
|
|
435
|
-
* @type {boolean}
|
|
436
|
-
* @memberof ArticleContributorItemModel
|
|
437
|
-
*/
|
|
438
|
-
'confirmed'?: boolean;
|
|
439
403
|
/**
|
|
440
404
|
*
|
|
441
405
|
* @type {AuditableEntity}
|
|
442
406
|
* @memberof ArticleContributorItemModel
|
|
443
407
|
*/
|
|
444
408
|
'auditableEntity'?: AuditableEntity;
|
|
445
|
-
/**
|
|
446
|
-
*
|
|
447
|
-
* @type {Array<SnsHandleModel>}
|
|
448
|
-
* @memberof ArticleContributorItemModel
|
|
449
|
-
*/
|
|
450
|
-
'contributorSnsHandles'?: Array<SnsHandleModel> | null;
|
|
451
409
|
}
|
|
452
410
|
/**
|
|
453
411
|
*
|
|
@@ -467,6 +425,12 @@ export interface ArticleContributorModel {
|
|
|
467
425
|
* @memberof ArticleContributorModel
|
|
468
426
|
*/
|
|
469
427
|
'contributorId'?: string;
|
|
428
|
+
/**
|
|
429
|
+
*
|
|
430
|
+
* @type {string}
|
|
431
|
+
* @memberof ArticleContributorModel
|
|
432
|
+
*/
|
|
433
|
+
'languageCode'?: string | null;
|
|
470
434
|
/**
|
|
471
435
|
*
|
|
472
436
|
* @type {string}
|
|
@@ -481,28 +445,28 @@ export interface ArticleContributorModel {
|
|
|
481
445
|
'contributorSlug'?: string | null;
|
|
482
446
|
/**
|
|
483
447
|
*
|
|
484
|
-
* @type {
|
|
448
|
+
* @type {boolean}
|
|
485
449
|
* @memberof ArticleContributorModel
|
|
486
450
|
*/
|
|
487
|
-
'
|
|
451
|
+
'contributorConfirmed'?: boolean;
|
|
488
452
|
/**
|
|
489
453
|
*
|
|
490
454
|
* @type {string}
|
|
491
455
|
* @memberof ArticleContributorModel
|
|
492
456
|
*/
|
|
493
|
-
'
|
|
457
|
+
'contributorEmail'?: string | null;
|
|
494
458
|
/**
|
|
495
459
|
*
|
|
496
460
|
* @type {string}
|
|
497
461
|
* @memberof ArticleContributorModel
|
|
498
462
|
*/
|
|
499
|
-
'
|
|
463
|
+
'contributorPhoto'?: string | null;
|
|
500
464
|
/**
|
|
501
465
|
*
|
|
502
466
|
* @type {string}
|
|
503
467
|
* @memberof ArticleContributorModel
|
|
504
468
|
*/
|
|
505
|
-
'
|
|
469
|
+
'contributorPhotoThumbnail'?: string | null;
|
|
506
470
|
/**
|
|
507
471
|
*
|
|
508
472
|
* @type {ContributionType}
|
|
@@ -521,12 +485,6 @@ export interface ArticleContributorModel {
|
|
|
521
485
|
* @memberof ArticleContributorModel
|
|
522
486
|
*/
|
|
523
487
|
'order'?: number;
|
|
524
|
-
/**
|
|
525
|
-
*
|
|
526
|
-
* @type {boolean}
|
|
527
|
-
* @memberof ArticleContributorModel
|
|
528
|
-
*/
|
|
529
|
-
'confirmed'?: boolean;
|
|
530
488
|
/**
|
|
531
489
|
*
|
|
532
490
|
* @type {AuditableEntity}
|
|
@@ -535,16 +493,16 @@ export interface ArticleContributorModel {
|
|
|
535
493
|
'auditableEntity'?: AuditableEntity;
|
|
536
494
|
/**
|
|
537
495
|
*
|
|
538
|
-
* @type {
|
|
496
|
+
* @type {string}
|
|
539
497
|
* @memberof ArticleContributorModel
|
|
540
498
|
*/
|
|
541
|
-
'
|
|
499
|
+
'contributorDescription'?: string | null;
|
|
542
500
|
/**
|
|
543
501
|
*
|
|
544
502
|
* @type {string}
|
|
545
503
|
* @memberof ArticleContributorModel
|
|
546
504
|
*/
|
|
547
|
-
'
|
|
505
|
+
'overview'?: string | null;
|
|
548
506
|
/**
|
|
549
507
|
*
|
|
550
508
|
* @type {string}
|
|
@@ -556,7 +514,7 @@ export interface ArticleContributorModel {
|
|
|
556
514
|
* @type {Array<SnsHandle>}
|
|
557
515
|
* @memberof ArticleContributorModel
|
|
558
516
|
*/
|
|
559
|
-
'
|
|
517
|
+
'contributorSnsHandles'?: Array<SnsHandle> | null;
|
|
560
518
|
/**
|
|
561
519
|
*
|
|
562
520
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -600,31 +558,25 @@ export interface ArticleItemModel {
|
|
|
600
558
|
* @type {string}
|
|
601
559
|
* @memberof ArticleItemModel
|
|
602
560
|
*/
|
|
603
|
-
'
|
|
604
|
-
/**
|
|
605
|
-
*
|
|
606
|
-
* @type {string}
|
|
607
|
-
* @memberof ArticleItemModel
|
|
608
|
-
*/
|
|
609
|
-
'slug'?: string | null;
|
|
561
|
+
'languageCode'?: string | null;
|
|
610
562
|
/**
|
|
611
563
|
*
|
|
612
564
|
* @type {string}
|
|
613
565
|
* @memberof ArticleItemModel
|
|
614
566
|
*/
|
|
615
|
-
'
|
|
567
|
+
'name'?: string | null;
|
|
616
568
|
/**
|
|
617
569
|
*
|
|
618
570
|
* @type {string}
|
|
619
571
|
* @memberof ArticleItemModel
|
|
620
572
|
*/
|
|
621
|
-
'
|
|
573
|
+
'slug'?: string | null;
|
|
622
574
|
/**
|
|
623
575
|
*
|
|
624
|
-
* @type {
|
|
576
|
+
* @type {boolean}
|
|
625
577
|
* @memberof ArticleItemModel
|
|
626
578
|
*/
|
|
627
|
-
'
|
|
579
|
+
'confirmed'?: boolean;
|
|
628
580
|
/**
|
|
629
581
|
*
|
|
630
582
|
* @type {MarketingType}
|
|
@@ -649,54 +601,24 @@ export interface ArticleItemModel {
|
|
|
649
601
|
* @memberof ArticleItemModel
|
|
650
602
|
*/
|
|
651
603
|
'hospitalId'?: string;
|
|
652
|
-
/**
|
|
653
|
-
*
|
|
654
|
-
* @type {string}
|
|
655
|
-
* @memberof ArticleItemModel
|
|
656
|
-
*/
|
|
657
|
-
'hospitalName'?: string | null;
|
|
658
|
-
/**
|
|
659
|
-
*
|
|
660
|
-
* @type {string}
|
|
661
|
-
* @memberof ArticleItemModel
|
|
662
|
-
*/
|
|
663
|
-
'hospitalSlug'?: string | null;
|
|
664
604
|
/**
|
|
665
605
|
*
|
|
666
606
|
* @type {string}
|
|
667
607
|
* @memberof ArticleItemModel
|
|
668
608
|
*/
|
|
669
609
|
'youtubeUrl'?: string | null;
|
|
670
|
-
/**
|
|
671
|
-
*
|
|
672
|
-
* @type {boolean}
|
|
673
|
-
* @memberof ArticleItemModel
|
|
674
|
-
*/
|
|
675
|
-
'confirmed'?: boolean;
|
|
676
610
|
/**
|
|
677
611
|
*
|
|
678
612
|
* @type {Array<ArticleTagItemModel>}
|
|
679
613
|
* @memberof ArticleItemModel
|
|
680
614
|
*/
|
|
681
615
|
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
682
|
-
/**
|
|
683
|
-
*
|
|
684
|
-
* @type {Array<ArticleContributorItemModel>}
|
|
685
|
-
* @memberof ArticleItemModel
|
|
686
|
-
*/
|
|
687
|
-
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
688
616
|
/**
|
|
689
617
|
*
|
|
690
618
|
* @type {Array<MediaModel>}
|
|
691
619
|
* @memberof ArticleItemModel
|
|
692
620
|
*/
|
|
693
621
|
'medias'?: Array<MediaModel> | null;
|
|
694
|
-
/**
|
|
695
|
-
*
|
|
696
|
-
* @type {Array<SourceModel>}
|
|
697
|
-
* @memberof ArticleItemModel
|
|
698
|
-
*/
|
|
699
|
-
'sources'?: Array<SourceModel> | null;
|
|
700
622
|
/**
|
|
701
623
|
*
|
|
702
624
|
* @type {AuditableEntity}
|
|
@@ -721,31 +643,25 @@ export interface ArticleModel {
|
|
|
721
643
|
* @type {string}
|
|
722
644
|
* @memberof ArticleModel
|
|
723
645
|
*/
|
|
724
|
-
'
|
|
725
|
-
/**
|
|
726
|
-
*
|
|
727
|
-
* @type {string}
|
|
728
|
-
* @memberof ArticleModel
|
|
729
|
-
*/
|
|
730
|
-
'slug'?: string | null;
|
|
646
|
+
'languageCode'?: string | null;
|
|
731
647
|
/**
|
|
732
648
|
*
|
|
733
649
|
* @type {string}
|
|
734
650
|
* @memberof ArticleModel
|
|
735
651
|
*/
|
|
736
|
-
'
|
|
652
|
+
'name'?: string | null;
|
|
737
653
|
/**
|
|
738
654
|
*
|
|
739
655
|
* @type {string}
|
|
740
656
|
* @memberof ArticleModel
|
|
741
657
|
*/
|
|
742
|
-
'
|
|
658
|
+
'slug'?: string | null;
|
|
743
659
|
/**
|
|
744
660
|
*
|
|
745
|
-
* @type {
|
|
661
|
+
* @type {boolean}
|
|
746
662
|
* @memberof ArticleModel
|
|
747
663
|
*/
|
|
748
|
-
'
|
|
664
|
+
'confirmed'?: boolean;
|
|
749
665
|
/**
|
|
750
666
|
*
|
|
751
667
|
* @type {MarketingType}
|
|
@@ -770,54 +686,24 @@ export interface ArticleModel {
|
|
|
770
686
|
* @memberof ArticleModel
|
|
771
687
|
*/
|
|
772
688
|
'hospitalId'?: string;
|
|
773
|
-
/**
|
|
774
|
-
*
|
|
775
|
-
* @type {string}
|
|
776
|
-
* @memberof ArticleModel
|
|
777
|
-
*/
|
|
778
|
-
'hospitalName'?: string | null;
|
|
779
|
-
/**
|
|
780
|
-
*
|
|
781
|
-
* @type {string}
|
|
782
|
-
* @memberof ArticleModel
|
|
783
|
-
*/
|
|
784
|
-
'hospitalSlug'?: string | null;
|
|
785
689
|
/**
|
|
786
690
|
*
|
|
787
691
|
* @type {string}
|
|
788
692
|
* @memberof ArticleModel
|
|
789
693
|
*/
|
|
790
694
|
'youtubeUrl'?: string | null;
|
|
791
|
-
/**
|
|
792
|
-
*
|
|
793
|
-
* @type {boolean}
|
|
794
|
-
* @memberof ArticleModel
|
|
795
|
-
*/
|
|
796
|
-
'confirmed'?: boolean;
|
|
797
695
|
/**
|
|
798
696
|
*
|
|
799
697
|
* @type {Array<ArticleTagItemModel>}
|
|
800
698
|
* @memberof ArticleModel
|
|
801
699
|
*/
|
|
802
700
|
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
803
|
-
/**
|
|
804
|
-
*
|
|
805
|
-
* @type {Array<ArticleContributorItemModel>}
|
|
806
|
-
* @memberof ArticleModel
|
|
807
|
-
*/
|
|
808
|
-
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
809
701
|
/**
|
|
810
702
|
*
|
|
811
703
|
* @type {Array<MediaModel>}
|
|
812
704
|
* @memberof ArticleModel
|
|
813
705
|
*/
|
|
814
706
|
'medias'?: Array<MediaModel> | null;
|
|
815
|
-
/**
|
|
816
|
-
*
|
|
817
|
-
* @type {Array<SourceModel>}
|
|
818
|
-
* @memberof ArticleModel
|
|
819
|
-
*/
|
|
820
|
-
'sources'?: Array<SourceModel> | null;
|
|
821
707
|
/**
|
|
822
708
|
*
|
|
823
709
|
* @type {AuditableEntity}
|
|
@@ -830,12 +716,6 @@ export interface ArticleModel {
|
|
|
830
716
|
* @memberof ArticleModel
|
|
831
717
|
*/
|
|
832
718
|
'content'?: string | null;
|
|
833
|
-
/**
|
|
834
|
-
*
|
|
835
|
-
* @type {string}
|
|
836
|
-
* @memberof ArticleModel
|
|
837
|
-
*/
|
|
838
|
-
'languageCode'?: string | null;
|
|
839
719
|
/**
|
|
840
720
|
*
|
|
841
721
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -2372,6 +2252,12 @@ export interface ContributorItemModel {
|
|
|
2372
2252
|
* @memberof ContributorItemModel
|
|
2373
2253
|
*/
|
|
2374
2254
|
'id'?: string;
|
|
2255
|
+
/**
|
|
2256
|
+
*
|
|
2257
|
+
* @type {string}
|
|
2258
|
+
* @memberof ContributorItemModel
|
|
2259
|
+
*/
|
|
2260
|
+
'languageCode'?: string | null;
|
|
2375
2261
|
/**
|
|
2376
2262
|
*
|
|
2377
2263
|
* @type {string}
|
|
@@ -2386,58 +2272,58 @@ export interface ContributorItemModel {
|
|
|
2386
2272
|
'slug'?: string | null;
|
|
2387
2273
|
/**
|
|
2388
2274
|
*
|
|
2389
|
-
* @type {
|
|
2275
|
+
* @type {boolean}
|
|
2390
2276
|
* @memberof ContributorItemModel
|
|
2391
2277
|
*/
|
|
2392
|
-
'
|
|
2278
|
+
'confirmed'?: boolean;
|
|
2393
2279
|
/**
|
|
2394
2280
|
*
|
|
2395
2281
|
* @type {string}
|
|
2396
2282
|
* @memberof ContributorItemModel
|
|
2397
2283
|
*/
|
|
2398
|
-
'
|
|
2284
|
+
'hospitalId'?: string;
|
|
2399
2285
|
/**
|
|
2400
2286
|
*
|
|
2401
2287
|
* @type {string}
|
|
2402
2288
|
* @memberof ContributorItemModel
|
|
2403
2289
|
*/
|
|
2404
|
-
'
|
|
2290
|
+
'hospitalName'?: string | null;
|
|
2405
2291
|
/**
|
|
2406
2292
|
*
|
|
2407
2293
|
* @type {string}
|
|
2408
2294
|
* @memberof ContributorItemModel
|
|
2409
2295
|
*/
|
|
2410
|
-
'
|
|
2296
|
+
'hospitalSlug'?: string | null;
|
|
2411
2297
|
/**
|
|
2412
2298
|
*
|
|
2413
2299
|
* @type {string}
|
|
2414
2300
|
* @memberof ContributorItemModel
|
|
2415
2301
|
*/
|
|
2416
|
-
'
|
|
2302
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
2417
2303
|
/**
|
|
2418
2304
|
*
|
|
2419
2305
|
* @type {string}
|
|
2420
2306
|
* @memberof ContributorItemModel
|
|
2421
2307
|
*/
|
|
2422
|
-
'
|
|
2308
|
+
'email'?: string | null;
|
|
2423
2309
|
/**
|
|
2424
2310
|
*
|
|
2425
2311
|
* @type {string}
|
|
2426
2312
|
* @memberof ContributorItemModel
|
|
2427
2313
|
*/
|
|
2428
|
-
'
|
|
2314
|
+
'photo'?: string | null;
|
|
2429
2315
|
/**
|
|
2430
2316
|
*
|
|
2431
|
-
* @type {
|
|
2317
|
+
* @type {string}
|
|
2432
2318
|
* @memberof ContributorItemModel
|
|
2433
2319
|
*/
|
|
2434
|
-
'
|
|
2320
|
+
'photoThumbnail'?: string | null;
|
|
2435
2321
|
/**
|
|
2436
2322
|
*
|
|
2437
|
-
* @type {
|
|
2323
|
+
* @type {number}
|
|
2438
2324
|
* @memberof ContributorItemModel
|
|
2439
2325
|
*/
|
|
2440
|
-
'
|
|
2326
|
+
'order'?: number;
|
|
2441
2327
|
/**
|
|
2442
2328
|
*
|
|
2443
2329
|
* @type {AuditableEntity}
|
|
@@ -2462,67 +2348,73 @@ export interface ContributorModel {
|
|
|
2462
2348
|
* @type {string}
|
|
2463
2349
|
* @memberof ContributorModel
|
|
2464
2350
|
*/
|
|
2465
|
-
'
|
|
2351
|
+
'languageCode'?: string | null;
|
|
2466
2352
|
/**
|
|
2467
2353
|
*
|
|
2468
2354
|
* @type {string}
|
|
2469
2355
|
* @memberof ContributorModel
|
|
2470
2356
|
*/
|
|
2471
|
-
'
|
|
2357
|
+
'name'?: string | null;
|
|
2472
2358
|
/**
|
|
2473
2359
|
*
|
|
2474
2360
|
* @type {string}
|
|
2475
2361
|
* @memberof ContributorModel
|
|
2476
2362
|
*/
|
|
2477
|
-
'
|
|
2363
|
+
'slug'?: string | null;
|
|
2478
2364
|
/**
|
|
2479
2365
|
*
|
|
2480
|
-
* @type {
|
|
2366
|
+
* @type {boolean}
|
|
2481
2367
|
* @memberof ContributorModel
|
|
2482
2368
|
*/
|
|
2483
|
-
'
|
|
2369
|
+
'confirmed'?: boolean;
|
|
2484
2370
|
/**
|
|
2485
2371
|
*
|
|
2486
2372
|
* @type {string}
|
|
2487
2373
|
* @memberof ContributorModel
|
|
2488
2374
|
*/
|
|
2489
|
-
'
|
|
2375
|
+
'hospitalId'?: string;
|
|
2490
2376
|
/**
|
|
2491
2377
|
*
|
|
2492
2378
|
* @type {string}
|
|
2493
2379
|
* @memberof ContributorModel
|
|
2494
2380
|
*/
|
|
2495
|
-
'
|
|
2381
|
+
'hospitalName'?: string | null;
|
|
2496
2382
|
/**
|
|
2497
2383
|
*
|
|
2498
2384
|
* @type {string}
|
|
2499
2385
|
* @memberof ContributorModel
|
|
2500
2386
|
*/
|
|
2501
|
-
'
|
|
2387
|
+
'hospitalSlug'?: string | null;
|
|
2502
2388
|
/**
|
|
2503
2389
|
*
|
|
2504
2390
|
* @type {string}
|
|
2505
2391
|
* @memberof ContributorModel
|
|
2506
2392
|
*/
|
|
2507
|
-
'
|
|
2393
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
2508
2394
|
/**
|
|
2509
2395
|
*
|
|
2510
2396
|
* @type {string}
|
|
2511
2397
|
* @memberof ContributorModel
|
|
2512
2398
|
*/
|
|
2513
|
-
'
|
|
2399
|
+
'email'?: string | null;
|
|
2514
2400
|
/**
|
|
2515
2401
|
*
|
|
2516
|
-
* @type {
|
|
2402
|
+
* @type {string}
|
|
2517
2403
|
* @memberof ContributorModel
|
|
2518
2404
|
*/
|
|
2519
|
-
'
|
|
2405
|
+
'photo'?: string | null;
|
|
2520
2406
|
/**
|
|
2521
2407
|
*
|
|
2522
|
-
* @type {
|
|
2408
|
+
* @type {string}
|
|
2523
2409
|
* @memberof ContributorModel
|
|
2524
2410
|
*/
|
|
2525
|
-
'
|
|
2411
|
+
'photoThumbnail'?: string | null;
|
|
2412
|
+
/**
|
|
2413
|
+
*
|
|
2414
|
+
* @type {number}
|
|
2415
|
+
* @memberof ContributorModel
|
|
2416
|
+
*/
|
|
2417
|
+
'order'?: number;
|
|
2526
2418
|
/**
|
|
2527
2419
|
*
|
|
2528
2420
|
* @type {AuditableEntity}
|
|
@@ -2534,7 +2426,13 @@ export interface ContributorModel {
|
|
|
2534
2426
|
* @type {string}
|
|
2535
2427
|
* @memberof ContributorModel
|
|
2536
2428
|
*/
|
|
2537
|
-
'
|
|
2429
|
+
'description'?: string | null;
|
|
2430
|
+
/**
|
|
2431
|
+
*
|
|
2432
|
+
* @type {string}
|
|
2433
|
+
* @memberof ContributorModel
|
|
2434
|
+
*/
|
|
2435
|
+
'overview'?: string | null;
|
|
2538
2436
|
/**
|
|
2539
2437
|
*
|
|
2540
2438
|
* @type {string}
|
|
@@ -2628,67 +2526,25 @@ export interface CountryItemModel {
|
|
|
2628
2526
|
* @type {string}
|
|
2629
2527
|
* @memberof CountryItemModel
|
|
2630
2528
|
*/
|
|
2631
|
-
'
|
|
2529
|
+
'languageCode'?: string | null;
|
|
2632
2530
|
/**
|
|
2633
2531
|
*
|
|
2634
2532
|
* @type {string}
|
|
2635
2533
|
* @memberof CountryItemModel
|
|
2636
2534
|
*/
|
|
2637
|
-
'
|
|
2535
|
+
'name'?: string | null;
|
|
2638
2536
|
/**
|
|
2639
2537
|
*
|
|
2640
2538
|
* @type {string}
|
|
2641
2539
|
* @memberof CountryItemModel
|
|
2642
2540
|
*/
|
|
2643
2541
|
'slug'?: string | null;
|
|
2644
|
-
/**
|
|
2645
|
-
*
|
|
2646
|
-
* @type {string}
|
|
2647
|
-
* @memberof CountryItemModel
|
|
2648
|
-
*/
|
|
2649
|
-
'description'?: string | null;
|
|
2650
|
-
/**
|
|
2651
|
-
*
|
|
2652
|
-
* @type {number}
|
|
2653
|
-
* @memberof CountryItemModel
|
|
2654
|
-
*/
|
|
2655
|
-
'hospitalsCount'?: number;
|
|
2656
|
-
/**
|
|
2657
|
-
*
|
|
2658
|
-
* @type {number}
|
|
2659
|
-
* @memberof CountryItemModel
|
|
2660
|
-
*/
|
|
2661
|
-
'doctorsCount'?: number;
|
|
2662
|
-
/**
|
|
2663
|
-
*
|
|
2664
|
-
* @type {number}
|
|
2665
|
-
* @memberof CountryItemModel
|
|
2666
|
-
*/
|
|
2667
|
-
'specialitiesCount'?: number;
|
|
2668
|
-
/**
|
|
2669
|
-
*
|
|
2670
|
-
* @type {number}
|
|
2671
|
-
* @memberof CountryItemModel
|
|
2672
|
-
*/
|
|
2673
|
-
'packagesCount'?: number;
|
|
2674
|
-
/**
|
|
2675
|
-
*
|
|
2676
|
-
* @type {number}
|
|
2677
|
-
* @memberof CountryItemModel
|
|
2678
|
-
*/
|
|
2679
|
-
'articlesCount'?: number;
|
|
2680
2542
|
/**
|
|
2681
2543
|
*
|
|
2682
2544
|
* @type {boolean}
|
|
2683
2545
|
* @memberof CountryItemModel
|
|
2684
2546
|
*/
|
|
2685
2547
|
'confirmed'?: boolean;
|
|
2686
|
-
/**
|
|
2687
|
-
*
|
|
2688
|
-
* @type {Array<MediaModel>}
|
|
2689
|
-
* @memberof CountryItemModel
|
|
2690
|
-
*/
|
|
2691
|
-
'medias'?: Array<MediaModel> | null;
|
|
2692
2548
|
/**
|
|
2693
2549
|
*
|
|
2694
2550
|
* @type {AuditableEntity}
|
|
@@ -2713,55 +2569,19 @@ export interface CountryModel {
|
|
|
2713
2569
|
* @type {string}
|
|
2714
2570
|
* @memberof CountryModel
|
|
2715
2571
|
*/
|
|
2716
|
-
'
|
|
2572
|
+
'languageCode'?: string | null;
|
|
2717
2573
|
/**
|
|
2718
2574
|
*
|
|
2719
2575
|
* @type {string}
|
|
2720
2576
|
* @memberof CountryModel
|
|
2721
2577
|
*/
|
|
2722
|
-
'
|
|
2578
|
+
'name'?: string | null;
|
|
2723
2579
|
/**
|
|
2724
2580
|
*
|
|
2725
2581
|
* @type {string}
|
|
2726
2582
|
* @memberof CountryModel
|
|
2727
2583
|
*/
|
|
2728
2584
|
'slug'?: string | null;
|
|
2729
|
-
/**
|
|
2730
|
-
*
|
|
2731
|
-
* @type {string}
|
|
2732
|
-
* @memberof CountryModel
|
|
2733
|
-
*/
|
|
2734
|
-
'description'?: string | null;
|
|
2735
|
-
/**
|
|
2736
|
-
*
|
|
2737
|
-
* @type {number}
|
|
2738
|
-
* @memberof CountryModel
|
|
2739
|
-
*/
|
|
2740
|
-
'hospitalsCount'?: number;
|
|
2741
|
-
/**
|
|
2742
|
-
*
|
|
2743
|
-
* @type {number}
|
|
2744
|
-
* @memberof CountryModel
|
|
2745
|
-
*/
|
|
2746
|
-
'doctorsCount'?: number;
|
|
2747
|
-
/**
|
|
2748
|
-
*
|
|
2749
|
-
* @type {number}
|
|
2750
|
-
* @memberof CountryModel
|
|
2751
|
-
*/
|
|
2752
|
-
'specialitiesCount'?: number;
|
|
2753
|
-
/**
|
|
2754
|
-
*
|
|
2755
|
-
* @type {number}
|
|
2756
|
-
* @memberof CountryModel
|
|
2757
|
-
*/
|
|
2758
|
-
'packagesCount'?: number;
|
|
2759
|
-
/**
|
|
2760
|
-
*
|
|
2761
|
-
* @type {number}
|
|
2762
|
-
* @memberof CountryModel
|
|
2763
|
-
*/
|
|
2764
|
-
'articlesCount'?: number;
|
|
2765
2585
|
/**
|
|
2766
2586
|
*
|
|
2767
2587
|
* @type {boolean}
|
|
@@ -2770,22 +2590,22 @@ export interface CountryModel {
|
|
|
2770
2590
|
'confirmed'?: boolean;
|
|
2771
2591
|
/**
|
|
2772
2592
|
*
|
|
2773
|
-
* @type {
|
|
2593
|
+
* @type {AuditableEntity}
|
|
2774
2594
|
* @memberof CountryModel
|
|
2775
2595
|
*/
|
|
2776
|
-
'
|
|
2596
|
+
'auditableEntity'?: AuditableEntity;
|
|
2777
2597
|
/**
|
|
2778
2598
|
*
|
|
2779
|
-
* @type {
|
|
2599
|
+
* @type {string}
|
|
2780
2600
|
* @memberof CountryModel
|
|
2781
2601
|
*/
|
|
2782
|
-
'
|
|
2602
|
+
'description'?: string | null;
|
|
2783
2603
|
/**
|
|
2784
2604
|
*
|
|
2785
2605
|
* @type {string}
|
|
2786
2606
|
* @memberof CountryModel
|
|
2787
2607
|
*/
|
|
2788
|
-
'
|
|
2608
|
+
'overview'?: string | null;
|
|
2789
2609
|
/**
|
|
2790
2610
|
*
|
|
2791
2611
|
* @type {string}
|
|
@@ -2798,6 +2618,12 @@ export interface CountryModel {
|
|
|
2798
2618
|
* @memberof CountryModel
|
|
2799
2619
|
*/
|
|
2800
2620
|
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
2621
|
+
/**
|
|
2622
|
+
*
|
|
2623
|
+
* @type {Array<MediaModel>}
|
|
2624
|
+
* @memberof CountryModel
|
|
2625
|
+
*/
|
|
2626
|
+
'medias'?: Array<MediaModel> | null;
|
|
2801
2627
|
}
|
|
2802
2628
|
/**
|
|
2803
2629
|
*
|
|
@@ -3212,61 +3038,43 @@ export interface DealItemModel {
|
|
|
3212
3038
|
* @type {string}
|
|
3213
3039
|
* @memberof DealItemModel
|
|
3214
3040
|
*/
|
|
3215
|
-
'
|
|
3216
|
-
/**
|
|
3217
|
-
*
|
|
3218
|
-
* @type {string}
|
|
3219
|
-
* @memberof DealItemModel
|
|
3220
|
-
*/
|
|
3221
|
-
'slug'?: string | null;
|
|
3041
|
+
'languageCode'?: string | null;
|
|
3222
3042
|
/**
|
|
3223
3043
|
*
|
|
3224
3044
|
* @type {string}
|
|
3225
3045
|
* @memberof DealItemModel
|
|
3226
3046
|
*/
|
|
3227
|
-
'
|
|
3047
|
+
'name'?: string | null;
|
|
3228
3048
|
/**
|
|
3229
3049
|
*
|
|
3230
3050
|
* @type {string}
|
|
3231
3051
|
* @memberof DealItemModel
|
|
3232
3052
|
*/
|
|
3233
|
-
'
|
|
3053
|
+
'slug'?: string | null;
|
|
3234
3054
|
/**
|
|
3235
3055
|
*
|
|
3236
|
-
* @type {
|
|
3056
|
+
* @type {boolean}
|
|
3237
3057
|
* @memberof DealItemModel
|
|
3238
3058
|
*/
|
|
3239
|
-
'
|
|
3059
|
+
'confirmed'?: boolean;
|
|
3240
3060
|
/**
|
|
3241
3061
|
*
|
|
3242
3062
|
* @type {string}
|
|
3243
3063
|
* @memberof DealItemModel
|
|
3244
3064
|
*/
|
|
3245
|
-
'
|
|
3065
|
+
'hospitalId'?: string;
|
|
3246
3066
|
/**
|
|
3247
3067
|
*
|
|
3248
3068
|
* @type {string}
|
|
3249
3069
|
* @memberof DealItemModel
|
|
3250
3070
|
*/
|
|
3251
|
-
'
|
|
3071
|
+
'hospitalName'?: string | null;
|
|
3252
3072
|
/**
|
|
3253
3073
|
*
|
|
3254
3074
|
* @type {string}
|
|
3255
3075
|
* @memberof DealItemModel
|
|
3256
3076
|
*/
|
|
3257
|
-
'
|
|
3258
|
-
/**
|
|
3259
|
-
*
|
|
3260
|
-
* @type {boolean}
|
|
3261
|
-
* @memberof DealItemModel
|
|
3262
|
-
*/
|
|
3263
|
-
'hospitalConsultationEnabled'?: boolean;
|
|
3264
|
-
/**
|
|
3265
|
-
*
|
|
3266
|
-
* @type {number}
|
|
3267
|
-
* @memberof DealItemModel
|
|
3268
|
-
*/
|
|
3269
|
-
'serviceDuration'?: number;
|
|
3077
|
+
'hospitalSlug'?: string | null;
|
|
3270
3078
|
/**
|
|
3271
3079
|
*
|
|
3272
3080
|
* @type {MarketingType}
|
|
@@ -3291,24 +3099,6 @@ export interface DealItemModel {
|
|
|
3291
3099
|
* @memberof DealItemModel
|
|
3292
3100
|
*/
|
|
3293
3101
|
'order'?: number;
|
|
3294
|
-
/**
|
|
3295
|
-
*
|
|
3296
|
-
* @type {boolean}
|
|
3297
|
-
* @memberof DealItemModel
|
|
3298
|
-
*/
|
|
3299
|
-
'confirmed'?: boolean;
|
|
3300
|
-
/**
|
|
3301
|
-
*
|
|
3302
|
-
* @type {Array<DealPackageItemModel>}
|
|
3303
|
-
* @memberof DealItemModel
|
|
3304
|
-
*/
|
|
3305
|
-
'dealPackages'?: Array<DealPackageItemModel> | null;
|
|
3306
|
-
/**
|
|
3307
|
-
*
|
|
3308
|
-
* @type {Array<DealServiceItemModel>}
|
|
3309
|
-
* @memberof DealItemModel
|
|
3310
|
-
*/
|
|
3311
|
-
'dealServices'?: Array<DealServiceItemModel> | null;
|
|
3312
3102
|
/**
|
|
3313
3103
|
*
|
|
3314
3104
|
* @type {AuditableEntity}
|
|
@@ -3333,49 +3123,25 @@ export interface DealItemSimpleModel {
|
|
|
3333
3123
|
* @type {string}
|
|
3334
3124
|
* @memberof DealItemSimpleModel
|
|
3335
3125
|
*/
|
|
3336
|
-
'
|
|
3337
|
-
/**
|
|
3338
|
-
*
|
|
3339
|
-
* @type {string}
|
|
3340
|
-
* @memberof DealItemSimpleModel
|
|
3341
|
-
*/
|
|
3342
|
-
'slug'?: string | null;
|
|
3343
|
-
/**
|
|
3344
|
-
*
|
|
3345
|
-
* @type {string}
|
|
3346
|
-
* @memberof DealItemSimpleModel
|
|
3347
|
-
*/
|
|
3348
|
-
'hospitalId'?: string;
|
|
3126
|
+
'languageCode'?: string | null;
|
|
3349
3127
|
/**
|
|
3350
3128
|
*
|
|
3351
3129
|
* @type {string}
|
|
3352
3130
|
* @memberof DealItemSimpleModel
|
|
3353
3131
|
*/
|
|
3354
|
-
'
|
|
3132
|
+
'name'?: string | null;
|
|
3355
3133
|
/**
|
|
3356
3134
|
*
|
|
3357
3135
|
* @type {string}
|
|
3358
3136
|
* @memberof DealItemSimpleModel
|
|
3359
3137
|
*/
|
|
3360
|
-
'
|
|
3361
|
-
/**
|
|
3362
|
-
*
|
|
3363
|
-
* @type {number}
|
|
3364
|
-
* @memberof DealItemSimpleModel
|
|
3365
|
-
*/
|
|
3366
|
-
'order'?: number;
|
|
3138
|
+
'slug'?: string | null;
|
|
3367
3139
|
/**
|
|
3368
3140
|
*
|
|
3369
3141
|
* @type {boolean}
|
|
3370
3142
|
* @memberof DealItemSimpleModel
|
|
3371
3143
|
*/
|
|
3372
3144
|
'confirmed'?: boolean;
|
|
3373
|
-
/**
|
|
3374
|
-
*
|
|
3375
|
-
* @type {AuditableEntity}
|
|
3376
|
-
* @memberof DealItemSimpleModel
|
|
3377
|
-
*/
|
|
3378
|
-
'auditableEntity'?: AuditableEntity;
|
|
3379
3145
|
}
|
|
3380
3146
|
/**
|
|
3381
3147
|
*
|
|
@@ -3394,61 +3160,43 @@ export interface DealModel {
|
|
|
3394
3160
|
* @type {string}
|
|
3395
3161
|
* @memberof DealModel
|
|
3396
3162
|
*/
|
|
3397
|
-
'
|
|
3398
|
-
/**
|
|
3399
|
-
*
|
|
3400
|
-
* @type {string}
|
|
3401
|
-
* @memberof DealModel
|
|
3402
|
-
*/
|
|
3403
|
-
'slug'?: string | null;
|
|
3163
|
+
'languageCode'?: string | null;
|
|
3404
3164
|
/**
|
|
3405
3165
|
*
|
|
3406
3166
|
* @type {string}
|
|
3407
3167
|
* @memberof DealModel
|
|
3408
3168
|
*/
|
|
3409
|
-
'
|
|
3169
|
+
'name'?: string | null;
|
|
3410
3170
|
/**
|
|
3411
3171
|
*
|
|
3412
3172
|
* @type {string}
|
|
3413
3173
|
* @memberof DealModel
|
|
3414
3174
|
*/
|
|
3415
|
-
'
|
|
3175
|
+
'slug'?: string | null;
|
|
3416
3176
|
/**
|
|
3417
3177
|
*
|
|
3418
|
-
* @type {
|
|
3178
|
+
* @type {boolean}
|
|
3419
3179
|
* @memberof DealModel
|
|
3420
3180
|
*/
|
|
3421
|
-
'
|
|
3181
|
+
'confirmed'?: boolean;
|
|
3422
3182
|
/**
|
|
3423
3183
|
*
|
|
3424
3184
|
* @type {string}
|
|
3425
3185
|
* @memberof DealModel
|
|
3426
3186
|
*/
|
|
3427
|
-
'
|
|
3187
|
+
'hospitalId'?: string;
|
|
3428
3188
|
/**
|
|
3429
3189
|
*
|
|
3430
3190
|
* @type {string}
|
|
3431
3191
|
* @memberof DealModel
|
|
3432
3192
|
*/
|
|
3433
|
-
'
|
|
3193
|
+
'hospitalName'?: string | null;
|
|
3434
3194
|
/**
|
|
3435
3195
|
*
|
|
3436
3196
|
* @type {string}
|
|
3437
3197
|
* @memberof DealModel
|
|
3438
3198
|
*/
|
|
3439
|
-
'
|
|
3440
|
-
/**
|
|
3441
|
-
*
|
|
3442
|
-
* @type {boolean}
|
|
3443
|
-
* @memberof DealModel
|
|
3444
|
-
*/
|
|
3445
|
-
'hospitalConsultationEnabled'?: boolean;
|
|
3446
|
-
/**
|
|
3447
|
-
*
|
|
3448
|
-
* @type {number}
|
|
3449
|
-
* @memberof DealModel
|
|
3450
|
-
*/
|
|
3451
|
-
'serviceDuration'?: number;
|
|
3199
|
+
'hospitalSlug'?: string | null;
|
|
3452
3200
|
/**
|
|
3453
3201
|
*
|
|
3454
3202
|
* @type {MarketingType}
|
|
@@ -3475,34 +3223,34 @@ export interface DealModel {
|
|
|
3475
3223
|
'order'?: number;
|
|
3476
3224
|
/**
|
|
3477
3225
|
*
|
|
3478
|
-
* @type {
|
|
3226
|
+
* @type {AuditableEntity}
|
|
3479
3227
|
* @memberof DealModel
|
|
3480
3228
|
*/
|
|
3481
|
-
'
|
|
3229
|
+
'auditableEntity'?: AuditableEntity;
|
|
3482
3230
|
/**
|
|
3483
3231
|
*
|
|
3484
|
-
* @type {
|
|
3232
|
+
* @type {string}
|
|
3485
3233
|
* @memberof DealModel
|
|
3486
3234
|
*/
|
|
3487
|
-
'
|
|
3235
|
+
'description'?: string | null;
|
|
3488
3236
|
/**
|
|
3489
3237
|
*
|
|
3490
|
-
* @type {
|
|
3238
|
+
* @type {string}
|
|
3491
3239
|
* @memberof DealModel
|
|
3492
3240
|
*/
|
|
3493
|
-
'
|
|
3241
|
+
'overview'?: string | null;
|
|
3494
3242
|
/**
|
|
3495
3243
|
*
|
|
3496
|
-
* @type {
|
|
3244
|
+
* @type {string}
|
|
3497
3245
|
* @memberof DealModel
|
|
3498
3246
|
*/
|
|
3499
|
-
'
|
|
3247
|
+
'content'?: string | null;
|
|
3500
3248
|
/**
|
|
3501
3249
|
*
|
|
3502
|
-
* @type {
|
|
3250
|
+
* @type {number}
|
|
3503
3251
|
* @memberof DealModel
|
|
3504
3252
|
*/
|
|
3505
|
-
'
|
|
3253
|
+
'serviceDuration'?: number;
|
|
3506
3254
|
/**
|
|
3507
3255
|
*
|
|
3508
3256
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -3824,6 +3572,12 @@ export interface DealsSimpleModel {
|
|
|
3824
3572
|
* @interface DoctorAffiliationItemModel
|
|
3825
3573
|
*/
|
|
3826
3574
|
export interface DoctorAffiliationItemModel {
|
|
3575
|
+
/**
|
|
3576
|
+
*
|
|
3577
|
+
* @type {string}
|
|
3578
|
+
* @memberof DoctorAffiliationItemModel
|
|
3579
|
+
*/
|
|
3580
|
+
'languageCode'?: string | null;
|
|
3827
3581
|
/**
|
|
3828
3582
|
*
|
|
3829
3583
|
* @type {string}
|
|
@@ -3842,6 +3596,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
3842
3596
|
* @memberof DoctorAffiliationItemModel
|
|
3843
3597
|
*/
|
|
3844
3598
|
'hospitalSlug'?: string | null;
|
|
3599
|
+
/**
|
|
3600
|
+
*
|
|
3601
|
+
* @type {number}
|
|
3602
|
+
* @memberof DoctorAffiliationItemModel
|
|
3603
|
+
*/
|
|
3604
|
+
'order'?: number;
|
|
3845
3605
|
}
|
|
3846
3606
|
/**
|
|
3847
3607
|
*
|
|
@@ -3849,6 +3609,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
3849
3609
|
* @interface DoctorAffiliationModel
|
|
3850
3610
|
*/
|
|
3851
3611
|
export interface DoctorAffiliationModel {
|
|
3612
|
+
/**
|
|
3613
|
+
*
|
|
3614
|
+
* @type {string}
|
|
3615
|
+
* @memberof DoctorAffiliationModel
|
|
3616
|
+
*/
|
|
3617
|
+
'languageCode'?: string | null;
|
|
3852
3618
|
/**
|
|
3853
3619
|
*
|
|
3854
3620
|
* @type {string}
|
|
@@ -3867,9 +3633,15 @@ export interface DoctorAffiliationModel {
|
|
|
3867
3633
|
* @memberof DoctorAffiliationModel
|
|
3868
3634
|
*/
|
|
3869
3635
|
'hospitalSlug'?: string | null;
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3636
|
+
/**
|
|
3637
|
+
*
|
|
3638
|
+
* @type {number}
|
|
3639
|
+
* @memberof DoctorAffiliationModel
|
|
3640
|
+
*/
|
|
3641
|
+
'order'?: number;
|
|
3642
|
+
}
|
|
3643
|
+
/**
|
|
3644
|
+
*
|
|
3873
3645
|
* @export
|
|
3874
3646
|
* @interface DoctorAffiliationsModel
|
|
3875
3647
|
*/
|
|
@@ -4151,12 +3923,6 @@ export interface DoctorItemModel {
|
|
|
4151
3923
|
* @memberof DoctorItemModel
|
|
4152
3924
|
*/
|
|
4153
3925
|
'firstName'?: string | null;
|
|
4154
|
-
/**
|
|
4155
|
-
*
|
|
4156
|
-
* @type {string}
|
|
4157
|
-
* @memberof DoctorItemModel
|
|
4158
|
-
*/
|
|
4159
|
-
'middleName'?: string | null;
|
|
4160
3926
|
/**
|
|
4161
3927
|
*
|
|
4162
3928
|
* @type {string}
|
|
@@ -4169,18 +3935,6 @@ export interface DoctorItemModel {
|
|
|
4169
3935
|
* @memberof DoctorItemModel
|
|
4170
3936
|
*/
|
|
4171
3937
|
'fullName'?: string | null;
|
|
4172
|
-
/**
|
|
4173
|
-
*
|
|
4174
|
-
* @type {string}
|
|
4175
|
-
* @memberof DoctorItemModel
|
|
4176
|
-
*/
|
|
4177
|
-
'slug'?: string | null;
|
|
4178
|
-
/**
|
|
4179
|
-
*
|
|
4180
|
-
* @type {boolean}
|
|
4181
|
-
* @memberof DoctorItemModel
|
|
4182
|
-
*/
|
|
4183
|
-
'confirmed'?: boolean;
|
|
4184
3938
|
/**
|
|
4185
3939
|
*
|
|
4186
3940
|
* @type {string}
|
|
@@ -4329,12 +4083,6 @@ export interface DoctorModel {
|
|
|
4329
4083
|
* @memberof DoctorModel
|
|
4330
4084
|
*/
|
|
4331
4085
|
'firstName'?: string | null;
|
|
4332
|
-
/**
|
|
4333
|
-
*
|
|
4334
|
-
* @type {string}
|
|
4335
|
-
* @memberof DoctorModel
|
|
4336
|
-
*/
|
|
4337
|
-
'middleName'?: string | null;
|
|
4338
4086
|
/**
|
|
4339
4087
|
*
|
|
4340
4088
|
* @type {string}
|
|
@@ -4347,18 +4095,6 @@ export interface DoctorModel {
|
|
|
4347
4095
|
* @memberof DoctorModel
|
|
4348
4096
|
*/
|
|
4349
4097
|
'fullName'?: string | null;
|
|
4350
|
-
/**
|
|
4351
|
-
*
|
|
4352
|
-
* @type {string}
|
|
4353
|
-
* @memberof DoctorModel
|
|
4354
|
-
*/
|
|
4355
|
-
'slug'?: string | null;
|
|
4356
|
-
/**
|
|
4357
|
-
*
|
|
4358
|
-
* @type {boolean}
|
|
4359
|
-
* @memberof DoctorModel
|
|
4360
|
-
*/
|
|
4361
|
-
'confirmed'?: boolean;
|
|
4362
4098
|
/**
|
|
4363
4099
|
*
|
|
4364
4100
|
* @type {string}
|
|
@@ -4455,6 +4191,30 @@ export interface DoctorModel {
|
|
|
4455
4191
|
* @memberof DoctorModel
|
|
4456
4192
|
*/
|
|
4457
4193
|
'startPracticeDate'?: Date | null;
|
|
4194
|
+
/**
|
|
4195
|
+
*
|
|
4196
|
+
* @type {boolean}
|
|
4197
|
+
* @memberof DoctorModel
|
|
4198
|
+
*/
|
|
4199
|
+
'consultationEnabled'?: boolean | null;
|
|
4200
|
+
/**
|
|
4201
|
+
*
|
|
4202
|
+
* @type {number}
|
|
4203
|
+
* @memberof DoctorModel
|
|
4204
|
+
*/
|
|
4205
|
+
'consultationFee'?: number | null;
|
|
4206
|
+
/**
|
|
4207
|
+
*
|
|
4208
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
4209
|
+
* @memberof DoctorModel
|
|
4210
|
+
*/
|
|
4211
|
+
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4212
|
+
/**
|
|
4213
|
+
*
|
|
4214
|
+
* @type {Array<DoctorAffiliationItemModel>}
|
|
4215
|
+
* @memberof DoctorModel
|
|
4216
|
+
*/
|
|
4217
|
+
'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
|
|
4458
4218
|
/**
|
|
4459
4219
|
*
|
|
4460
4220
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -4591,42 +4351,18 @@ export interface DoctorSimpleItemModel {
|
|
|
4591
4351
|
* @memberof DoctorSimpleItemModel
|
|
4592
4352
|
*/
|
|
4593
4353
|
'id'?: string;
|
|
4594
|
-
/**
|
|
4595
|
-
*
|
|
4596
|
-
* @type {string}
|
|
4597
|
-
* @memberof DoctorSimpleItemModel
|
|
4598
|
-
*/
|
|
4599
|
-
'languageCode'?: string | null;
|
|
4600
4354
|
/**
|
|
4601
4355
|
*
|
|
4602
4356
|
* @type {string}
|
|
4603
4357
|
* @memberof DoctorSimpleItemModel
|
|
4604
4358
|
*/
|
|
4605
4359
|
'firstName'?: string | null;
|
|
4606
|
-
/**
|
|
4607
|
-
*
|
|
4608
|
-
* @type {string}
|
|
4609
|
-
* @memberof DoctorSimpleItemModel
|
|
4610
|
-
*/
|
|
4611
|
-
'middleName'?: string | null;
|
|
4612
4360
|
/**
|
|
4613
4361
|
*
|
|
4614
4362
|
* @type {string}
|
|
4615
4363
|
* @memberof DoctorSimpleItemModel
|
|
4616
4364
|
*/
|
|
4617
4365
|
'lastName'?: string | null;
|
|
4618
|
-
/**
|
|
4619
|
-
*
|
|
4620
|
-
* @type {string}
|
|
4621
|
-
* @memberof DoctorSimpleItemModel
|
|
4622
|
-
*/
|
|
4623
|
-
'slug'?: string | null;
|
|
4624
|
-
/**
|
|
4625
|
-
*
|
|
4626
|
-
* @type {string}
|
|
4627
|
-
* @memberof DoctorSimpleItemModel
|
|
4628
|
-
*/
|
|
4629
|
-
'hospitalId'?: string | null;
|
|
4630
4366
|
}
|
|
4631
4367
|
/**
|
|
4632
4368
|
*
|
|
@@ -4844,7 +4580,7 @@ export interface FaqCategoryItemModel {
|
|
|
4844
4580
|
* @type {string}
|
|
4845
4581
|
* @memberof FaqCategoryItemModel
|
|
4846
4582
|
*/
|
|
4847
|
-
'
|
|
4583
|
+
'languageCode'?: string | null;
|
|
4848
4584
|
/**
|
|
4849
4585
|
*
|
|
4850
4586
|
* @type {string}
|
|
@@ -4857,12 +4593,18 @@ export interface FaqCategoryItemModel {
|
|
|
4857
4593
|
* @memberof FaqCategoryItemModel
|
|
4858
4594
|
*/
|
|
4859
4595
|
'slug'?: string | null;
|
|
4596
|
+
/**
|
|
4597
|
+
*
|
|
4598
|
+
* @type {boolean}
|
|
4599
|
+
* @memberof FaqCategoryItemModel
|
|
4600
|
+
*/
|
|
4601
|
+
'confirmed'?: boolean;
|
|
4860
4602
|
/**
|
|
4861
4603
|
*
|
|
4862
4604
|
* @type {string}
|
|
4863
4605
|
* @memberof FaqCategoryItemModel
|
|
4864
4606
|
*/
|
|
4865
|
-
'
|
|
4607
|
+
'parentId'?: string | null;
|
|
4866
4608
|
/**
|
|
4867
4609
|
*
|
|
4868
4610
|
* @type {number}
|
|
@@ -4883,10 +4625,22 @@ export interface FaqCategoryItemModel {
|
|
|
4883
4625
|
'hospitalName'?: string | null;
|
|
4884
4626
|
/**
|
|
4885
4627
|
*
|
|
4886
|
-
* @type {
|
|
4628
|
+
* @type {string}
|
|
4887
4629
|
* @memberof FaqCategoryItemModel
|
|
4888
4630
|
*/
|
|
4889
|
-
'
|
|
4631
|
+
'hospitalSlug'?: string | null;
|
|
4632
|
+
/**
|
|
4633
|
+
*
|
|
4634
|
+
* @type {string}
|
|
4635
|
+
* @memberof FaqCategoryItemModel
|
|
4636
|
+
*/
|
|
4637
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
4638
|
+
/**
|
|
4639
|
+
*
|
|
4640
|
+
* @type {Array<MediaModel>}
|
|
4641
|
+
* @memberof FaqCategoryItemModel
|
|
4642
|
+
*/
|
|
4643
|
+
'medias'?: Array<MediaModel> | null;
|
|
4890
4644
|
/**
|
|
4891
4645
|
*
|
|
4892
4646
|
* @type {AuditableEntity}
|
|
@@ -4911,7 +4665,7 @@ export interface FaqCategoryModel {
|
|
|
4911
4665
|
* @type {string}
|
|
4912
4666
|
* @memberof FaqCategoryModel
|
|
4913
4667
|
*/
|
|
4914
|
-
'
|
|
4668
|
+
'languageCode'?: string | null;
|
|
4915
4669
|
/**
|
|
4916
4670
|
*
|
|
4917
4671
|
* @type {string}
|
|
@@ -4924,12 +4678,18 @@ export interface FaqCategoryModel {
|
|
|
4924
4678
|
* @memberof FaqCategoryModel
|
|
4925
4679
|
*/
|
|
4926
4680
|
'slug'?: string | null;
|
|
4681
|
+
/**
|
|
4682
|
+
*
|
|
4683
|
+
* @type {boolean}
|
|
4684
|
+
* @memberof FaqCategoryModel
|
|
4685
|
+
*/
|
|
4686
|
+
'confirmed'?: boolean;
|
|
4927
4687
|
/**
|
|
4928
4688
|
*
|
|
4929
4689
|
* @type {string}
|
|
4930
4690
|
* @memberof FaqCategoryModel
|
|
4931
4691
|
*/
|
|
4932
|
-
'
|
|
4692
|
+
'parentId'?: string | null;
|
|
4933
4693
|
/**
|
|
4934
4694
|
*
|
|
4935
4695
|
* @type {number}
|
|
@@ -4950,10 +4710,22 @@ export interface FaqCategoryModel {
|
|
|
4950
4710
|
'hospitalName'?: string | null;
|
|
4951
4711
|
/**
|
|
4952
4712
|
*
|
|
4953
|
-
* @type {
|
|
4713
|
+
* @type {string}
|
|
4954
4714
|
* @memberof FaqCategoryModel
|
|
4955
4715
|
*/
|
|
4956
|
-
'
|
|
4716
|
+
'hospitalSlug'?: string | null;
|
|
4717
|
+
/**
|
|
4718
|
+
*
|
|
4719
|
+
* @type {string}
|
|
4720
|
+
* @memberof FaqCategoryModel
|
|
4721
|
+
*/
|
|
4722
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
4723
|
+
/**
|
|
4724
|
+
*
|
|
4725
|
+
* @type {Array<MediaModel>}
|
|
4726
|
+
* @memberof FaqCategoryModel
|
|
4727
|
+
*/
|
|
4728
|
+
'medias'?: Array<MediaModel> | null;
|
|
4957
4729
|
/**
|
|
4958
4730
|
*
|
|
4959
4731
|
* @type {AuditableEntity}
|
|
@@ -4965,7 +4737,19 @@ export interface FaqCategoryModel {
|
|
|
4965
4737
|
* @type {string}
|
|
4966
4738
|
* @memberof FaqCategoryModel
|
|
4967
4739
|
*/
|
|
4968
|
-
'
|
|
4740
|
+
'description'?: string | null;
|
|
4741
|
+
/**
|
|
4742
|
+
*
|
|
4743
|
+
* @type {string}
|
|
4744
|
+
* @memberof FaqCategoryModel
|
|
4745
|
+
*/
|
|
4746
|
+
'overview'?: string | null;
|
|
4747
|
+
/**
|
|
4748
|
+
*
|
|
4749
|
+
* @type {string}
|
|
4750
|
+
* @memberof FaqCategoryModel
|
|
4751
|
+
*/
|
|
4752
|
+
'content'?: string | null;
|
|
4969
4753
|
/**
|
|
4970
4754
|
*
|
|
4971
4755
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -4985,6 +4769,12 @@ export interface FaqItemModel {
|
|
|
4985
4769
|
* @memberof FaqItemModel
|
|
4986
4770
|
*/
|
|
4987
4771
|
'id'?: string;
|
|
4772
|
+
/**
|
|
4773
|
+
*
|
|
4774
|
+
* @type {string}
|
|
4775
|
+
* @memberof FaqItemModel
|
|
4776
|
+
*/
|
|
4777
|
+
'languageCode'?: string | null;
|
|
4988
4778
|
/**
|
|
4989
4779
|
*
|
|
4990
4780
|
* @type {string}
|
|
@@ -4997,12 +4787,18 @@ export interface FaqItemModel {
|
|
|
4997
4787
|
* @memberof FaqItemModel
|
|
4998
4788
|
*/
|
|
4999
4789
|
'slug'?: string | null;
|
|
4790
|
+
/**
|
|
4791
|
+
*
|
|
4792
|
+
* @type {boolean}
|
|
4793
|
+
* @memberof FaqItemModel
|
|
4794
|
+
*/
|
|
4795
|
+
'confirmed'?: boolean;
|
|
5000
4796
|
/**
|
|
5001
4797
|
*
|
|
5002
4798
|
* @type {string}
|
|
5003
4799
|
* @memberof FaqItemModel
|
|
5004
4800
|
*/
|
|
5005
|
-
'
|
|
4801
|
+
'parentId'?: string | null;
|
|
5006
4802
|
/**
|
|
5007
4803
|
*
|
|
5008
4804
|
* @type {number}
|
|
@@ -5026,19 +4822,25 @@ export interface FaqItemModel {
|
|
|
5026
4822
|
* @type {string}
|
|
5027
4823
|
* @memberof FaqItemModel
|
|
5028
4824
|
*/
|
|
5029
|
-
'
|
|
4825
|
+
'hospitalSlug'?: string | null;
|
|
5030
4826
|
/**
|
|
5031
4827
|
*
|
|
5032
4828
|
* @type {string}
|
|
5033
4829
|
* @memberof FaqItemModel
|
|
5034
4830
|
*/
|
|
5035
|
-
'
|
|
4831
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
5036
4832
|
/**
|
|
5037
4833
|
*
|
|
5038
|
-
* @type {
|
|
4834
|
+
* @type {string}
|
|
5039
4835
|
* @memberof FaqItemModel
|
|
5040
4836
|
*/
|
|
5041
|
-
'
|
|
4837
|
+
'faqCategoryId'?: string;
|
|
4838
|
+
/**
|
|
4839
|
+
*
|
|
4840
|
+
* @type {string}
|
|
4841
|
+
* @memberof FaqItemModel
|
|
4842
|
+
*/
|
|
4843
|
+
'faqCategoryName'?: string | null;
|
|
5042
4844
|
/**
|
|
5043
4845
|
*
|
|
5044
4846
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -5070,6 +4872,12 @@ export interface FaqModel {
|
|
|
5070
4872
|
* @memberof FaqModel
|
|
5071
4873
|
*/
|
|
5072
4874
|
'id'?: string;
|
|
4875
|
+
/**
|
|
4876
|
+
*
|
|
4877
|
+
* @type {string}
|
|
4878
|
+
* @memberof FaqModel
|
|
4879
|
+
*/
|
|
4880
|
+
'languageCode'?: string | null;
|
|
5073
4881
|
/**
|
|
5074
4882
|
*
|
|
5075
4883
|
* @type {string}
|
|
@@ -5082,12 +4890,18 @@ export interface FaqModel {
|
|
|
5082
4890
|
* @memberof FaqModel
|
|
5083
4891
|
*/
|
|
5084
4892
|
'slug'?: string | null;
|
|
4893
|
+
/**
|
|
4894
|
+
*
|
|
4895
|
+
* @type {boolean}
|
|
4896
|
+
* @memberof FaqModel
|
|
4897
|
+
*/
|
|
4898
|
+
'confirmed'?: boolean;
|
|
5085
4899
|
/**
|
|
5086
4900
|
*
|
|
5087
4901
|
* @type {string}
|
|
5088
4902
|
* @memberof FaqModel
|
|
5089
4903
|
*/
|
|
5090
|
-
'
|
|
4904
|
+
'parentId'?: string | null;
|
|
5091
4905
|
/**
|
|
5092
4906
|
*
|
|
5093
4907
|
* @type {number}
|
|
@@ -5111,19 +4925,25 @@ export interface FaqModel {
|
|
|
5111
4925
|
* @type {string}
|
|
5112
4926
|
* @memberof FaqModel
|
|
5113
4927
|
*/
|
|
5114
|
-
'
|
|
4928
|
+
'hospitalSlug'?: string | null;
|
|
5115
4929
|
/**
|
|
5116
4930
|
*
|
|
5117
4931
|
* @type {string}
|
|
5118
4932
|
* @memberof FaqModel
|
|
5119
4933
|
*/
|
|
5120
|
-
'
|
|
4934
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
5121
4935
|
/**
|
|
5122
4936
|
*
|
|
5123
|
-
* @type {
|
|
4937
|
+
* @type {string}
|
|
5124
4938
|
* @memberof FaqModel
|
|
5125
4939
|
*/
|
|
5126
|
-
'
|
|
4940
|
+
'faqCategoryId'?: string;
|
|
4941
|
+
/**
|
|
4942
|
+
*
|
|
4943
|
+
* @type {string}
|
|
4944
|
+
* @memberof FaqModel
|
|
4945
|
+
*/
|
|
4946
|
+
'faqCategoryName'?: string | null;
|
|
5127
4947
|
/**
|
|
5128
4948
|
*
|
|
5129
4949
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -5147,7 +4967,13 @@ export interface FaqModel {
|
|
|
5147
4967
|
* @type {string}
|
|
5148
4968
|
* @memberof FaqModel
|
|
5149
4969
|
*/
|
|
5150
|
-
'
|
|
4970
|
+
'description'?: string | null;
|
|
4971
|
+
/**
|
|
4972
|
+
*
|
|
4973
|
+
* @type {string}
|
|
4974
|
+
* @memberof FaqModel
|
|
4975
|
+
*/
|
|
4976
|
+
'overview'?: string | null;
|
|
5151
4977
|
/**
|
|
5152
4978
|
*
|
|
5153
4979
|
* @type {string}
|
|
@@ -5613,13 +5439,13 @@ export interface HospitalItemModel {
|
|
|
5613
5439
|
* @type {string}
|
|
5614
5440
|
* @memberof HospitalItemModel
|
|
5615
5441
|
*/
|
|
5616
|
-
'
|
|
5442
|
+
'countryId'?: string;
|
|
5617
5443
|
/**
|
|
5618
5444
|
*
|
|
5619
5445
|
* @type {string}
|
|
5620
5446
|
* @memberof HospitalItemModel
|
|
5621
5447
|
*/
|
|
5622
|
-
'
|
|
5448
|
+
'specialtiesSummerized'?: string | null;
|
|
5623
5449
|
/**
|
|
5624
5450
|
*
|
|
5625
5451
|
* @type {Array<HospitalAccreditationItemModel>}
|
|
@@ -5722,13 +5548,13 @@ export interface HospitalModel {
|
|
|
5722
5548
|
* @type {string}
|
|
5723
5549
|
* @memberof HospitalModel
|
|
5724
5550
|
*/
|
|
5725
|
-
'
|
|
5551
|
+
'countryId'?: string;
|
|
5726
5552
|
/**
|
|
5727
5553
|
*
|
|
5728
5554
|
* @type {string}
|
|
5729
5555
|
* @memberof HospitalModel
|
|
5730
5556
|
*/
|
|
5731
|
-
'
|
|
5557
|
+
'specialtiesSummerized'?: string | null;
|
|
5732
5558
|
/**
|
|
5733
5559
|
*
|
|
5734
5560
|
* @type {Array<HospitalAccreditationItemModel>}
|
|
@@ -5861,182 +5687,128 @@ export interface HospitalServiceItemModel {
|
|
|
5861
5687
|
* @type {string}
|
|
5862
5688
|
* @memberof HospitalServiceItemModel
|
|
5863
5689
|
*/
|
|
5864
|
-
'
|
|
5865
|
-
/**
|
|
5866
|
-
*
|
|
5867
|
-
* @type {string}
|
|
5868
|
-
* @memberof HospitalServiceItemModel
|
|
5869
|
-
*/
|
|
5870
|
-
'slug'?: string | null;
|
|
5871
|
-
/**
|
|
5872
|
-
*
|
|
5873
|
-
* @type {string}
|
|
5874
|
-
* @memberof HospitalServiceItemModel
|
|
5875
|
-
*/
|
|
5876
|
-
'description'?: string | null;
|
|
5690
|
+
'languageCode'?: string | null;
|
|
5877
5691
|
/**
|
|
5878
5692
|
*
|
|
5879
5693
|
* @type {string}
|
|
5880
5694
|
* @memberof HospitalServiceItemModel
|
|
5881
5695
|
*/
|
|
5882
|
-
'
|
|
5696
|
+
'name'?: string | null;
|
|
5883
5697
|
/**
|
|
5884
5698
|
*
|
|
5885
5699
|
* @type {string}
|
|
5886
5700
|
* @memberof HospitalServiceItemModel
|
|
5887
5701
|
*/
|
|
5888
|
-
'
|
|
5702
|
+
'slug'?: string | null;
|
|
5889
5703
|
/**
|
|
5890
5704
|
*
|
|
5891
|
-
* @type {
|
|
5705
|
+
* @type {boolean}
|
|
5892
5706
|
* @memberof HospitalServiceItemModel
|
|
5893
5707
|
*/
|
|
5894
|
-
'
|
|
5708
|
+
'confirmed'?: boolean;
|
|
5895
5709
|
/**
|
|
5896
5710
|
*
|
|
5897
|
-
* @type {
|
|
5711
|
+
* @type {number}
|
|
5898
5712
|
* @memberof HospitalServiceItemModel
|
|
5899
5713
|
*/
|
|
5900
|
-
'
|
|
5714
|
+
'order'?: number;
|
|
5901
5715
|
/**
|
|
5902
5716
|
*
|
|
5903
5717
|
* @type {string}
|
|
5904
5718
|
* @memberof HospitalServiceItemModel
|
|
5905
5719
|
*/
|
|
5906
|
-
'
|
|
5720
|
+
'photo'?: string | null;
|
|
5907
5721
|
/**
|
|
5908
5722
|
*
|
|
5909
5723
|
* @type {string}
|
|
5910
5724
|
* @memberof HospitalServiceItemModel
|
|
5911
5725
|
*/
|
|
5912
|
-
'
|
|
5726
|
+
'photoThumbnail'?: string | null;
|
|
5913
5727
|
/**
|
|
5914
5728
|
*
|
|
5915
|
-
* @type {
|
|
5729
|
+
* @type {AuditableEntity}
|
|
5916
5730
|
* @memberof HospitalServiceItemModel
|
|
5917
5731
|
*/
|
|
5918
|
-
'
|
|
5732
|
+
'auditableEntity'?: AuditableEntity;
|
|
5733
|
+
}
|
|
5734
|
+
/**
|
|
5735
|
+
*
|
|
5736
|
+
* @export
|
|
5737
|
+
* @interface HospitalServiceModel
|
|
5738
|
+
*/
|
|
5739
|
+
export interface HospitalServiceModel {
|
|
5919
5740
|
/**
|
|
5920
5741
|
*
|
|
5921
5742
|
* @type {string}
|
|
5922
|
-
* @memberof
|
|
5743
|
+
* @memberof HospitalServiceModel
|
|
5923
5744
|
*/
|
|
5924
|
-
'
|
|
5745
|
+
'id'?: string;
|
|
5925
5746
|
/**
|
|
5926
5747
|
*
|
|
5927
5748
|
* @type {string}
|
|
5928
|
-
* @memberof
|
|
5749
|
+
* @memberof HospitalServiceModel
|
|
5929
5750
|
*/
|
|
5930
|
-
'
|
|
5751
|
+
'languageCode'?: string | null;
|
|
5931
5752
|
/**
|
|
5932
5753
|
*
|
|
5933
5754
|
* @type {string}
|
|
5934
|
-
* @memberof
|
|
5755
|
+
* @memberof HospitalServiceModel
|
|
5935
5756
|
*/
|
|
5936
|
-
'
|
|
5757
|
+
'name'?: string | null;
|
|
5937
5758
|
/**
|
|
5938
5759
|
*
|
|
5939
5760
|
* @type {string}
|
|
5940
|
-
* @memberof
|
|
5941
|
-
*/
|
|
5942
|
-
'serviceCategoryName'?: string | null;
|
|
5943
|
-
/**
|
|
5944
|
-
*
|
|
5945
|
-
* @type {MarketingType}
|
|
5946
|
-
* @memberof HospitalServiceItemModel
|
|
5947
|
-
*/
|
|
5948
|
-
'marketingType'?: MarketingType;
|
|
5949
|
-
/**
|
|
5950
|
-
*
|
|
5951
|
-
* @type {Procedure}
|
|
5952
|
-
* @memberof HospitalServiceItemModel
|
|
5953
|
-
*/
|
|
5954
|
-
'procedure'?: Procedure;
|
|
5955
|
-
/**
|
|
5956
|
-
*
|
|
5957
|
-
* @type {number}
|
|
5958
|
-
* @memberof HospitalServiceItemModel
|
|
5959
|
-
*/
|
|
5960
|
-
'minPrice'?: number | null;
|
|
5961
|
-
/**
|
|
5962
|
-
*
|
|
5963
|
-
* @type {number}
|
|
5964
|
-
* @memberof HospitalServiceItemModel
|
|
5761
|
+
* @memberof HospitalServiceModel
|
|
5965
5762
|
*/
|
|
5966
|
-
'
|
|
5763
|
+
'slug'?: string | null;
|
|
5967
5764
|
/**
|
|
5968
5765
|
*
|
|
5969
5766
|
* @type {boolean}
|
|
5970
|
-
* @memberof
|
|
5767
|
+
* @memberof HospitalServiceModel
|
|
5971
5768
|
*/
|
|
5972
|
-
'
|
|
5769
|
+
'confirmed'?: boolean;
|
|
5973
5770
|
/**
|
|
5974
5771
|
*
|
|
5975
5772
|
* @type {number}
|
|
5976
|
-
* @memberof
|
|
5773
|
+
* @memberof HospitalServiceModel
|
|
5977
5774
|
*/
|
|
5978
5775
|
'order'?: number;
|
|
5979
|
-
/**
|
|
5980
|
-
*
|
|
5981
|
-
* @type {boolean}
|
|
5982
|
-
* @memberof HospitalServiceItemModel
|
|
5983
|
-
*/
|
|
5984
|
-
'confirmed'?: boolean;
|
|
5985
5776
|
/**
|
|
5986
5777
|
*
|
|
5987
5778
|
* @type {string}
|
|
5988
|
-
* @memberof
|
|
5779
|
+
* @memberof HospitalServiceModel
|
|
5989
5780
|
*/
|
|
5990
5781
|
'photo'?: string | null;
|
|
5991
5782
|
/**
|
|
5992
5783
|
*
|
|
5993
5784
|
* @type {string}
|
|
5994
|
-
* @memberof
|
|
5785
|
+
* @memberof HospitalServiceModel
|
|
5995
5786
|
*/
|
|
5996
5787
|
'photoThumbnail'?: string | null;
|
|
5997
|
-
/**
|
|
5998
|
-
*
|
|
5999
|
-
* @type {Array<MediaModel>}
|
|
6000
|
-
* @memberof HospitalServiceItemModel
|
|
6001
|
-
*/
|
|
6002
|
-
'medias'?: Array<MediaModel> | null;
|
|
6003
5788
|
/**
|
|
6004
5789
|
*
|
|
6005
5790
|
* @type {AuditableEntity}
|
|
6006
|
-
* @memberof HospitalServiceItemModel
|
|
6007
|
-
*/
|
|
6008
|
-
'auditableEntity'?: AuditableEntity;
|
|
6009
|
-
}
|
|
6010
|
-
/**
|
|
6011
|
-
*
|
|
6012
|
-
* @export
|
|
6013
|
-
* @interface HospitalServiceModel
|
|
6014
|
-
*/
|
|
6015
|
-
export interface HospitalServiceModel {
|
|
6016
|
-
/**
|
|
6017
|
-
*
|
|
6018
|
-
* @type {string}
|
|
6019
5791
|
* @memberof HospitalServiceModel
|
|
6020
5792
|
*/
|
|
6021
|
-
'
|
|
5793
|
+
'auditableEntity'?: AuditableEntity;
|
|
6022
5794
|
/**
|
|
6023
5795
|
*
|
|
6024
5796
|
* @type {string}
|
|
6025
5797
|
* @memberof HospitalServiceModel
|
|
6026
5798
|
*/
|
|
6027
|
-
'
|
|
5799
|
+
'description'?: string | null;
|
|
6028
5800
|
/**
|
|
6029
5801
|
*
|
|
6030
5802
|
* @type {string}
|
|
6031
5803
|
* @memberof HospitalServiceModel
|
|
6032
5804
|
*/
|
|
6033
|
-
'
|
|
5805
|
+
'overview'?: string | null;
|
|
6034
5806
|
/**
|
|
6035
5807
|
*
|
|
6036
5808
|
* @type {string}
|
|
6037
5809
|
* @memberof HospitalServiceModel
|
|
6038
5810
|
*/
|
|
6039
|
-
'
|
|
5811
|
+
'content'?: string | null;
|
|
6040
5812
|
/**
|
|
6041
5813
|
*
|
|
6042
5814
|
* @type {string}
|
|
@@ -6055,24 +5827,6 @@ export interface HospitalServiceModel {
|
|
|
6055
5827
|
* @memberof HospitalServiceModel
|
|
6056
5828
|
*/
|
|
6057
5829
|
'hospitalSlug'?: string | null;
|
|
6058
|
-
/**
|
|
6059
|
-
*
|
|
6060
|
-
* @type {string}
|
|
6061
|
-
* @memberof HospitalServiceModel
|
|
6062
|
-
*/
|
|
6063
|
-
'specialtyTypeId'?: string | null;
|
|
6064
|
-
/**
|
|
6065
|
-
*
|
|
6066
|
-
* @type {string}
|
|
6067
|
-
* @memberof HospitalServiceModel
|
|
6068
|
-
*/
|
|
6069
|
-
'specialtyTypeName'?: string | null;
|
|
6070
|
-
/**
|
|
6071
|
-
*
|
|
6072
|
-
* @type {string}
|
|
6073
|
-
* @memberof HospitalServiceModel
|
|
6074
|
-
*/
|
|
6075
|
-
'specialtyId'?: string;
|
|
6076
5830
|
/**
|
|
6077
5831
|
*
|
|
6078
5832
|
* @type {string}
|
|
@@ -6103,12 +5857,6 @@ export interface HospitalServiceModel {
|
|
|
6103
5857
|
* @memberof HospitalServiceModel
|
|
6104
5858
|
*/
|
|
6105
5859
|
'serviceCategoryName'?: string | null;
|
|
6106
|
-
/**
|
|
6107
|
-
*
|
|
6108
|
-
* @type {MarketingType}
|
|
6109
|
-
* @memberof HospitalServiceModel
|
|
6110
|
-
*/
|
|
6111
|
-
'marketingType'?: MarketingType;
|
|
6112
5860
|
/**
|
|
6113
5861
|
*
|
|
6114
5862
|
* @type {Procedure}
|
|
@@ -6133,66 +5881,18 @@ export interface HospitalServiceModel {
|
|
|
6133
5881
|
* @memberof HospitalServiceModel
|
|
6134
5882
|
*/
|
|
6135
5883
|
'priceReuqest'?: boolean;
|
|
6136
|
-
/**
|
|
6137
|
-
*
|
|
6138
|
-
* @type {number}
|
|
6139
|
-
* @memberof HospitalServiceModel
|
|
6140
|
-
*/
|
|
6141
|
-
'order'?: number;
|
|
6142
|
-
/**
|
|
6143
|
-
*
|
|
6144
|
-
* @type {boolean}
|
|
6145
|
-
* @memberof HospitalServiceModel
|
|
6146
|
-
*/
|
|
6147
|
-
'confirmed'?: boolean;
|
|
6148
5884
|
/**
|
|
6149
5885
|
*
|
|
6150
5886
|
* @type {string}
|
|
6151
5887
|
* @memberof HospitalServiceModel
|
|
6152
5888
|
*/
|
|
6153
|
-
'
|
|
6154
|
-
/**
|
|
6155
|
-
*
|
|
6156
|
-
* @type {string}
|
|
6157
|
-
* @memberof HospitalServiceModel
|
|
6158
|
-
*/
|
|
6159
|
-
'photoThumbnail'?: string | null;
|
|
5889
|
+
'customStyle'?: string | null;
|
|
6160
5890
|
/**
|
|
6161
5891
|
*
|
|
6162
5892
|
* @type {Array<MediaModel>}
|
|
6163
5893
|
* @memberof HospitalServiceModel
|
|
6164
5894
|
*/
|
|
6165
5895
|
'medias'?: Array<MediaModel> | null;
|
|
6166
|
-
/**
|
|
6167
|
-
*
|
|
6168
|
-
* @type {AuditableEntity}
|
|
6169
|
-
* @memberof HospitalServiceModel
|
|
6170
|
-
*/
|
|
6171
|
-
'auditableEntity'?: AuditableEntity;
|
|
6172
|
-
/**
|
|
6173
|
-
*
|
|
6174
|
-
* @type {string}
|
|
6175
|
-
* @memberof HospitalServiceModel
|
|
6176
|
-
*/
|
|
6177
|
-
'languageCode'?: string | null;
|
|
6178
|
-
/**
|
|
6179
|
-
*
|
|
6180
|
-
* @type {string}
|
|
6181
|
-
* @memberof HospitalServiceModel
|
|
6182
|
-
*/
|
|
6183
|
-
'content'?: string | null;
|
|
6184
|
-
/**
|
|
6185
|
-
*
|
|
6186
|
-
* @type {string}
|
|
6187
|
-
* @memberof HospitalServiceModel
|
|
6188
|
-
*/
|
|
6189
|
-
'customStyle'?: string | null;
|
|
6190
|
-
/**
|
|
6191
|
-
*
|
|
6192
|
-
* @type {Array<LocalizedUrlModel>}
|
|
6193
|
-
* @memberof HospitalServiceModel
|
|
6194
|
-
*/
|
|
6195
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6196
5896
|
}
|
|
6197
5897
|
/**
|
|
6198
5898
|
*
|
|
@@ -6339,16 +6039,10 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6339
6039
|
'slug'?: string | null;
|
|
6340
6040
|
/**
|
|
6341
6041
|
*
|
|
6342
|
-
* @type {
|
|
6343
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6344
|
-
*/
|
|
6345
|
-
'description'?: string | null;
|
|
6346
|
-
/**
|
|
6347
|
-
*
|
|
6348
|
-
* @type {boolean}
|
|
6042
|
+
* @type {number}
|
|
6349
6043
|
* @memberof HospitalSpecialtyItemModel
|
|
6350
6044
|
*/
|
|
6351
|
-
'
|
|
6045
|
+
'order'?: number;
|
|
6352
6046
|
/**
|
|
6353
6047
|
*
|
|
6354
6048
|
* @type {string}
|
|
@@ -6373,12 +6067,6 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6373
6067
|
* @memberof HospitalSpecialtyItemModel
|
|
6374
6068
|
*/
|
|
6375
6069
|
'backgroundThumbnail'?: string | null;
|
|
6376
|
-
/**
|
|
6377
|
-
*
|
|
6378
|
-
* @type {number}
|
|
6379
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6380
|
-
*/
|
|
6381
|
-
'order'?: number;
|
|
6382
6070
|
/**
|
|
6383
6071
|
*
|
|
6384
6072
|
* @type {number}
|
|
@@ -6424,16 +6112,10 @@ export interface HospitalSpecialtyModel {
|
|
|
6424
6112
|
'slug'?: string | null;
|
|
6425
6113
|
/**
|
|
6426
6114
|
*
|
|
6427
|
-
* @type {
|
|
6428
|
-
* @memberof HospitalSpecialtyModel
|
|
6429
|
-
*/
|
|
6430
|
-
'description'?: string | null;
|
|
6431
|
-
/**
|
|
6432
|
-
*
|
|
6433
|
-
* @type {boolean}
|
|
6115
|
+
* @type {number}
|
|
6434
6116
|
* @memberof HospitalSpecialtyModel
|
|
6435
6117
|
*/
|
|
6436
|
-
'
|
|
6118
|
+
'order'?: number;
|
|
6437
6119
|
/**
|
|
6438
6120
|
*
|
|
6439
6121
|
* @type {string}
|
|
@@ -6463,37 +6145,37 @@ export interface HospitalSpecialtyModel {
|
|
|
6463
6145
|
* @type {number}
|
|
6464
6146
|
* @memberof HospitalSpecialtyModel
|
|
6465
6147
|
*/
|
|
6466
|
-
'
|
|
6148
|
+
'servicesCount'?: number;
|
|
6467
6149
|
/**
|
|
6468
6150
|
*
|
|
6469
|
-
* @type {
|
|
6151
|
+
* @type {string}
|
|
6470
6152
|
* @memberof HospitalSpecialtyModel
|
|
6471
6153
|
*/
|
|
6472
|
-
'
|
|
6154
|
+
'specialtyId'?: string;
|
|
6473
6155
|
/**
|
|
6474
6156
|
*
|
|
6475
6157
|
* @type {string}
|
|
6476
6158
|
* @memberof HospitalSpecialtyModel
|
|
6477
6159
|
*/
|
|
6478
|
-
'
|
|
6160
|
+
'description'?: string | null;
|
|
6479
6161
|
/**
|
|
6480
6162
|
*
|
|
6481
6163
|
* @type {string}
|
|
6482
6164
|
* @memberof HospitalSpecialtyModel
|
|
6483
6165
|
*/
|
|
6484
|
-
'
|
|
6166
|
+
'content'?: string | null;
|
|
6485
6167
|
/**
|
|
6486
6168
|
*
|
|
6487
|
-
* @type {
|
|
6169
|
+
* @type {boolean}
|
|
6488
6170
|
* @memberof HospitalSpecialtyModel
|
|
6489
6171
|
*/
|
|
6490
|
-
'
|
|
6172
|
+
'confirmed'?: boolean;
|
|
6491
6173
|
/**
|
|
6492
6174
|
*
|
|
6493
6175
|
* @type {string}
|
|
6494
6176
|
* @memberof HospitalSpecialtyModel
|
|
6495
6177
|
*/
|
|
6496
|
-
'
|
|
6178
|
+
'hospitalId'?: string;
|
|
6497
6179
|
/**
|
|
6498
6180
|
*
|
|
6499
6181
|
* @type {string}
|
|
@@ -6523,13 +6205,7 @@ export interface HospitalSpecialtyModel {
|
|
|
6523
6205
|
* @type {string}
|
|
6524
6206
|
* @memberof HospitalSpecialtyModel
|
|
6525
6207
|
*/
|
|
6526
|
-
'
|
|
6527
|
-
/**
|
|
6528
|
-
*
|
|
6529
|
-
* @type {MarketingType}
|
|
6530
|
-
* @memberof HospitalSpecialtyModel
|
|
6531
|
-
*/
|
|
6532
|
-
'marketingType'?: MarketingType;
|
|
6208
|
+
'customStyle'?: string | null;
|
|
6533
6209
|
/**
|
|
6534
6210
|
*
|
|
6535
6211
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -6554,55 +6230,31 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
6554
6230
|
* @type {string}
|
|
6555
6231
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6556
6232
|
*/
|
|
6557
|
-
'id'?: string;
|
|
6558
|
-
/**
|
|
6559
|
-
*
|
|
6560
|
-
* @type {string}
|
|
6561
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6562
|
-
*/
|
|
6563
|
-
'languageCode'?: string | null;
|
|
6564
|
-
/**
|
|
6565
|
-
*
|
|
6566
|
-
* @type {string}
|
|
6567
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6568
|
-
*/
|
|
6569
|
-
'name'?: string | null;
|
|
6570
|
-
/**
|
|
6571
|
-
*
|
|
6572
|
-
* @type {string}
|
|
6573
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6574
|
-
*/
|
|
6575
|
-
'slug'?: string | null;
|
|
6576
|
-
/**
|
|
6577
|
-
*
|
|
6578
|
-
* @type {string}
|
|
6579
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6580
|
-
*/
|
|
6581
|
-
'description'?: string | null;
|
|
6233
|
+
'id'?: string;
|
|
6582
6234
|
/**
|
|
6583
6235
|
*
|
|
6584
|
-
* @type {
|
|
6236
|
+
* @type {string}
|
|
6585
6237
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6586
6238
|
*/
|
|
6587
|
-
'
|
|
6239
|
+
'languageCode'?: string | null;
|
|
6588
6240
|
/**
|
|
6589
6241
|
*
|
|
6590
|
-
* @type {
|
|
6242
|
+
* @type {string}
|
|
6591
6243
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6592
6244
|
*/
|
|
6593
|
-
'
|
|
6245
|
+
'name'?: string | null;
|
|
6594
6246
|
/**
|
|
6595
6247
|
*
|
|
6596
|
-
* @type {
|
|
6248
|
+
* @type {string}
|
|
6597
6249
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6598
6250
|
*/
|
|
6599
|
-
'
|
|
6251
|
+
'slug'?: string | null;
|
|
6600
6252
|
/**
|
|
6601
6253
|
*
|
|
6602
|
-
* @type {
|
|
6254
|
+
* @type {number}
|
|
6603
6255
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6604
6256
|
*/
|
|
6605
|
-
'
|
|
6257
|
+
'order'?: number;
|
|
6606
6258
|
}
|
|
6607
6259
|
/**
|
|
6608
6260
|
*
|
|
@@ -7369,12 +7021,6 @@ export interface PatientModel {
|
|
|
7369
7021
|
* @memberof PatientModel
|
|
7370
7022
|
*/
|
|
7371
7023
|
'firstName'?: string | null;
|
|
7372
|
-
/**
|
|
7373
|
-
*
|
|
7374
|
-
* @type {string}
|
|
7375
|
-
* @memberof PatientModel
|
|
7376
|
-
*/
|
|
7377
|
-
'middleName'?: string | null;
|
|
7378
7024
|
/**
|
|
7379
7025
|
*
|
|
7380
7026
|
* @type {string}
|
|
@@ -7387,18 +7033,6 @@ export interface PatientModel {
|
|
|
7387
7033
|
* @memberof PatientModel
|
|
7388
7034
|
*/
|
|
7389
7035
|
'fullName'?: string | null;
|
|
7390
|
-
/**
|
|
7391
|
-
*
|
|
7392
|
-
* @type {string}
|
|
7393
|
-
* @memberof PatientModel
|
|
7394
|
-
*/
|
|
7395
|
-
'slug'?: string | null;
|
|
7396
|
-
/**
|
|
7397
|
-
*
|
|
7398
|
-
* @type {boolean}
|
|
7399
|
-
* @memberof PatientModel
|
|
7400
|
-
*/
|
|
7401
|
-
'confirmed'?: boolean;
|
|
7402
7036
|
/**
|
|
7403
7037
|
*
|
|
7404
7038
|
* @type {string}
|
|
@@ -8500,31 +8134,25 @@ export interface SpecialtyItemModel {
|
|
|
8500
8134
|
* @type {string}
|
|
8501
8135
|
* @memberof SpecialtyItemModel
|
|
8502
8136
|
*/
|
|
8503
|
-
'
|
|
8137
|
+
'languageCode'?: string | null;
|
|
8504
8138
|
/**
|
|
8505
8139
|
*
|
|
8506
8140
|
* @type {string}
|
|
8507
8141
|
* @memberof SpecialtyItemModel
|
|
8508
8142
|
*/
|
|
8509
|
-
'
|
|
8143
|
+
'name'?: string | null;
|
|
8510
8144
|
/**
|
|
8511
8145
|
*
|
|
8512
8146
|
* @type {string}
|
|
8513
8147
|
* @memberof SpecialtyItemModel
|
|
8514
8148
|
*/
|
|
8515
|
-
'
|
|
8516
|
-
/**
|
|
8517
|
-
*
|
|
8518
|
-
* @type {number}
|
|
8519
|
-
* @memberof SpecialtyItemModel
|
|
8520
|
-
*/
|
|
8521
|
-
'hospitalSpecialtyCount'?: number;
|
|
8149
|
+
'slug'?: string | null;
|
|
8522
8150
|
/**
|
|
8523
8151
|
*
|
|
8524
|
-
* @type {
|
|
8152
|
+
* @type {boolean}
|
|
8525
8153
|
* @memberof SpecialtyItemModel
|
|
8526
8154
|
*/
|
|
8527
|
-
'
|
|
8155
|
+
'confirmed'?: boolean;
|
|
8528
8156
|
/**
|
|
8529
8157
|
*
|
|
8530
8158
|
* @type {string}
|
|
@@ -8539,28 +8167,16 @@ export interface SpecialtyItemModel {
|
|
|
8539
8167
|
'specialtyTypeName'?: string | null;
|
|
8540
8168
|
/**
|
|
8541
8169
|
*
|
|
8542
|
-
* @type {
|
|
8170
|
+
* @type {Array<MediaModel>}
|
|
8543
8171
|
* @memberof SpecialtyItemModel
|
|
8544
8172
|
*/
|
|
8545
|
-
'
|
|
8173
|
+
'medias'?: Array<MediaModel> | null;
|
|
8546
8174
|
/**
|
|
8547
8175
|
*
|
|
8548
8176
|
* @type {AuditableEntity}
|
|
8549
8177
|
* @memberof SpecialtyItemModel
|
|
8550
8178
|
*/
|
|
8551
8179
|
'auditableEntity'?: AuditableEntity;
|
|
8552
|
-
/**
|
|
8553
|
-
*
|
|
8554
|
-
* @type {boolean}
|
|
8555
|
-
* @memberof SpecialtyItemModel
|
|
8556
|
-
*/
|
|
8557
|
-
'returnDefaultValue'?: boolean | null;
|
|
8558
|
-
/**
|
|
8559
|
-
*
|
|
8560
|
-
* @type {Array<MediaModel>}
|
|
8561
|
-
* @memberof SpecialtyItemModel
|
|
8562
|
-
*/
|
|
8563
|
-
'medias'?: Array<MediaModel> | null;
|
|
8564
8180
|
}
|
|
8565
8181
|
/**
|
|
8566
8182
|
*
|
|
@@ -8579,25 +8195,31 @@ export interface SpecialtyItemSimpleModel {
|
|
|
8579
8195
|
* @type {string}
|
|
8580
8196
|
* @memberof SpecialtyItemSimpleModel
|
|
8581
8197
|
*/
|
|
8582
|
-
'
|
|
8198
|
+
'languageCode'?: string | null;
|
|
8583
8199
|
/**
|
|
8584
8200
|
*
|
|
8585
8201
|
* @type {string}
|
|
8586
8202
|
* @memberof SpecialtyItemSimpleModel
|
|
8587
8203
|
*/
|
|
8588
|
-
'
|
|
8204
|
+
'name'?: string | null;
|
|
8589
8205
|
/**
|
|
8590
8206
|
*
|
|
8591
8207
|
* @type {string}
|
|
8592
8208
|
* @memberof SpecialtyItemSimpleModel
|
|
8593
8209
|
*/
|
|
8594
|
-
'
|
|
8210
|
+
'slug'?: string | null;
|
|
8595
8211
|
/**
|
|
8596
8212
|
*
|
|
8597
8213
|
* @type {boolean}
|
|
8598
8214
|
* @memberof SpecialtyItemSimpleModel
|
|
8599
8215
|
*/
|
|
8600
8216
|
'confirmed'?: boolean;
|
|
8217
|
+
/**
|
|
8218
|
+
*
|
|
8219
|
+
* @type {string}
|
|
8220
|
+
* @memberof SpecialtyItemSimpleModel
|
|
8221
|
+
*/
|
|
8222
|
+
'specialtyTypeId'?: string;
|
|
8601
8223
|
}
|
|
8602
8224
|
/**
|
|
8603
8225
|
*
|
|
@@ -8616,31 +8238,25 @@ export interface SpecialtyModel {
|
|
|
8616
8238
|
* @type {string}
|
|
8617
8239
|
* @memberof SpecialtyModel
|
|
8618
8240
|
*/
|
|
8619
|
-
'
|
|
8241
|
+
'languageCode'?: string | null;
|
|
8620
8242
|
/**
|
|
8621
8243
|
*
|
|
8622
8244
|
* @type {string}
|
|
8623
8245
|
* @memberof SpecialtyModel
|
|
8624
8246
|
*/
|
|
8625
|
-
'
|
|
8247
|
+
'name'?: string | null;
|
|
8626
8248
|
/**
|
|
8627
8249
|
*
|
|
8628
8250
|
* @type {string}
|
|
8629
8251
|
* @memberof SpecialtyModel
|
|
8630
8252
|
*/
|
|
8631
|
-
'
|
|
8632
|
-
/**
|
|
8633
|
-
*
|
|
8634
|
-
* @type {number}
|
|
8635
|
-
* @memberof SpecialtyModel
|
|
8636
|
-
*/
|
|
8637
|
-
'hospitalSpecialtyCount'?: number;
|
|
8253
|
+
'slug'?: string | null;
|
|
8638
8254
|
/**
|
|
8639
8255
|
*
|
|
8640
|
-
* @type {
|
|
8256
|
+
* @type {boolean}
|
|
8641
8257
|
* @memberof SpecialtyModel
|
|
8642
8258
|
*/
|
|
8643
|
-
'
|
|
8259
|
+
'confirmed'?: boolean;
|
|
8644
8260
|
/**
|
|
8645
8261
|
*
|
|
8646
8262
|
* @type {string}
|
|
@@ -8655,10 +8271,10 @@ export interface SpecialtyModel {
|
|
|
8655
8271
|
'specialtyTypeName'?: string | null;
|
|
8656
8272
|
/**
|
|
8657
8273
|
*
|
|
8658
|
-
* @type {
|
|
8274
|
+
* @type {Array<MediaModel>}
|
|
8659
8275
|
* @memberof SpecialtyModel
|
|
8660
8276
|
*/
|
|
8661
|
-
'
|
|
8277
|
+
'medias'?: Array<MediaModel> | null;
|
|
8662
8278
|
/**
|
|
8663
8279
|
*
|
|
8664
8280
|
* @type {AuditableEntity}
|
|
@@ -8667,22 +8283,16 @@ export interface SpecialtyModel {
|
|
|
8667
8283
|
'auditableEntity'?: AuditableEntity;
|
|
8668
8284
|
/**
|
|
8669
8285
|
*
|
|
8670
|
-
* @type {
|
|
8671
|
-
* @memberof SpecialtyModel
|
|
8672
|
-
*/
|
|
8673
|
-
'returnDefaultValue'?: boolean | null;
|
|
8674
|
-
/**
|
|
8675
|
-
*
|
|
8676
|
-
* @type {Array<MediaModel>}
|
|
8286
|
+
* @type {string}
|
|
8677
8287
|
* @memberof SpecialtyModel
|
|
8678
8288
|
*/
|
|
8679
|
-
'
|
|
8289
|
+
'description'?: string | null;
|
|
8680
8290
|
/**
|
|
8681
8291
|
*
|
|
8682
8292
|
* @type {string}
|
|
8683
8293
|
* @memberof SpecialtyModel
|
|
8684
8294
|
*/
|
|
8685
|
-
'
|
|
8295
|
+
'overview'?: string | null;
|
|
8686
8296
|
/**
|
|
8687
8297
|
*
|
|
8688
8298
|
* @type {string}
|
|
@@ -8713,55 +8323,43 @@ export interface SpecialtyTypeItemModel {
|
|
|
8713
8323
|
* @type {string}
|
|
8714
8324
|
* @memberof SpecialtyTypeItemModel
|
|
8715
8325
|
*/
|
|
8716
|
-
'
|
|
8326
|
+
'languageCode'?: string | null;
|
|
8717
8327
|
/**
|
|
8718
8328
|
*
|
|
8719
8329
|
* @type {string}
|
|
8720
8330
|
* @memberof SpecialtyTypeItemModel
|
|
8721
8331
|
*/
|
|
8722
|
-
'
|
|
8332
|
+
'name'?: string | null;
|
|
8723
8333
|
/**
|
|
8724
8334
|
*
|
|
8725
8335
|
* @type {string}
|
|
8726
8336
|
* @memberof SpecialtyTypeItemModel
|
|
8727
8337
|
*/
|
|
8728
|
-
'
|
|
8338
|
+
'slug'?: string | null;
|
|
8729
8339
|
/**
|
|
8730
8340
|
*
|
|
8731
|
-
* @type {
|
|
8341
|
+
* @type {boolean}
|
|
8732
8342
|
* @memberof SpecialtyTypeItemModel
|
|
8733
8343
|
*/
|
|
8734
|
-
'
|
|
8344
|
+
'confirmed'?: boolean;
|
|
8735
8345
|
/**
|
|
8736
8346
|
*
|
|
8737
|
-
* @type {
|
|
8347
|
+
* @type {string}
|
|
8738
8348
|
* @memberof SpecialtyTypeItemModel
|
|
8739
8349
|
*/
|
|
8740
|
-
'
|
|
8350
|
+
'description'?: string | null;
|
|
8741
8351
|
/**
|
|
8742
8352
|
*
|
|
8743
|
-
* @type {
|
|
8353
|
+
* @type {MarketingType}
|
|
8744
8354
|
* @memberof SpecialtyTypeItemModel
|
|
8745
8355
|
*/
|
|
8746
|
-
'
|
|
8356
|
+
'marketingType'?: MarketingType;
|
|
8747
8357
|
/**
|
|
8748
8358
|
*
|
|
8749
8359
|
* @type {number}
|
|
8750
8360
|
* @memberof SpecialtyTypeItemModel
|
|
8751
8361
|
*/
|
|
8752
|
-
'
|
|
8753
|
-
/**
|
|
8754
|
-
*
|
|
8755
|
-
* @type {Date}
|
|
8756
|
-
* @memberof SpecialtyTypeItemModel
|
|
8757
|
-
*/
|
|
8758
|
-
'created'?: Date;
|
|
8759
|
-
/**
|
|
8760
|
-
*
|
|
8761
|
-
* @type {boolean}
|
|
8762
|
-
* @memberof SpecialtyTypeItemModel
|
|
8763
|
-
*/
|
|
8764
|
-
'confirmed'?: boolean;
|
|
8362
|
+
'specialtiesCount'?: number;
|
|
8765
8363
|
/**
|
|
8766
8364
|
*
|
|
8767
8365
|
* @type {Array<MediaModel>}
|
|
@@ -8792,55 +8390,43 @@ export interface SpecialtyTypeModel {
|
|
|
8792
8390
|
* @type {string}
|
|
8793
8391
|
* @memberof SpecialtyTypeModel
|
|
8794
8392
|
*/
|
|
8795
|
-
'
|
|
8393
|
+
'languageCode'?: string | null;
|
|
8796
8394
|
/**
|
|
8797
8395
|
*
|
|
8798
8396
|
* @type {string}
|
|
8799
8397
|
* @memberof SpecialtyTypeModel
|
|
8800
8398
|
*/
|
|
8801
|
-
'
|
|
8399
|
+
'name'?: string | null;
|
|
8802
8400
|
/**
|
|
8803
8401
|
*
|
|
8804
8402
|
* @type {string}
|
|
8805
8403
|
* @memberof SpecialtyTypeModel
|
|
8806
8404
|
*/
|
|
8807
|
-
'
|
|
8405
|
+
'slug'?: string | null;
|
|
8808
8406
|
/**
|
|
8809
8407
|
*
|
|
8810
|
-
* @type {
|
|
8408
|
+
* @type {boolean}
|
|
8811
8409
|
* @memberof SpecialtyTypeModel
|
|
8812
8410
|
*/
|
|
8813
|
-
'
|
|
8411
|
+
'confirmed'?: boolean;
|
|
8814
8412
|
/**
|
|
8815
8413
|
*
|
|
8816
|
-
* @type {
|
|
8414
|
+
* @type {string}
|
|
8817
8415
|
* @memberof SpecialtyTypeModel
|
|
8818
8416
|
*/
|
|
8819
|
-
'
|
|
8417
|
+
'description'?: string | null;
|
|
8820
8418
|
/**
|
|
8821
8419
|
*
|
|
8822
|
-
* @type {
|
|
8420
|
+
* @type {MarketingType}
|
|
8823
8421
|
* @memberof SpecialtyTypeModel
|
|
8824
8422
|
*/
|
|
8825
|
-
'
|
|
8423
|
+
'marketingType'?: MarketingType;
|
|
8826
8424
|
/**
|
|
8827
8425
|
*
|
|
8828
8426
|
* @type {number}
|
|
8829
8427
|
* @memberof SpecialtyTypeModel
|
|
8830
8428
|
*/
|
|
8831
|
-
'
|
|
8832
|
-
/**
|
|
8833
|
-
*
|
|
8834
|
-
* @type {Date}
|
|
8835
|
-
* @memberof SpecialtyTypeModel
|
|
8836
|
-
*/
|
|
8837
|
-
'created'?: Date;
|
|
8838
|
-
/**
|
|
8839
|
-
*
|
|
8840
|
-
* @type {boolean}
|
|
8841
|
-
* @memberof SpecialtyTypeModel
|
|
8842
|
-
*/
|
|
8843
|
-
'confirmed'?: boolean;
|
|
8429
|
+
'specialtiesCount'?: number;
|
|
8844
8430
|
/**
|
|
8845
8431
|
*
|
|
8846
8432
|
* @type {Array<MediaModel>}
|
|
@@ -8853,12 +8439,6 @@ export interface SpecialtyTypeModel {
|
|
|
8853
8439
|
* @memberof SpecialtyTypeModel
|
|
8854
8440
|
*/
|
|
8855
8441
|
'auditableEntity'?: AuditableEntity;
|
|
8856
|
-
/**
|
|
8857
|
-
*
|
|
8858
|
-
* @type {string}
|
|
8859
|
-
* @memberof SpecialtyTypeModel
|
|
8860
|
-
*/
|
|
8861
|
-
'languageCode'?: string | null;
|
|
8862
8442
|
/**
|
|
8863
8443
|
*
|
|
8864
8444
|
* @type {string}
|
|
@@ -8884,6 +8464,12 @@ export interface SpecialtyTypeSimpleItemModel {
|
|
|
8884
8464
|
* @memberof SpecialtyTypeSimpleItemModel
|
|
8885
8465
|
*/
|
|
8886
8466
|
'id'?: string;
|
|
8467
|
+
/**
|
|
8468
|
+
*
|
|
8469
|
+
* @type {string}
|
|
8470
|
+
* @memberof SpecialtyTypeSimpleItemModel
|
|
8471
|
+
*/
|
|
8472
|
+
'languageCode'?: string | null;
|
|
8887
8473
|
/**
|
|
8888
8474
|
*
|
|
8889
8475
|
* @type {string}
|
|
@@ -9571,12 +9157,6 @@ export interface UserModel {
|
|
|
9571
9157
|
* @memberof UserModel
|
|
9572
9158
|
*/
|
|
9573
9159
|
'firstName'?: string | null;
|
|
9574
|
-
/**
|
|
9575
|
-
*
|
|
9576
|
-
* @type {string}
|
|
9577
|
-
* @memberof UserModel
|
|
9578
|
-
*/
|
|
9579
|
-
'middleName'?: string | null;
|
|
9580
9160
|
/**
|
|
9581
9161
|
*
|
|
9582
9162
|
* @type {string}
|
|
@@ -9589,18 +9169,6 @@ export interface UserModel {
|
|
|
9589
9169
|
* @memberof UserModel
|
|
9590
9170
|
*/
|
|
9591
9171
|
'fullName'?: string | null;
|
|
9592
|
-
/**
|
|
9593
|
-
*
|
|
9594
|
-
* @type {string}
|
|
9595
|
-
* @memberof UserModel
|
|
9596
|
-
*/
|
|
9597
|
-
'slug'?: string | null;
|
|
9598
|
-
/**
|
|
9599
|
-
*
|
|
9600
|
-
* @type {boolean}
|
|
9601
|
-
* @memberof UserModel
|
|
9602
|
-
*/
|
|
9603
|
-
'confirmed'?: boolean;
|
|
9604
9172
|
/**
|
|
9605
9173
|
*
|
|
9606
9174
|
* @type {string}
|
|
@@ -15368,13 +14936,14 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
15368
14936
|
* @summary Get all doctor affiliations.
|
|
15369
14937
|
* @param {string} doctorId
|
|
15370
14938
|
* @param {string} [hospitalName]
|
|
14939
|
+
* @param {string} [languageCode]
|
|
15371
14940
|
* @param {number} [page]
|
|
15372
14941
|
* @param {number} [limit]
|
|
15373
14942
|
* @param {Date} [lastRetrieved]
|
|
15374
14943
|
* @param {*} [options] Override http request option.
|
|
15375
14944
|
* @throws {RequiredError}
|
|
15376
14945
|
*/
|
|
15377
|
-
apiV2DoctorsDoctorIdAffiliationsGet: async (doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
14946
|
+
apiV2DoctorsDoctorIdAffiliationsGet: async (doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
15378
14947
|
// verify required parameter 'doctorId' is not null or undefined
|
|
15379
14948
|
assertParamExists('apiV2DoctorsDoctorIdAffiliationsGet', 'doctorId', doctorId)
|
|
15380
14949
|
const localVarPath = `/api/v2/doctors/{doctorId}/affiliations`
|
|
@@ -15394,6 +14963,10 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
15394
14963
|
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
15395
14964
|
}
|
|
15396
14965
|
|
|
14966
|
+
if (languageCode !== undefined) {
|
|
14967
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
14968
|
+
}
|
|
14969
|
+
|
|
15397
14970
|
if (page !== undefined) {
|
|
15398
14971
|
localVarQueryParameter['page'] = page;
|
|
15399
14972
|
}
|
|
@@ -16450,14 +16023,15 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
16450
16023
|
* @summary Get all doctor affiliations.
|
|
16451
16024
|
* @param {string} doctorId
|
|
16452
16025
|
* @param {string} [hospitalName]
|
|
16026
|
+
* @param {string} [languageCode]
|
|
16453
16027
|
* @param {number} [page]
|
|
16454
16028
|
* @param {number} [limit]
|
|
16455
16029
|
* @param {Date} [lastRetrieved]
|
|
16456
16030
|
* @param {*} [options] Override http request option.
|
|
16457
16031
|
* @throws {RequiredError}
|
|
16458
16032
|
*/
|
|
16459
|
-
async apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
|
|
16460
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options);
|
|
16033
|
+
async apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
|
|
16034
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options);
|
|
16461
16035
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
16462
16036
|
},
|
|
16463
16037
|
/**
|
|
@@ -16743,14 +16317,15 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
16743
16317
|
* @summary Get all doctor affiliations.
|
|
16744
16318
|
* @param {string} doctorId
|
|
16745
16319
|
* @param {string} [hospitalName]
|
|
16320
|
+
* @param {string} [languageCode]
|
|
16746
16321
|
* @param {number} [page]
|
|
16747
16322
|
* @param {number} [limit]
|
|
16748
16323
|
* @param {Date} [lastRetrieved]
|
|
16749
16324
|
* @param {*} [options] Override http request option.
|
|
16750
16325
|
* @throws {RequiredError}
|
|
16751
16326
|
*/
|
|
16752
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
|
|
16753
|
-
return localVarFp.apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
16327
|
+
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
|
|
16328
|
+
return localVarFp.apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
16754
16329
|
},
|
|
16755
16330
|
/**
|
|
16756
16331
|
*
|
|
@@ -17018,6 +16593,7 @@ export class DoctorsApi extends BaseAPI {
|
|
|
17018
16593
|
* @summary Get all doctor affiliations.
|
|
17019
16594
|
* @param {string} doctorId
|
|
17020
16595
|
* @param {string} [hospitalName]
|
|
16596
|
+
* @param {string} [languageCode]
|
|
17021
16597
|
* @param {number} [page]
|
|
17022
16598
|
* @param {number} [limit]
|
|
17023
16599
|
* @param {Date} [lastRetrieved]
|
|
@@ -17025,8 +16601,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
17025
16601
|
* @throws {RequiredError}
|
|
17026
16602
|
* @memberof DoctorsApi
|
|
17027
16603
|
*/
|
|
17028
|
-
public apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
17029
|
-
return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
16604
|
+
public apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
16605
|
+
return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
17030
16606
|
}
|
|
17031
16607
|
|
|
17032
16608
|
/**
|
|
@@ -19576,17 +19152,14 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19576
19152
|
* @param {string} [name]
|
|
19577
19153
|
* @param {string} [slug]
|
|
19578
19154
|
* @param {MarketingType} [marketingType]
|
|
19579
|
-
* @param {boolean} [returnDefaultValue]
|
|
19580
|
-
* @param {boolean} [includeServices]
|
|
19581
19155
|
* @param {string} [languageCode]
|
|
19582
|
-
* @param {boolean} [showHidden]
|
|
19583
19156
|
* @param {number} [page]
|
|
19584
19157
|
* @param {number} [limit]
|
|
19585
19158
|
* @param {Date} [lastRetrieved]
|
|
19586
19159
|
* @param {*} [options] Override http request option.
|
|
19587
19160
|
* @throws {RequiredError}
|
|
19588
19161
|
*/
|
|
19589
|
-
apiV2HospitalsHospitalIdSpecialtiesGet: async (hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
19162
|
+
apiV2HospitalsHospitalIdSpecialtiesGet: async (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<RequestArgs> => {
|
|
19590
19163
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
19591
19164
|
assertParamExists('apiV2HospitalsHospitalIdSpecialtiesGet', 'hospitalId', hospitalId)
|
|
19592
19165
|
const localVarPath = `/api/v2/hospitals/{hospitalId}/specialties`
|
|
@@ -19634,22 +19207,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19634
19207
|
localVarQueryParameter['MarketingType'] = marketingType;
|
|
19635
19208
|
}
|
|
19636
19209
|
|
|
19637
|
-
if (returnDefaultValue !== undefined) {
|
|
19638
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
19639
|
-
}
|
|
19640
|
-
|
|
19641
|
-
if (includeServices !== undefined) {
|
|
19642
|
-
localVarQueryParameter['IncludeServices'] = includeServices;
|
|
19643
|
-
}
|
|
19644
|
-
|
|
19645
19210
|
if (languageCode !== undefined) {
|
|
19646
19211
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
19647
19212
|
}
|
|
19648
19213
|
|
|
19649
|
-
if (showHidden !== undefined) {
|
|
19650
|
-
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
19651
|
-
}
|
|
19652
|
-
|
|
19653
19214
|
if (page !== undefined) {
|
|
19654
19215
|
localVarQueryParameter['page'] = page;
|
|
19655
19216
|
}
|
|
@@ -19794,17 +19355,14 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19794
19355
|
* @param {string} [name]
|
|
19795
19356
|
* @param {string} [slug]
|
|
19796
19357
|
* @param {MarketingType} [marketingType]
|
|
19797
|
-
* @param {boolean} [returnDefaultValue]
|
|
19798
|
-
* @param {boolean} [includeServices]
|
|
19799
19358
|
* @param {string} [languageCode]
|
|
19800
|
-
* @param {boolean} [showHidden]
|
|
19801
19359
|
* @param {number} [page]
|
|
19802
19360
|
* @param {number} [limit]
|
|
19803
19361
|
* @param {Date} [lastRetrieved]
|
|
19804
19362
|
* @param {*} [options] Override http request option.
|
|
19805
19363
|
* @throws {RequiredError}
|
|
19806
19364
|
*/
|
|
19807
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet: async (hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
19365
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet: async (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<RequestArgs> => {
|
|
19808
19366
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
19809
19367
|
assertParamExists('apiV2HospitalsHospitalIdSpecialtiesSimpleGet', 'hospitalId', hospitalId)
|
|
19810
19368
|
const localVarPath = `/api/v2/hospitals/{hospitalId}/specialties/simple`
|
|
@@ -19852,22 +19410,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19852
19410
|
localVarQueryParameter['MarketingType'] = marketingType;
|
|
19853
19411
|
}
|
|
19854
19412
|
|
|
19855
|
-
if (returnDefaultValue !== undefined) {
|
|
19856
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
19857
|
-
}
|
|
19858
|
-
|
|
19859
|
-
if (includeServices !== undefined) {
|
|
19860
|
-
localVarQueryParameter['IncludeServices'] = includeServices;
|
|
19861
|
-
}
|
|
19862
|
-
|
|
19863
19413
|
if (languageCode !== undefined) {
|
|
19864
19414
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
19865
19415
|
}
|
|
19866
19416
|
|
|
19867
|
-
if (showHidden !== undefined) {
|
|
19868
|
-
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
19869
|
-
}
|
|
19870
|
-
|
|
19871
19417
|
if (page !== undefined) {
|
|
19872
19418
|
localVarQueryParameter['page'] = page;
|
|
19873
19419
|
}
|
|
@@ -19899,12 +19445,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19899
19445
|
* @param {string} hospitalId
|
|
19900
19446
|
* @param {string} slug
|
|
19901
19447
|
* @param {string} [languageCode]
|
|
19902
|
-
* @param {boolean} [returnDefaultValue]
|
|
19903
|
-
* @param {boolean} [includeServices]
|
|
19904
19448
|
* @param {*} [options] Override http request option.
|
|
19905
19449
|
* @throws {RequiredError}
|
|
19906
19450
|
*/
|
|
19907
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet: async (hospitalId: string, slug: string, languageCode?: string,
|
|
19451
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet: async (hospitalId: string, slug: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19908
19452
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
19909
19453
|
assertParamExists('apiV2HospitalsHospitalIdSpecialtiesSlugGet', 'hospitalId', hospitalId)
|
|
19910
19454
|
// verify required parameter 'slug' is not null or undefined
|
|
@@ -19927,14 +19471,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19927
19471
|
localVarQueryParameter['languageCode'] = languageCode;
|
|
19928
19472
|
}
|
|
19929
19473
|
|
|
19930
|
-
if (returnDefaultValue !== undefined) {
|
|
19931
|
-
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
19932
|
-
}
|
|
19933
|
-
|
|
19934
|
-
if (includeServices !== undefined) {
|
|
19935
|
-
localVarQueryParameter['includeServices'] = includeServices;
|
|
19936
|
-
}
|
|
19937
|
-
|
|
19938
19474
|
|
|
19939
19475
|
|
|
19940
19476
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -19952,12 +19488,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19952
19488
|
* @param {string} hospitalId
|
|
19953
19489
|
* @param {string} specialtyId
|
|
19954
19490
|
* @param {string} [languageCode]
|
|
19955
|
-
* @param {boolean} [returnDefaultValue]
|
|
19956
|
-
* @param {boolean} [includeServices]
|
|
19957
19491
|
* @param {*} [options] Override http request option.
|
|
19958
19492
|
* @throws {RequiredError}
|
|
19959
19493
|
*/
|
|
19960
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: async (hospitalId: string, specialtyId: string, languageCode?: string,
|
|
19494
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: async (hospitalId: string, specialtyId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19961
19495
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
19962
19496
|
assertParamExists('apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet', 'hospitalId', hospitalId)
|
|
19963
19497
|
// verify required parameter 'specialtyId' is not null or undefined
|
|
@@ -19980,14 +19514,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19980
19514
|
localVarQueryParameter['languageCode'] = languageCode;
|
|
19981
19515
|
}
|
|
19982
19516
|
|
|
19983
|
-
if (returnDefaultValue !== undefined) {
|
|
19984
|
-
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
19985
|
-
}
|
|
19986
|
-
|
|
19987
|
-
if (includeServices !== undefined) {
|
|
19988
|
-
localVarQueryParameter['includeServices'] = includeServices;
|
|
19989
|
-
}
|
|
19990
|
-
|
|
19991
19517
|
|
|
19992
19518
|
|
|
19993
19519
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -20780,18 +20306,15 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
20780
20306
|
* @param {string} [name]
|
|
20781
20307
|
* @param {string} [slug]
|
|
20782
20308
|
* @param {MarketingType} [marketingType]
|
|
20783
|
-
* @param {boolean} [returnDefaultValue]
|
|
20784
|
-
* @param {boolean} [includeServices]
|
|
20785
20309
|
* @param {string} [languageCode]
|
|
20786
|
-
* @param {boolean} [showHidden]
|
|
20787
20310
|
* @param {number} [page]
|
|
20788
20311
|
* @param {number} [limit]
|
|
20789
20312
|
* @param {Date} [lastRetrieved]
|
|
20790
20313
|
* @param {*} [options] Override http request option.
|
|
20791
20314
|
* @throws {RequiredError}
|
|
20792
20315
|
*/
|
|
20793
|
-
async apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
20794
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
20316
|
+
async 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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesModel>> {
|
|
20317
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options);
|
|
20795
20318
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
20796
20319
|
},
|
|
20797
20320
|
/**
|
|
@@ -20836,18 +20359,15 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
20836
20359
|
* @param {string} [name]
|
|
20837
20360
|
* @param {string} [slug]
|
|
20838
20361
|
* @param {MarketingType} [marketingType]
|
|
20839
|
-
* @param {boolean} [returnDefaultValue]
|
|
20840
|
-
* @param {boolean} [includeServices]
|
|
20841
20362
|
* @param {string} [languageCode]
|
|
20842
|
-
* @param {boolean} [showHidden]
|
|
20843
20363
|
* @param {number} [page]
|
|
20844
20364
|
* @param {number} [limit]
|
|
20845
20365
|
* @param {Date} [lastRetrieved]
|
|
20846
20366
|
* @param {*} [options] Override http request option.
|
|
20847
20367
|
* @throws {RequiredError}
|
|
20848
20368
|
*/
|
|
20849
|
-
async apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
20850
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
20369
|
+
async 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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesSimpleModel>> {
|
|
20370
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options);
|
|
20851
20371
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
20852
20372
|
},
|
|
20853
20373
|
/**
|
|
@@ -20856,13 +20376,11 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
20856
20376
|
* @param {string} hospitalId
|
|
20857
20377
|
* @param {string} slug
|
|
20858
20378
|
* @param {string} [languageCode]
|
|
20859
|
-
* @param {boolean} [returnDefaultValue]
|
|
20860
|
-
* @param {boolean} [includeServices]
|
|
20861
20379
|
* @param {*} [options] Override http request option.
|
|
20862
20380
|
* @throws {RequiredError}
|
|
20863
20381
|
*/
|
|
20864
|
-
async apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string,
|
|
20865
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode,
|
|
20382
|
+
async apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>> {
|
|
20383
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, options);
|
|
20866
20384
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
20867
20385
|
},
|
|
20868
20386
|
/**
|
|
@@ -20871,13 +20389,11 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
20871
20389
|
* @param {string} hospitalId
|
|
20872
20390
|
* @param {string} specialtyId
|
|
20873
20391
|
* @param {string} [languageCode]
|
|
20874
|
-
* @param {boolean} [returnDefaultValue]
|
|
20875
|
-
* @param {boolean} [includeServices]
|
|
20876
20392
|
* @param {*} [options] Override http request option.
|
|
20877
20393
|
* @throws {RequiredError}
|
|
20878
20394
|
*/
|
|
20879
|
-
async apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string,
|
|
20880
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode,
|
|
20395
|
+
async apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>> {
|
|
20396
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options);
|
|
20881
20397
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
20882
20398
|
},
|
|
20883
20399
|
/**
|
|
@@ -21243,18 +20759,15 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
21243
20759
|
* @param {string} [name]
|
|
21244
20760
|
* @param {string} [slug]
|
|
21245
20761
|
* @param {MarketingType} [marketingType]
|
|
21246
|
-
* @param {boolean} [returnDefaultValue]
|
|
21247
|
-
* @param {boolean} [includeServices]
|
|
21248
20762
|
* @param {string} [languageCode]
|
|
21249
|
-
* @param {boolean} [showHidden]
|
|
21250
20763
|
* @param {number} [page]
|
|
21251
20764
|
* @param {number} [limit]
|
|
21252
20765
|
* @param {Date} [lastRetrieved]
|
|
21253
20766
|
* @param {*} [options] Override http request option.
|
|
21254
20767
|
* @throws {RequiredError}
|
|
21255
20768
|
*/
|
|
21256
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
21257
|
-
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
20769
|
+
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?: any): AxiosPromise<HospitalSpecialtiesModel> {
|
|
20770
|
+
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
21258
20771
|
},
|
|
21259
20772
|
/**
|
|
21260
20773
|
*
|
|
@@ -21296,18 +20809,15 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
21296
20809
|
* @param {string} [name]
|
|
21297
20810
|
* @param {string} [slug]
|
|
21298
20811
|
* @param {MarketingType} [marketingType]
|
|
21299
|
-
* @param {boolean} [returnDefaultValue]
|
|
21300
|
-
* @param {boolean} [includeServices]
|
|
21301
20812
|
* @param {string} [languageCode]
|
|
21302
|
-
* @param {boolean} [showHidden]
|
|
21303
20813
|
* @param {number} [page]
|
|
21304
20814
|
* @param {number} [limit]
|
|
21305
20815
|
* @param {Date} [lastRetrieved]
|
|
21306
20816
|
* @param {*} [options] Override http request option.
|
|
21307
20817
|
* @throws {RequiredError}
|
|
21308
20818
|
*/
|
|
21309
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
21310
|
-
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
20819
|
+
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?: any): AxiosPromise<HospitalSpecialtiesSimpleModel> {
|
|
20820
|
+
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
21311
20821
|
},
|
|
21312
20822
|
/**
|
|
21313
20823
|
*
|
|
@@ -21315,13 +20825,11 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
21315
20825
|
* @param {string} hospitalId
|
|
21316
20826
|
* @param {string} slug
|
|
21317
20827
|
* @param {string} [languageCode]
|
|
21318
|
-
* @param {boolean} [returnDefaultValue]
|
|
21319
|
-
* @param {boolean} [includeServices]
|
|
21320
20828
|
* @param {*} [options] Override http request option.
|
|
21321
20829
|
* @throws {RequiredError}
|
|
21322
20830
|
*/
|
|
21323
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string,
|
|
21324
|
-
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode,
|
|
20831
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, options?: any): AxiosPromise<HospitalSpecialtyModel> {
|
|
20832
|
+
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, options).then((request) => request(axios, basePath));
|
|
21325
20833
|
},
|
|
21326
20834
|
/**
|
|
21327
20835
|
*
|
|
@@ -21329,13 +20837,11 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
21329
20837
|
* @param {string} hospitalId
|
|
21330
20838
|
* @param {string} specialtyId
|
|
21331
20839
|
* @param {string} [languageCode]
|
|
21332
|
-
* @param {boolean} [returnDefaultValue]
|
|
21333
|
-
* @param {boolean} [includeServices]
|
|
21334
20840
|
* @param {*} [options] Override http request option.
|
|
21335
20841
|
* @throws {RequiredError}
|
|
21336
20842
|
*/
|
|
21337
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string,
|
|
21338
|
-
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode,
|
|
20843
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: any): AxiosPromise<HospitalSpecialtyModel> {
|
|
20844
|
+
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options).then((request) => request(axios, basePath));
|
|
21339
20845
|
},
|
|
21340
20846
|
/**
|
|
21341
20847
|
*
|
|
@@ -21720,10 +21226,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21720
21226
|
* @param {string} [name]
|
|
21721
21227
|
* @param {string} [slug]
|
|
21722
21228
|
* @param {MarketingType} [marketingType]
|
|
21723
|
-
* @param {boolean} [returnDefaultValue]
|
|
21724
|
-
* @param {boolean} [includeServices]
|
|
21725
21229
|
* @param {string} [languageCode]
|
|
21726
|
-
* @param {boolean} [showHidden]
|
|
21727
21230
|
* @param {number} [page]
|
|
21728
21231
|
* @param {number} [limit]
|
|
21729
21232
|
* @param {Date} [lastRetrieved]
|
|
@@ -21731,8 +21234,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21731
21234
|
* @throws {RequiredError}
|
|
21732
21235
|
* @memberof HospitalsApi
|
|
21733
21236
|
*/
|
|
21734
|
-
public apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
21735
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
21237
|
+
public 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) {
|
|
21238
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
21736
21239
|
}
|
|
21737
21240
|
|
|
21738
21241
|
/**
|
|
@@ -21779,10 +21282,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21779
21282
|
* @param {string} [name]
|
|
21780
21283
|
* @param {string} [slug]
|
|
21781
21284
|
* @param {MarketingType} [marketingType]
|
|
21782
|
-
* @param {boolean} [returnDefaultValue]
|
|
21783
|
-
* @param {boolean} [includeServices]
|
|
21784
21285
|
* @param {string} [languageCode]
|
|
21785
|
-
* @param {boolean} [showHidden]
|
|
21786
21286
|
* @param {number} [page]
|
|
21787
21287
|
* @param {number} [limit]
|
|
21788
21288
|
* @param {Date} [lastRetrieved]
|
|
@@ -21790,8 +21290,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21790
21290
|
* @throws {RequiredError}
|
|
21791
21291
|
* @memberof HospitalsApi
|
|
21792
21292
|
*/
|
|
21793
|
-
public apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
21794
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
21293
|
+
public 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) {
|
|
21294
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
21795
21295
|
}
|
|
21796
21296
|
|
|
21797
21297
|
/**
|
|
@@ -21800,14 +21300,12 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21800
21300
|
* @param {string} hospitalId
|
|
21801
21301
|
* @param {string} slug
|
|
21802
21302
|
* @param {string} [languageCode]
|
|
21803
|
-
* @param {boolean} [returnDefaultValue]
|
|
21804
|
-
* @param {boolean} [includeServices]
|
|
21805
21303
|
* @param {*} [options] Override http request option.
|
|
21806
21304
|
* @throws {RequiredError}
|
|
21807
21305
|
* @memberof HospitalsApi
|
|
21808
21306
|
*/
|
|
21809
|
-
public apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string,
|
|
21810
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode,
|
|
21307
|
+
public apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
21308
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
21811
21309
|
}
|
|
21812
21310
|
|
|
21813
21311
|
/**
|
|
@@ -21816,14 +21314,12 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21816
21314
|
* @param {string} hospitalId
|
|
21817
21315
|
* @param {string} specialtyId
|
|
21818
21316
|
* @param {string} [languageCode]
|
|
21819
|
-
* @param {boolean} [returnDefaultValue]
|
|
21820
|
-
* @param {boolean} [includeServices]
|
|
21821
21317
|
* @param {*} [options] Override http request option.
|
|
21822
21318
|
* @throws {RequiredError}
|
|
21823
21319
|
* @memberof HospitalsApi
|
|
21824
21320
|
*/
|
|
21825
|
-
public apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string,
|
|
21826
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode,
|
|
21321
|
+
public apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
21322
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
21827
21323
|
}
|
|
21828
21324
|
|
|
21829
21325
|
/**
|