ch-api-client-typescript2 3.3.6 → 3.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +1013 -1124
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +383 -280
- package/package.json +1 -1
- package/src/api.ts +1193 -1260
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,28 +493,28 @@ 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
|
+
'contributorOverview'?: string | null;
|
|
548
506
|
/**
|
|
549
507
|
*
|
|
550
508
|
* @type {string}
|
|
551
509
|
* @memberof ArticleContributorModel
|
|
552
510
|
*/
|
|
553
|
-
'
|
|
511
|
+
'contributorContent'?: string | null;
|
|
554
512
|
/**
|
|
555
513
|
*
|
|
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}
|
|
@@ -661,42 +613,6 @@ export interface ArticleItemModel {
|
|
|
661
613
|
* @memberof ArticleItemModel
|
|
662
614
|
*/
|
|
663
615
|
'hospitalSlug'?: string | null;
|
|
664
|
-
/**
|
|
665
|
-
*
|
|
666
|
-
* @type {string}
|
|
667
|
-
* @memberof ArticleItemModel
|
|
668
|
-
*/
|
|
669
|
-
'youtubeUrl'?: string | null;
|
|
670
|
-
/**
|
|
671
|
-
*
|
|
672
|
-
* @type {boolean}
|
|
673
|
-
* @memberof ArticleItemModel
|
|
674
|
-
*/
|
|
675
|
-
'confirmed'?: boolean;
|
|
676
|
-
/**
|
|
677
|
-
*
|
|
678
|
-
* @type {Array<ArticleTagItemModel>}
|
|
679
|
-
* @memberof ArticleItemModel
|
|
680
|
-
*/
|
|
681
|
-
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
682
|
-
/**
|
|
683
|
-
*
|
|
684
|
-
* @type {Array<ArticleContributorItemModel>}
|
|
685
|
-
* @memberof ArticleItemModel
|
|
686
|
-
*/
|
|
687
|
-
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
688
|
-
/**
|
|
689
|
-
*
|
|
690
|
-
* @type {Array<MediaModel>}
|
|
691
|
-
* @memberof ArticleItemModel
|
|
692
|
-
*/
|
|
693
|
-
'medias'?: Array<MediaModel> | null;
|
|
694
|
-
/**
|
|
695
|
-
*
|
|
696
|
-
* @type {Array<SourceModel>}
|
|
697
|
-
* @memberof ArticleItemModel
|
|
698
|
-
*/
|
|
699
|
-
'sources'?: Array<SourceModel> | null;
|
|
700
616
|
/**
|
|
701
617
|
*
|
|
702
618
|
* @type {AuditableEntity}
|
|
@@ -721,31 +637,25 @@ export interface ArticleModel {
|
|
|
721
637
|
* @type {string}
|
|
722
638
|
* @memberof ArticleModel
|
|
723
639
|
*/
|
|
724
|
-
'
|
|
725
|
-
/**
|
|
726
|
-
*
|
|
727
|
-
* @type {string}
|
|
728
|
-
* @memberof ArticleModel
|
|
729
|
-
*/
|
|
730
|
-
'slug'?: string | null;
|
|
640
|
+
'languageCode'?: string | null;
|
|
731
641
|
/**
|
|
732
642
|
*
|
|
733
643
|
* @type {string}
|
|
734
644
|
* @memberof ArticleModel
|
|
735
645
|
*/
|
|
736
|
-
'
|
|
646
|
+
'name'?: string | null;
|
|
737
647
|
/**
|
|
738
648
|
*
|
|
739
649
|
* @type {string}
|
|
740
650
|
* @memberof ArticleModel
|
|
741
651
|
*/
|
|
742
|
-
'
|
|
652
|
+
'slug'?: string | null;
|
|
743
653
|
/**
|
|
744
654
|
*
|
|
745
|
-
* @type {
|
|
655
|
+
* @type {boolean}
|
|
746
656
|
* @memberof ArticleModel
|
|
747
657
|
*/
|
|
748
|
-
'
|
|
658
|
+
'confirmed'?: boolean;
|
|
749
659
|
/**
|
|
750
660
|
*
|
|
751
661
|
* @type {MarketingType}
|
|
@@ -784,58 +694,46 @@ export interface ArticleModel {
|
|
|
784
694
|
'hospitalSlug'?: string | null;
|
|
785
695
|
/**
|
|
786
696
|
*
|
|
787
|
-
* @type {
|
|
788
|
-
* @memberof ArticleModel
|
|
789
|
-
*/
|
|
790
|
-
'youtubeUrl'?: string | null;
|
|
791
|
-
/**
|
|
792
|
-
*
|
|
793
|
-
* @type {boolean}
|
|
794
|
-
* @memberof ArticleModel
|
|
795
|
-
*/
|
|
796
|
-
'confirmed'?: boolean;
|
|
797
|
-
/**
|
|
798
|
-
*
|
|
799
|
-
* @type {Array<ArticleTagItemModel>}
|
|
697
|
+
* @type {AuditableEntity}
|
|
800
698
|
* @memberof ArticleModel
|
|
801
699
|
*/
|
|
802
|
-
'
|
|
700
|
+
'auditableEntity'?: AuditableEntity;
|
|
803
701
|
/**
|
|
804
702
|
*
|
|
805
|
-
* @type {
|
|
703
|
+
* @type {string}
|
|
806
704
|
* @memberof ArticleModel
|
|
807
705
|
*/
|
|
808
|
-
'
|
|
706
|
+
'description'?: string | null;
|
|
809
707
|
/**
|
|
810
708
|
*
|
|
811
|
-
* @type {
|
|
709
|
+
* @type {string}
|
|
812
710
|
* @memberof ArticleModel
|
|
813
711
|
*/
|
|
814
|
-
'
|
|
712
|
+
'overview'?: string | null;
|
|
815
713
|
/**
|
|
816
714
|
*
|
|
817
|
-
* @type {
|
|
715
|
+
* @type {string}
|
|
818
716
|
* @memberof ArticleModel
|
|
819
717
|
*/
|
|
820
|
-
'
|
|
718
|
+
'content'?: string | null;
|
|
821
719
|
/**
|
|
822
720
|
*
|
|
823
|
-
* @type {
|
|
721
|
+
* @type {string}
|
|
824
722
|
* @memberof ArticleModel
|
|
825
723
|
*/
|
|
826
|
-
'
|
|
724
|
+
'youtubeUrl'?: string | null;
|
|
827
725
|
/**
|
|
828
726
|
*
|
|
829
|
-
* @type {
|
|
727
|
+
* @type {Array<ArticleTagItemModel>}
|
|
830
728
|
* @memberof ArticleModel
|
|
831
729
|
*/
|
|
832
|
-
'
|
|
730
|
+
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
833
731
|
/**
|
|
834
732
|
*
|
|
835
|
-
* @type {
|
|
733
|
+
* @type {Array<MediaModel>}
|
|
836
734
|
* @memberof ArticleModel
|
|
837
735
|
*/
|
|
838
|
-
'
|
|
736
|
+
'medias'?: Array<MediaModel> | null;
|
|
839
737
|
/**
|
|
840
738
|
*
|
|
841
739
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -1091,6 +989,12 @@ export interface BookingItemModel {
|
|
|
1091
989
|
* @memberof BookingItemModel
|
|
1092
990
|
*/
|
|
1093
991
|
'id'?: string;
|
|
992
|
+
/**
|
|
993
|
+
*
|
|
994
|
+
* @type {string}
|
|
995
|
+
* @memberof BookingItemModel
|
|
996
|
+
*/
|
|
997
|
+
'languageCode'?: string | null;
|
|
1094
998
|
/**
|
|
1095
999
|
*
|
|
1096
1000
|
* @type {string}
|
|
@@ -1114,103 +1018,103 @@ export interface BookingItemModel {
|
|
|
1114
1018
|
* @type {string}
|
|
1115
1019
|
* @memberof BookingItemModel
|
|
1116
1020
|
*/
|
|
1117
|
-
'
|
|
1021
|
+
'firstName'?: string | null;
|
|
1118
1022
|
/**
|
|
1119
1023
|
*
|
|
1120
1024
|
* @type {string}
|
|
1121
1025
|
* @memberof BookingItemModel
|
|
1122
1026
|
*/
|
|
1123
|
-
'
|
|
1027
|
+
'lastName'?: string | null;
|
|
1124
1028
|
/**
|
|
1125
1029
|
*
|
|
1126
1030
|
* @type {string}
|
|
1127
1031
|
* @memberof BookingItemModel
|
|
1128
1032
|
*/
|
|
1129
|
-
'
|
|
1033
|
+
'email'?: string | null;
|
|
1130
1034
|
/**
|
|
1131
1035
|
*
|
|
1132
1036
|
* @type {string}
|
|
1133
1037
|
* @memberof BookingItemModel
|
|
1134
1038
|
*/
|
|
1135
|
-
'
|
|
1039
|
+
'phone'?: string | null;
|
|
1136
1040
|
/**
|
|
1137
1041
|
*
|
|
1138
|
-
* @type {
|
|
1042
|
+
* @type {Date}
|
|
1139
1043
|
* @memberof BookingItemModel
|
|
1140
1044
|
*/
|
|
1141
|
-
'
|
|
1045
|
+
'dateOfBirth'?: Date | null;
|
|
1142
1046
|
/**
|
|
1143
1047
|
*
|
|
1144
|
-
* @type {
|
|
1048
|
+
* @type {Gender}
|
|
1145
1049
|
* @memberof BookingItemModel
|
|
1146
1050
|
*/
|
|
1147
|
-
'
|
|
1051
|
+
'gender'?: Gender;
|
|
1148
1052
|
/**
|
|
1149
1053
|
*
|
|
1150
1054
|
* @type {string}
|
|
1151
1055
|
* @memberof BookingItemModel
|
|
1152
1056
|
*/
|
|
1153
|
-
'
|
|
1057
|
+
'comment'?: string | null;
|
|
1154
1058
|
/**
|
|
1155
1059
|
*
|
|
1156
1060
|
* @type {string}
|
|
1157
1061
|
* @memberof BookingItemModel
|
|
1158
1062
|
*/
|
|
1159
|
-
'
|
|
1063
|
+
'hospitalId'?: string;
|
|
1160
1064
|
/**
|
|
1161
1065
|
*
|
|
1162
|
-
* @type {
|
|
1066
|
+
* @type {string}
|
|
1163
1067
|
* @memberof BookingItemModel
|
|
1164
1068
|
*/
|
|
1165
|
-
'
|
|
1069
|
+
'hospitalName'?: string | null;
|
|
1166
1070
|
/**
|
|
1167
1071
|
*
|
|
1168
|
-
* @type {
|
|
1072
|
+
* @type {string}
|
|
1169
1073
|
* @memberof BookingItemModel
|
|
1170
1074
|
*/
|
|
1171
|
-
'
|
|
1075
|
+
'hospitalSlug'?: string | null;
|
|
1172
1076
|
/**
|
|
1173
1077
|
*
|
|
1174
1078
|
* @type {string}
|
|
1175
1079
|
* @memberof BookingItemModel
|
|
1176
1080
|
*/
|
|
1177
|
-
'
|
|
1081
|
+
'hospitalTimeZone'?: string | null;
|
|
1178
1082
|
/**
|
|
1179
1083
|
*
|
|
1180
1084
|
* @type {string}
|
|
1181
1085
|
* @memberof BookingItemModel
|
|
1182
1086
|
*/
|
|
1183
|
-
'
|
|
1087
|
+
'dealId'?: string;
|
|
1184
1088
|
/**
|
|
1185
1089
|
*
|
|
1186
1090
|
* @type {string}
|
|
1187
1091
|
* @memberof BookingItemModel
|
|
1188
1092
|
*/
|
|
1189
|
-
'
|
|
1093
|
+
'dealName'?: string | null;
|
|
1190
1094
|
/**
|
|
1191
1095
|
*
|
|
1192
1096
|
* @type {string}
|
|
1193
1097
|
* @memberof BookingItemModel
|
|
1194
1098
|
*/
|
|
1195
|
-
'
|
|
1099
|
+
'dealSlug'?: string | null;
|
|
1196
1100
|
/**
|
|
1197
1101
|
*
|
|
1198
|
-
* @type {
|
|
1102
|
+
* @type {string}
|
|
1199
1103
|
* @memberof BookingItemModel
|
|
1200
1104
|
*/
|
|
1201
|
-
'
|
|
1105
|
+
'dealPackageId'?: string;
|
|
1202
1106
|
/**
|
|
1203
1107
|
*
|
|
1204
|
-
* @type {
|
|
1108
|
+
* @type {RefundPolicy}
|
|
1205
1109
|
* @memberof BookingItemModel
|
|
1206
1110
|
*/
|
|
1207
|
-
'
|
|
1111
|
+
'refundPolicy'?: RefundPolicy;
|
|
1208
1112
|
/**
|
|
1209
1113
|
*
|
|
1210
|
-
* @type {
|
|
1114
|
+
* @type {number}
|
|
1211
1115
|
* @memberof BookingItemModel
|
|
1212
1116
|
*/
|
|
1213
|
-
'
|
|
1117
|
+
'quantity'?: number;
|
|
1214
1118
|
/**
|
|
1215
1119
|
*
|
|
1216
1120
|
* @type {Date}
|
|
@@ -1283,12 +1187,6 @@ export interface BookingItemModel {
|
|
|
1283
1187
|
* @memberof BookingItemModel
|
|
1284
1188
|
*/
|
|
1285
1189
|
'isOpen'?: boolean;
|
|
1286
|
-
/**
|
|
1287
|
-
*
|
|
1288
|
-
* @type {number}
|
|
1289
|
-
* @memberof BookingItemModel
|
|
1290
|
-
*/
|
|
1291
|
-
'completionRate'?: number;
|
|
1292
1190
|
/**
|
|
1293
1191
|
*
|
|
1294
1192
|
* @type {boolean}
|
|
@@ -1308,6 +1206,12 @@ export interface BookingModel {
|
|
|
1308
1206
|
* @memberof BookingModel
|
|
1309
1207
|
*/
|
|
1310
1208
|
'id'?: string;
|
|
1209
|
+
/**
|
|
1210
|
+
*
|
|
1211
|
+
* @type {string}
|
|
1212
|
+
* @memberof BookingModel
|
|
1213
|
+
*/
|
|
1214
|
+
'languageCode'?: string | null;
|
|
1311
1215
|
/**
|
|
1312
1216
|
*
|
|
1313
1217
|
* @type {string}
|
|
@@ -1331,103 +1235,103 @@ export interface BookingModel {
|
|
|
1331
1235
|
* @type {string}
|
|
1332
1236
|
* @memberof BookingModel
|
|
1333
1237
|
*/
|
|
1334
|
-
'
|
|
1238
|
+
'firstName'?: string | null;
|
|
1335
1239
|
/**
|
|
1336
1240
|
*
|
|
1337
1241
|
* @type {string}
|
|
1338
1242
|
* @memberof BookingModel
|
|
1339
1243
|
*/
|
|
1340
|
-
'
|
|
1244
|
+
'lastName'?: string | null;
|
|
1341
1245
|
/**
|
|
1342
1246
|
*
|
|
1343
1247
|
* @type {string}
|
|
1344
1248
|
* @memberof BookingModel
|
|
1345
1249
|
*/
|
|
1346
|
-
'
|
|
1250
|
+
'email'?: string | null;
|
|
1347
1251
|
/**
|
|
1348
1252
|
*
|
|
1349
1253
|
* @type {string}
|
|
1350
1254
|
* @memberof BookingModel
|
|
1351
1255
|
*/
|
|
1352
|
-
'
|
|
1256
|
+
'phone'?: string | null;
|
|
1353
1257
|
/**
|
|
1354
1258
|
*
|
|
1355
|
-
* @type {
|
|
1259
|
+
* @type {Date}
|
|
1356
1260
|
* @memberof BookingModel
|
|
1357
1261
|
*/
|
|
1358
|
-
'
|
|
1262
|
+
'dateOfBirth'?: Date | null;
|
|
1359
1263
|
/**
|
|
1360
1264
|
*
|
|
1361
|
-
* @type {
|
|
1265
|
+
* @type {Gender}
|
|
1362
1266
|
* @memberof BookingModel
|
|
1363
1267
|
*/
|
|
1364
|
-
'
|
|
1268
|
+
'gender'?: Gender;
|
|
1365
1269
|
/**
|
|
1366
1270
|
*
|
|
1367
1271
|
* @type {string}
|
|
1368
1272
|
* @memberof BookingModel
|
|
1369
1273
|
*/
|
|
1370
|
-
'
|
|
1274
|
+
'comment'?: string | null;
|
|
1371
1275
|
/**
|
|
1372
1276
|
*
|
|
1373
1277
|
* @type {string}
|
|
1374
1278
|
* @memberof BookingModel
|
|
1375
1279
|
*/
|
|
1376
|
-
'
|
|
1280
|
+
'hospitalId'?: string;
|
|
1377
1281
|
/**
|
|
1378
1282
|
*
|
|
1379
|
-
* @type {
|
|
1283
|
+
* @type {string}
|
|
1380
1284
|
* @memberof BookingModel
|
|
1381
1285
|
*/
|
|
1382
|
-
'
|
|
1286
|
+
'hospitalName'?: string | null;
|
|
1383
1287
|
/**
|
|
1384
1288
|
*
|
|
1385
|
-
* @type {
|
|
1289
|
+
* @type {string}
|
|
1386
1290
|
* @memberof BookingModel
|
|
1387
1291
|
*/
|
|
1388
|
-
'
|
|
1292
|
+
'hospitalSlug'?: string | null;
|
|
1389
1293
|
/**
|
|
1390
1294
|
*
|
|
1391
1295
|
* @type {string}
|
|
1392
1296
|
* @memberof BookingModel
|
|
1393
1297
|
*/
|
|
1394
|
-
'
|
|
1298
|
+
'hospitalTimeZone'?: string | null;
|
|
1395
1299
|
/**
|
|
1396
1300
|
*
|
|
1397
1301
|
* @type {string}
|
|
1398
1302
|
* @memberof BookingModel
|
|
1399
1303
|
*/
|
|
1400
|
-
'
|
|
1304
|
+
'dealId'?: string;
|
|
1401
1305
|
/**
|
|
1402
1306
|
*
|
|
1403
1307
|
* @type {string}
|
|
1404
1308
|
* @memberof BookingModel
|
|
1405
1309
|
*/
|
|
1406
|
-
'
|
|
1310
|
+
'dealName'?: string | null;
|
|
1407
1311
|
/**
|
|
1408
1312
|
*
|
|
1409
1313
|
* @type {string}
|
|
1410
1314
|
* @memberof BookingModel
|
|
1411
1315
|
*/
|
|
1412
|
-
'
|
|
1316
|
+
'dealSlug'?: string | null;
|
|
1413
1317
|
/**
|
|
1414
1318
|
*
|
|
1415
|
-
* @type {
|
|
1319
|
+
* @type {string}
|
|
1416
1320
|
* @memberof BookingModel
|
|
1417
1321
|
*/
|
|
1418
|
-
'
|
|
1322
|
+
'dealPackageId'?: string;
|
|
1419
1323
|
/**
|
|
1420
1324
|
*
|
|
1421
|
-
* @type {
|
|
1325
|
+
* @type {RefundPolicy}
|
|
1422
1326
|
* @memberof BookingModel
|
|
1423
1327
|
*/
|
|
1424
|
-
'
|
|
1328
|
+
'refundPolicy'?: RefundPolicy;
|
|
1425
1329
|
/**
|
|
1426
1330
|
*
|
|
1427
|
-
* @type {
|
|
1331
|
+
* @type {number}
|
|
1428
1332
|
* @memberof BookingModel
|
|
1429
1333
|
*/
|
|
1430
|
-
'
|
|
1334
|
+
'quantity'?: number;
|
|
1431
1335
|
/**
|
|
1432
1336
|
*
|
|
1433
1337
|
* @type {Date}
|
|
@@ -1500,12 +1404,6 @@ export interface BookingModel {
|
|
|
1500
1404
|
* @memberof BookingModel
|
|
1501
1405
|
*/
|
|
1502
1406
|
'isOpen'?: boolean;
|
|
1503
|
-
/**
|
|
1504
|
-
*
|
|
1505
|
-
* @type {number}
|
|
1506
|
-
* @memberof BookingModel
|
|
1507
|
-
*/
|
|
1508
|
-
'completionRate'?: number;
|
|
1509
1407
|
/**
|
|
1510
1408
|
*
|
|
1511
1409
|
* @type {boolean}
|
|
@@ -1753,6 +1651,12 @@ export interface ConsultationItemModel {
|
|
|
1753
1651
|
* @memberof ConsultationItemModel
|
|
1754
1652
|
*/
|
|
1755
1653
|
'id'?: string;
|
|
1654
|
+
/**
|
|
1655
|
+
*
|
|
1656
|
+
* @type {string}
|
|
1657
|
+
* @memberof ConsultationItemModel
|
|
1658
|
+
*/
|
|
1659
|
+
'languageCode'?: string | null;
|
|
1756
1660
|
/**
|
|
1757
1661
|
*
|
|
1758
1662
|
* @type {ConsultationType}
|
|
@@ -1782,139 +1686,115 @@ export interface ConsultationItemModel {
|
|
|
1782
1686
|
* @type {string}
|
|
1783
1687
|
* @memberof ConsultationItemModel
|
|
1784
1688
|
*/
|
|
1785
|
-
'
|
|
1786
|
-
/**
|
|
1787
|
-
*
|
|
1788
|
-
* @type {string}
|
|
1789
|
-
* @memberof ConsultationItemModel
|
|
1790
|
-
*/
|
|
1791
|
-
'hospitalId'?: string;
|
|
1689
|
+
'firstName'?: string | null;
|
|
1792
1690
|
/**
|
|
1793
1691
|
*
|
|
1794
1692
|
* @type {string}
|
|
1795
1693
|
* @memberof ConsultationItemModel
|
|
1796
1694
|
*/
|
|
1797
|
-
'
|
|
1695
|
+
'lastName'?: string | null;
|
|
1798
1696
|
/**
|
|
1799
1697
|
*
|
|
1800
1698
|
* @type {string}
|
|
1801
1699
|
* @memberof ConsultationItemModel
|
|
1802
1700
|
*/
|
|
1803
|
-
'
|
|
1701
|
+
'email'?: string | null;
|
|
1804
1702
|
/**
|
|
1805
1703
|
*
|
|
1806
1704
|
* @type {string}
|
|
1807
1705
|
* @memberof ConsultationItemModel
|
|
1808
1706
|
*/
|
|
1809
|
-
'
|
|
1707
|
+
'phone'?: string | null;
|
|
1810
1708
|
/**
|
|
1811
1709
|
*
|
|
1812
|
-
* @type {
|
|
1710
|
+
* @type {Date}
|
|
1813
1711
|
* @memberof ConsultationItemModel
|
|
1814
1712
|
*/
|
|
1815
|
-
'
|
|
1713
|
+
'dateOfBirth'?: Date | null;
|
|
1816
1714
|
/**
|
|
1817
1715
|
*
|
|
1818
|
-
* @type {
|
|
1716
|
+
* @type {Gender}
|
|
1819
1717
|
* @memberof ConsultationItemModel
|
|
1820
1718
|
*/
|
|
1821
|
-
'
|
|
1719
|
+
'gender'?: Gender;
|
|
1822
1720
|
/**
|
|
1823
1721
|
*
|
|
1824
1722
|
* @type {string}
|
|
1825
1723
|
* @memberof ConsultationItemModel
|
|
1826
1724
|
*/
|
|
1827
|
-
'
|
|
1725
|
+
'comment'?: string | null;
|
|
1828
1726
|
/**
|
|
1829
1727
|
*
|
|
1830
1728
|
* @type {string}
|
|
1831
1729
|
* @memberof ConsultationItemModel
|
|
1832
1730
|
*/
|
|
1833
|
-
'
|
|
1731
|
+
'hospitalId'?: string;
|
|
1834
1732
|
/**
|
|
1835
1733
|
*
|
|
1836
1734
|
* @type {string}
|
|
1837
1735
|
* @memberof ConsultationItemModel
|
|
1838
1736
|
*/
|
|
1839
|
-
'
|
|
1737
|
+
'hospitalName'?: string | null;
|
|
1840
1738
|
/**
|
|
1841
1739
|
*
|
|
1842
1740
|
* @type {string}
|
|
1843
1741
|
* @memberof ConsultationItemModel
|
|
1844
1742
|
*/
|
|
1845
|
-
'
|
|
1743
|
+
'hospitalSlug'?: string | null;
|
|
1846
1744
|
/**
|
|
1847
1745
|
*
|
|
1848
1746
|
* @type {string}
|
|
1849
1747
|
* @memberof ConsultationItemModel
|
|
1850
1748
|
*/
|
|
1851
|
-
'
|
|
1749
|
+
'hospitalTimeZone'?: string | null;
|
|
1852
1750
|
/**
|
|
1853
1751
|
*
|
|
1854
1752
|
* @type {string}
|
|
1855
1753
|
* @memberof ConsultationItemModel
|
|
1856
1754
|
*/
|
|
1857
|
-
'
|
|
1755
|
+
'doctorId'?: string | null;
|
|
1858
1756
|
/**
|
|
1859
1757
|
*
|
|
1860
1758
|
* @type {string}
|
|
1861
1759
|
* @memberof ConsultationItemModel
|
|
1862
1760
|
*/
|
|
1863
|
-
'
|
|
1761
|
+
'doctorName'?: string | null;
|
|
1864
1762
|
/**
|
|
1865
1763
|
*
|
|
1866
1764
|
* @type {string}
|
|
1867
1765
|
* @memberof ConsultationItemModel
|
|
1868
1766
|
*/
|
|
1869
|
-
'
|
|
1870
|
-
/**
|
|
1871
|
-
*
|
|
1872
|
-
* @type {boolean}
|
|
1873
|
-
* @memberof ConsultationItemModel
|
|
1874
|
-
*/
|
|
1875
|
-
'isAccountHolder'?: boolean;
|
|
1767
|
+
'doctorSlug'?: string | null;
|
|
1876
1768
|
/**
|
|
1877
1769
|
*
|
|
1878
1770
|
* @type {string}
|
|
1879
1771
|
* @memberof ConsultationItemModel
|
|
1880
1772
|
*/
|
|
1881
|
-
'
|
|
1773
|
+
'dealId'?: string | null;
|
|
1882
1774
|
/**
|
|
1883
1775
|
*
|
|
1884
1776
|
* @type {string}
|
|
1885
1777
|
* @memberof ConsultationItemModel
|
|
1886
1778
|
*/
|
|
1887
|
-
'
|
|
1779
|
+
'dealName'?: string | null;
|
|
1888
1780
|
/**
|
|
1889
1781
|
*
|
|
1890
1782
|
* @type {string}
|
|
1891
1783
|
* @memberof ConsultationItemModel
|
|
1892
1784
|
*/
|
|
1893
|
-
'
|
|
1785
|
+
'dealSlug'?: string | null;
|
|
1894
1786
|
/**
|
|
1895
1787
|
*
|
|
1896
1788
|
* @type {string}
|
|
1897
1789
|
* @memberof ConsultationItemModel
|
|
1898
1790
|
*/
|
|
1899
|
-
'
|
|
1900
|
-
/**
|
|
1901
|
-
*
|
|
1902
|
-
* @type {Date}
|
|
1903
|
-
* @memberof ConsultationItemModel
|
|
1904
|
-
*/
|
|
1905
|
-
'dateOfBirth'?: Date | null;
|
|
1906
|
-
/**
|
|
1907
|
-
*
|
|
1908
|
-
* @type {Gender}
|
|
1909
|
-
* @memberof ConsultationItemModel
|
|
1910
|
-
*/
|
|
1911
|
-
'gender'?: Gender;
|
|
1791
|
+
'language'?: string | null;
|
|
1912
1792
|
/**
|
|
1913
1793
|
*
|
|
1914
|
-
* @type {
|
|
1794
|
+
* @type {boolean}
|
|
1915
1795
|
* @memberof ConsultationItemModel
|
|
1916
1796
|
*/
|
|
1917
|
-
'
|
|
1797
|
+
'isAccountHolder'?: boolean;
|
|
1918
1798
|
/**
|
|
1919
1799
|
*
|
|
1920
1800
|
* @type {string}
|
|
@@ -1945,18 +1825,6 @@ export interface ConsultationItemModel {
|
|
|
1945
1825
|
* @memberof ConsultationItemModel
|
|
1946
1826
|
*/
|
|
1947
1827
|
'confirmedDateEnd'?: Date | null;
|
|
1948
|
-
/**
|
|
1949
|
-
*
|
|
1950
|
-
* @type {string}
|
|
1951
|
-
* @memberof ConsultationItemModel
|
|
1952
|
-
*/
|
|
1953
|
-
'callerName'?: string | null;
|
|
1954
|
-
/**
|
|
1955
|
-
*
|
|
1956
|
-
* @type {string}
|
|
1957
|
-
* @memberof ConsultationItemModel
|
|
1958
|
-
*/
|
|
1959
|
-
'callerId'?: string | null;
|
|
1960
1828
|
/**
|
|
1961
1829
|
*
|
|
1962
1830
|
* @type {number}
|
|
@@ -1981,6 +1849,12 @@ export interface ConsultationItemModel {
|
|
|
1981
1849
|
* @memberof ConsultationItemModel
|
|
1982
1850
|
*/
|
|
1983
1851
|
'requestDate'?: Date;
|
|
1852
|
+
/**
|
|
1853
|
+
*
|
|
1854
|
+
* @type {string}
|
|
1855
|
+
* @memberof ConsultationItemModel
|
|
1856
|
+
*/
|
|
1857
|
+
'domain'?: string | null;
|
|
1984
1858
|
/**
|
|
1985
1859
|
*
|
|
1986
1860
|
* @type {ConsultationStatus}
|
|
@@ -2005,6 +1879,12 @@ export interface ConsultationItemModel {
|
|
|
2005
1879
|
* @memberof ConsultationItemModel
|
|
2006
1880
|
*/
|
|
2007
1881
|
'paymentId'?: string | null;
|
|
1882
|
+
/**
|
|
1883
|
+
*
|
|
1884
|
+
* @type {boolean}
|
|
1885
|
+
* @memberof ConsultationItemModel
|
|
1886
|
+
*/
|
|
1887
|
+
'paymentEnabled'?: boolean;
|
|
2008
1888
|
/**
|
|
2009
1889
|
*
|
|
2010
1890
|
* @type {number}
|
|
@@ -2030,6 +1910,12 @@ export interface ConsultationModel {
|
|
|
2030
1910
|
* @memberof ConsultationModel
|
|
2031
1911
|
*/
|
|
2032
1912
|
'id'?: string;
|
|
1913
|
+
/**
|
|
1914
|
+
*
|
|
1915
|
+
* @type {string}
|
|
1916
|
+
* @memberof ConsultationModel
|
|
1917
|
+
*/
|
|
1918
|
+
'languageCode'?: string | null;
|
|
2033
1919
|
/**
|
|
2034
1920
|
*
|
|
2035
1921
|
* @type {ConsultationType}
|
|
@@ -2059,49 +1945,67 @@ export interface ConsultationModel {
|
|
|
2059
1945
|
* @type {string}
|
|
2060
1946
|
* @memberof ConsultationModel
|
|
2061
1947
|
*/
|
|
2062
|
-
'
|
|
1948
|
+
'firstName'?: string | null;
|
|
2063
1949
|
/**
|
|
2064
1950
|
*
|
|
2065
1951
|
* @type {string}
|
|
2066
1952
|
* @memberof ConsultationModel
|
|
2067
1953
|
*/
|
|
2068
|
-
'
|
|
1954
|
+
'lastName'?: string | null;
|
|
2069
1955
|
/**
|
|
2070
1956
|
*
|
|
2071
1957
|
* @type {string}
|
|
2072
1958
|
* @memberof ConsultationModel
|
|
2073
1959
|
*/
|
|
2074
|
-
'
|
|
1960
|
+
'email'?: string | null;
|
|
2075
1961
|
/**
|
|
2076
1962
|
*
|
|
2077
1963
|
* @type {string}
|
|
2078
1964
|
* @memberof ConsultationModel
|
|
2079
1965
|
*/
|
|
2080
|
-
'
|
|
1966
|
+
'phone'?: string | null;
|
|
1967
|
+
/**
|
|
1968
|
+
*
|
|
1969
|
+
* @type {Date}
|
|
1970
|
+
* @memberof ConsultationModel
|
|
1971
|
+
*/
|
|
1972
|
+
'dateOfBirth'?: Date | null;
|
|
1973
|
+
/**
|
|
1974
|
+
*
|
|
1975
|
+
* @type {Gender}
|
|
1976
|
+
* @memberof ConsultationModel
|
|
1977
|
+
*/
|
|
1978
|
+
'gender'?: Gender;
|
|
2081
1979
|
/**
|
|
2082
1980
|
*
|
|
2083
1981
|
* @type {string}
|
|
2084
1982
|
* @memberof ConsultationModel
|
|
2085
1983
|
*/
|
|
2086
|
-
'
|
|
1984
|
+
'comment'?: string | null;
|
|
2087
1985
|
/**
|
|
2088
1986
|
*
|
|
2089
1987
|
* @type {string}
|
|
2090
1988
|
* @memberof ConsultationModel
|
|
2091
1989
|
*/
|
|
2092
|
-
'
|
|
1990
|
+
'hospitalId'?: string;
|
|
2093
1991
|
/**
|
|
2094
1992
|
*
|
|
2095
1993
|
* @type {string}
|
|
2096
1994
|
* @memberof ConsultationModel
|
|
2097
1995
|
*/
|
|
2098
|
-
'
|
|
1996
|
+
'hospitalName'?: string | null;
|
|
2099
1997
|
/**
|
|
2100
1998
|
*
|
|
2101
1999
|
* @type {string}
|
|
2102
2000
|
* @memberof ConsultationModel
|
|
2103
2001
|
*/
|
|
2104
|
-
'
|
|
2002
|
+
'hospitalSlug'?: string | null;
|
|
2003
|
+
/**
|
|
2004
|
+
*
|
|
2005
|
+
* @type {string}
|
|
2006
|
+
* @memberof ConsultationModel
|
|
2007
|
+
*/
|
|
2008
|
+
'hospitalTimeZone'?: string | null;
|
|
2105
2009
|
/**
|
|
2106
2010
|
*
|
|
2107
2011
|
* @type {string}
|
|
@@ -2155,133 +2059,91 @@ export interface ConsultationModel {
|
|
|
2155
2059
|
* @type {string}
|
|
2156
2060
|
* @memberof ConsultationModel
|
|
2157
2061
|
*/
|
|
2158
|
-
'
|
|
2062
|
+
'timeRange'?: string | null;
|
|
2159
2063
|
/**
|
|
2160
2064
|
*
|
|
2161
|
-
* @type {
|
|
2065
|
+
* @type {Date}
|
|
2162
2066
|
* @memberof ConsultationModel
|
|
2163
2067
|
*/
|
|
2164
|
-
'
|
|
2068
|
+
'approximateDateStart'?: Date;
|
|
2165
2069
|
/**
|
|
2166
2070
|
*
|
|
2167
|
-
* @type {
|
|
2071
|
+
* @type {Date}
|
|
2168
2072
|
* @memberof ConsultationModel
|
|
2169
2073
|
*/
|
|
2170
|
-
'
|
|
2074
|
+
'approximateDateEnd'?: Date;
|
|
2171
2075
|
/**
|
|
2172
2076
|
*
|
|
2173
|
-
* @type {
|
|
2077
|
+
* @type {Date}
|
|
2174
2078
|
* @memberof ConsultationModel
|
|
2175
2079
|
*/
|
|
2176
|
-
'
|
|
2080
|
+
'confirmedDateStart'?: Date | null;
|
|
2177
2081
|
/**
|
|
2178
2082
|
*
|
|
2179
2083
|
* @type {Date}
|
|
2180
2084
|
* @memberof ConsultationModel
|
|
2181
2085
|
*/
|
|
2182
|
-
'
|
|
2086
|
+
'confirmedDateEnd'?: Date | null;
|
|
2183
2087
|
/**
|
|
2184
2088
|
*
|
|
2185
|
-
* @type {
|
|
2089
|
+
* @type {number}
|
|
2186
2090
|
* @memberof ConsultationModel
|
|
2187
2091
|
*/
|
|
2188
|
-
'
|
|
2092
|
+
'fee'?: number;
|
|
2189
2093
|
/**
|
|
2190
2094
|
*
|
|
2191
|
-
* @type {
|
|
2095
|
+
* @type {number}
|
|
2192
2096
|
* @memberof ConsultationModel
|
|
2193
2097
|
*/
|
|
2194
|
-
'
|
|
2098
|
+
'applicationFee'?: number;
|
|
2195
2099
|
/**
|
|
2196
2100
|
*
|
|
2197
2101
|
* @type {string}
|
|
2198
2102
|
* @memberof ConsultationModel
|
|
2199
2103
|
*/
|
|
2200
|
-
'
|
|
2104
|
+
'timeZone'?: string | null;
|
|
2201
2105
|
/**
|
|
2202
2106
|
*
|
|
2203
2107
|
* @type {Date}
|
|
2204
2108
|
* @memberof ConsultationModel
|
|
2205
2109
|
*/
|
|
2206
|
-
'
|
|
2110
|
+
'requestDate'?: Date;
|
|
2207
2111
|
/**
|
|
2208
2112
|
*
|
|
2209
|
-
* @type {
|
|
2113
|
+
* @type {string}
|
|
2210
2114
|
* @memberof ConsultationModel
|
|
2211
2115
|
*/
|
|
2212
|
-
'
|
|
2116
|
+
'domain'?: string | null;
|
|
2213
2117
|
/**
|
|
2214
2118
|
*
|
|
2215
|
-
* @type {
|
|
2119
|
+
* @type {ConsultationStatus}
|
|
2216
2120
|
* @memberof ConsultationModel
|
|
2217
2121
|
*/
|
|
2218
|
-
'
|
|
2122
|
+
'status'?: ConsultationStatus;
|
|
2219
2123
|
/**
|
|
2220
2124
|
*
|
|
2221
|
-
* @type {
|
|
2125
|
+
* @type {RejectReason}
|
|
2222
2126
|
* @memberof ConsultationModel
|
|
2223
2127
|
*/
|
|
2224
|
-
'
|
|
2128
|
+
'rejectReason'?: RejectReason;
|
|
2225
2129
|
/**
|
|
2226
2130
|
*
|
|
2227
|
-
* @type {
|
|
2131
|
+
* @type {boolean}
|
|
2228
2132
|
* @memberof ConsultationModel
|
|
2229
2133
|
*/
|
|
2230
|
-
'
|
|
2134
|
+
'isOpen'?: boolean;
|
|
2231
2135
|
/**
|
|
2232
2136
|
*
|
|
2233
2137
|
* @type {string}
|
|
2234
2138
|
* @memberof ConsultationModel
|
|
2235
2139
|
*/
|
|
2236
|
-
'
|
|
2237
|
-
/**
|
|
2238
|
-
*
|
|
2239
|
-
* @type {number}
|
|
2240
|
-
* @memberof ConsultationModel
|
|
2241
|
-
*/
|
|
2242
|
-
'fee'?: number;
|
|
2243
|
-
/**
|
|
2244
|
-
*
|
|
2245
|
-
* @type {number}
|
|
2246
|
-
* @memberof ConsultationModel
|
|
2247
|
-
*/
|
|
2248
|
-
'applicationFee'?: number;
|
|
2249
|
-
/**
|
|
2250
|
-
*
|
|
2251
|
-
* @type {string}
|
|
2252
|
-
* @memberof ConsultationModel
|
|
2253
|
-
*/
|
|
2254
|
-
'timeZone'?: string | null;
|
|
2255
|
-
/**
|
|
2256
|
-
*
|
|
2257
|
-
* @type {Date}
|
|
2258
|
-
* @memberof ConsultationModel
|
|
2259
|
-
*/
|
|
2260
|
-
'requestDate'?: Date;
|
|
2261
|
-
/**
|
|
2262
|
-
*
|
|
2263
|
-
* @type {ConsultationStatus}
|
|
2264
|
-
* @memberof ConsultationModel
|
|
2265
|
-
*/
|
|
2266
|
-
'status'?: ConsultationStatus;
|
|
2267
|
-
/**
|
|
2268
|
-
*
|
|
2269
|
-
* @type {RejectReason}
|
|
2270
|
-
* @memberof ConsultationModel
|
|
2271
|
-
*/
|
|
2272
|
-
'rejectReason'?: RejectReason;
|
|
2140
|
+
'paymentId'?: string | null;
|
|
2273
2141
|
/**
|
|
2274
2142
|
*
|
|
2275
2143
|
* @type {boolean}
|
|
2276
2144
|
* @memberof ConsultationModel
|
|
2277
2145
|
*/
|
|
2278
|
-
'
|
|
2279
|
-
/**
|
|
2280
|
-
*
|
|
2281
|
-
* @type {string}
|
|
2282
|
-
* @memberof ConsultationModel
|
|
2283
|
-
*/
|
|
2284
|
-
'paymentId'?: string | null;
|
|
2146
|
+
'paymentEnabled'?: boolean;
|
|
2285
2147
|
/**
|
|
2286
2148
|
*
|
|
2287
2149
|
* @type {number}
|
|
@@ -2372,6 +2234,12 @@ export interface ContributorItemModel {
|
|
|
2372
2234
|
* @memberof ContributorItemModel
|
|
2373
2235
|
*/
|
|
2374
2236
|
'id'?: string;
|
|
2237
|
+
/**
|
|
2238
|
+
*
|
|
2239
|
+
* @type {string}
|
|
2240
|
+
* @memberof ContributorItemModel
|
|
2241
|
+
*/
|
|
2242
|
+
'languageCode'?: string | null;
|
|
2375
2243
|
/**
|
|
2376
2244
|
*
|
|
2377
2245
|
* @type {string}
|
|
@@ -2386,58 +2254,58 @@ export interface ContributorItemModel {
|
|
|
2386
2254
|
'slug'?: string | null;
|
|
2387
2255
|
/**
|
|
2388
2256
|
*
|
|
2389
|
-
* @type {
|
|
2257
|
+
* @type {boolean}
|
|
2390
2258
|
* @memberof ContributorItemModel
|
|
2391
2259
|
*/
|
|
2392
|
-
'
|
|
2260
|
+
'confirmed'?: boolean;
|
|
2393
2261
|
/**
|
|
2394
2262
|
*
|
|
2395
2263
|
* @type {string}
|
|
2396
2264
|
* @memberof ContributorItemModel
|
|
2397
2265
|
*/
|
|
2398
|
-
'
|
|
2266
|
+
'hospitalId'?: string;
|
|
2399
2267
|
/**
|
|
2400
2268
|
*
|
|
2401
2269
|
* @type {string}
|
|
2402
2270
|
* @memberof ContributorItemModel
|
|
2403
2271
|
*/
|
|
2404
|
-
'
|
|
2272
|
+
'hospitalName'?: string | null;
|
|
2405
2273
|
/**
|
|
2406
2274
|
*
|
|
2407
2275
|
* @type {string}
|
|
2408
2276
|
* @memberof ContributorItemModel
|
|
2409
2277
|
*/
|
|
2410
|
-
'
|
|
2278
|
+
'hospitalSlug'?: string | null;
|
|
2411
2279
|
/**
|
|
2412
2280
|
*
|
|
2413
2281
|
* @type {string}
|
|
2414
2282
|
* @memberof ContributorItemModel
|
|
2415
2283
|
*/
|
|
2416
|
-
'
|
|
2284
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
2417
2285
|
/**
|
|
2418
2286
|
*
|
|
2419
2287
|
* @type {string}
|
|
2420
2288
|
* @memberof ContributorItemModel
|
|
2421
2289
|
*/
|
|
2422
|
-
'
|
|
2290
|
+
'email'?: string | null;
|
|
2423
2291
|
/**
|
|
2424
2292
|
*
|
|
2425
2293
|
* @type {string}
|
|
2426
2294
|
* @memberof ContributorItemModel
|
|
2427
2295
|
*/
|
|
2428
|
-
'
|
|
2296
|
+
'photo'?: string | null;
|
|
2429
2297
|
/**
|
|
2430
2298
|
*
|
|
2431
|
-
* @type {
|
|
2299
|
+
* @type {string}
|
|
2432
2300
|
* @memberof ContributorItemModel
|
|
2433
2301
|
*/
|
|
2434
|
-
'
|
|
2302
|
+
'photoThumbnail'?: string | null;
|
|
2435
2303
|
/**
|
|
2436
2304
|
*
|
|
2437
|
-
* @type {
|
|
2305
|
+
* @type {number}
|
|
2438
2306
|
* @memberof ContributorItemModel
|
|
2439
2307
|
*/
|
|
2440
|
-
'
|
|
2308
|
+
'order'?: number;
|
|
2441
2309
|
/**
|
|
2442
2310
|
*
|
|
2443
2311
|
* @type {AuditableEntity}
|
|
@@ -2457,6 +2325,12 @@ export interface ContributorModel {
|
|
|
2457
2325
|
* @memberof ContributorModel
|
|
2458
2326
|
*/
|
|
2459
2327
|
'id'?: string;
|
|
2328
|
+
/**
|
|
2329
|
+
*
|
|
2330
|
+
* @type {string}
|
|
2331
|
+
* @memberof ContributorModel
|
|
2332
|
+
*/
|
|
2333
|
+
'languageCode'?: string | null;
|
|
2460
2334
|
/**
|
|
2461
2335
|
*
|
|
2462
2336
|
* @type {string}
|
|
@@ -2469,48 +2343,54 @@ export interface ContributorModel {
|
|
|
2469
2343
|
* @memberof ContributorModel
|
|
2470
2344
|
*/
|
|
2471
2345
|
'slug'?: string | null;
|
|
2346
|
+
/**
|
|
2347
|
+
*
|
|
2348
|
+
* @type {boolean}
|
|
2349
|
+
* @memberof ContributorModel
|
|
2350
|
+
*/
|
|
2351
|
+
'confirmed'?: boolean;
|
|
2472
2352
|
/**
|
|
2473
2353
|
*
|
|
2474
2354
|
* @type {string}
|
|
2475
2355
|
* @memberof ContributorModel
|
|
2476
2356
|
*/
|
|
2477
|
-
'
|
|
2357
|
+
'hospitalId'?: string;
|
|
2478
2358
|
/**
|
|
2479
2359
|
*
|
|
2480
2360
|
* @type {string}
|
|
2481
2361
|
* @memberof ContributorModel
|
|
2482
2362
|
*/
|
|
2483
|
-
'
|
|
2363
|
+
'hospitalName'?: string | null;
|
|
2484
2364
|
/**
|
|
2485
2365
|
*
|
|
2486
2366
|
* @type {string}
|
|
2487
2367
|
* @memberof ContributorModel
|
|
2488
2368
|
*/
|
|
2489
|
-
'
|
|
2369
|
+
'hospitalSlug'?: string | null;
|
|
2490
2370
|
/**
|
|
2491
2371
|
*
|
|
2492
2372
|
* @type {string}
|
|
2493
2373
|
* @memberof ContributorModel
|
|
2494
2374
|
*/
|
|
2495
|
-
'
|
|
2375
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
2496
2376
|
/**
|
|
2497
2377
|
*
|
|
2498
2378
|
* @type {string}
|
|
2499
2379
|
* @memberof ContributorModel
|
|
2500
2380
|
*/
|
|
2501
|
-
'
|
|
2381
|
+
'email'?: string | null;
|
|
2502
2382
|
/**
|
|
2503
2383
|
*
|
|
2504
2384
|
* @type {string}
|
|
2505
2385
|
* @memberof ContributorModel
|
|
2506
2386
|
*/
|
|
2507
|
-
'
|
|
2387
|
+
'photo'?: string | null;
|
|
2508
2388
|
/**
|
|
2509
2389
|
*
|
|
2510
2390
|
* @type {string}
|
|
2511
2391
|
* @memberof ContributorModel
|
|
2512
2392
|
*/
|
|
2513
|
-
'
|
|
2393
|
+
'photoThumbnail'?: string | null;
|
|
2514
2394
|
/**
|
|
2515
2395
|
*
|
|
2516
2396
|
* @type {number}
|
|
@@ -2519,22 +2399,22 @@ export interface ContributorModel {
|
|
|
2519
2399
|
'order'?: number;
|
|
2520
2400
|
/**
|
|
2521
2401
|
*
|
|
2522
|
-
* @type {
|
|
2402
|
+
* @type {AuditableEntity}
|
|
2523
2403
|
* @memberof ContributorModel
|
|
2524
2404
|
*/
|
|
2525
|
-
'
|
|
2405
|
+
'auditableEntity'?: AuditableEntity;
|
|
2526
2406
|
/**
|
|
2527
2407
|
*
|
|
2528
|
-
* @type {
|
|
2408
|
+
* @type {string}
|
|
2529
2409
|
* @memberof ContributorModel
|
|
2530
2410
|
*/
|
|
2531
|
-
'
|
|
2411
|
+
'description'?: string | null;
|
|
2532
2412
|
/**
|
|
2533
2413
|
*
|
|
2534
2414
|
* @type {string}
|
|
2535
2415
|
* @memberof ContributorModel
|
|
2536
2416
|
*/
|
|
2537
|
-
'
|
|
2417
|
+
'overview'?: string | null;
|
|
2538
2418
|
/**
|
|
2539
2419
|
*
|
|
2540
2420
|
* @type {string}
|
|
@@ -2628,67 +2508,25 @@ export interface CountryItemModel {
|
|
|
2628
2508
|
* @type {string}
|
|
2629
2509
|
* @memberof CountryItemModel
|
|
2630
2510
|
*/
|
|
2631
|
-
'
|
|
2511
|
+
'languageCode'?: string | null;
|
|
2632
2512
|
/**
|
|
2633
2513
|
*
|
|
2634
2514
|
* @type {string}
|
|
2635
2515
|
* @memberof CountryItemModel
|
|
2636
2516
|
*/
|
|
2637
|
-
'
|
|
2517
|
+
'name'?: string | null;
|
|
2638
2518
|
/**
|
|
2639
2519
|
*
|
|
2640
2520
|
* @type {string}
|
|
2641
2521
|
* @memberof CountryItemModel
|
|
2642
2522
|
*/
|
|
2643
2523
|
'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
2524
|
/**
|
|
2681
2525
|
*
|
|
2682
2526
|
* @type {boolean}
|
|
2683
2527
|
* @memberof CountryItemModel
|
|
2684
2528
|
*/
|
|
2685
2529
|
'confirmed'?: boolean;
|
|
2686
|
-
/**
|
|
2687
|
-
*
|
|
2688
|
-
* @type {Array<MediaModel>}
|
|
2689
|
-
* @memberof CountryItemModel
|
|
2690
|
-
*/
|
|
2691
|
-
'medias'?: Array<MediaModel> | null;
|
|
2692
2530
|
/**
|
|
2693
2531
|
*
|
|
2694
2532
|
* @type {AuditableEntity}
|
|
@@ -2713,55 +2551,19 @@ export interface CountryModel {
|
|
|
2713
2551
|
* @type {string}
|
|
2714
2552
|
* @memberof CountryModel
|
|
2715
2553
|
*/
|
|
2716
|
-
'
|
|
2554
|
+
'languageCode'?: string | null;
|
|
2717
2555
|
/**
|
|
2718
2556
|
*
|
|
2719
2557
|
* @type {string}
|
|
2720
2558
|
* @memberof CountryModel
|
|
2721
2559
|
*/
|
|
2722
|
-
'
|
|
2560
|
+
'name'?: string | null;
|
|
2723
2561
|
/**
|
|
2724
2562
|
*
|
|
2725
2563
|
* @type {string}
|
|
2726
2564
|
* @memberof CountryModel
|
|
2727
2565
|
*/
|
|
2728
2566
|
'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
2567
|
/**
|
|
2766
2568
|
*
|
|
2767
2569
|
* @type {boolean}
|
|
@@ -2770,22 +2572,22 @@ export interface CountryModel {
|
|
|
2770
2572
|
'confirmed'?: boolean;
|
|
2771
2573
|
/**
|
|
2772
2574
|
*
|
|
2773
|
-
* @type {
|
|
2575
|
+
* @type {AuditableEntity}
|
|
2774
2576
|
* @memberof CountryModel
|
|
2775
2577
|
*/
|
|
2776
|
-
'
|
|
2578
|
+
'auditableEntity'?: AuditableEntity;
|
|
2777
2579
|
/**
|
|
2778
2580
|
*
|
|
2779
|
-
* @type {
|
|
2581
|
+
* @type {string}
|
|
2780
2582
|
* @memberof CountryModel
|
|
2781
2583
|
*/
|
|
2782
|
-
'
|
|
2584
|
+
'description'?: string | null;
|
|
2783
2585
|
/**
|
|
2784
2586
|
*
|
|
2785
2587
|
* @type {string}
|
|
2786
2588
|
* @memberof CountryModel
|
|
2787
2589
|
*/
|
|
2788
|
-
'
|
|
2590
|
+
'overview'?: string | null;
|
|
2789
2591
|
/**
|
|
2790
2592
|
*
|
|
2791
2593
|
* @type {string}
|
|
@@ -2798,6 +2600,12 @@ export interface CountryModel {
|
|
|
2798
2600
|
* @memberof CountryModel
|
|
2799
2601
|
*/
|
|
2800
2602
|
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
2603
|
+
/**
|
|
2604
|
+
*
|
|
2605
|
+
* @type {Array<MediaModel>}
|
|
2606
|
+
* @memberof CountryModel
|
|
2607
|
+
*/
|
|
2608
|
+
'medias'?: Array<MediaModel> | null;
|
|
2801
2609
|
}
|
|
2802
2610
|
/**
|
|
2803
2611
|
*
|
|
@@ -3212,61 +3020,43 @@ export interface DealItemModel {
|
|
|
3212
3020
|
* @type {string}
|
|
3213
3021
|
* @memberof DealItemModel
|
|
3214
3022
|
*/
|
|
3215
|
-
'
|
|
3216
|
-
/**
|
|
3217
|
-
*
|
|
3218
|
-
* @type {string}
|
|
3219
|
-
* @memberof DealItemModel
|
|
3220
|
-
*/
|
|
3221
|
-
'slug'?: string | null;
|
|
3023
|
+
'languageCode'?: string | null;
|
|
3222
3024
|
/**
|
|
3223
3025
|
*
|
|
3224
3026
|
* @type {string}
|
|
3225
3027
|
* @memberof DealItemModel
|
|
3226
3028
|
*/
|
|
3227
|
-
'
|
|
3029
|
+
'name'?: string | null;
|
|
3228
3030
|
/**
|
|
3229
3031
|
*
|
|
3230
3032
|
* @type {string}
|
|
3231
3033
|
* @memberof DealItemModel
|
|
3232
3034
|
*/
|
|
3233
|
-
'
|
|
3035
|
+
'slug'?: string | null;
|
|
3234
3036
|
/**
|
|
3235
3037
|
*
|
|
3236
|
-
* @type {
|
|
3038
|
+
* @type {boolean}
|
|
3237
3039
|
* @memberof DealItemModel
|
|
3238
3040
|
*/
|
|
3239
|
-
'
|
|
3041
|
+
'confirmed'?: boolean;
|
|
3240
3042
|
/**
|
|
3241
3043
|
*
|
|
3242
3044
|
* @type {string}
|
|
3243
3045
|
* @memberof DealItemModel
|
|
3244
3046
|
*/
|
|
3245
|
-
'
|
|
3047
|
+
'hospitalId'?: string;
|
|
3246
3048
|
/**
|
|
3247
3049
|
*
|
|
3248
3050
|
* @type {string}
|
|
3249
3051
|
* @memberof DealItemModel
|
|
3250
3052
|
*/
|
|
3251
|
-
'
|
|
3053
|
+
'hospitalName'?: string | null;
|
|
3252
3054
|
/**
|
|
3253
3055
|
*
|
|
3254
3056
|
* @type {string}
|
|
3255
3057
|
* @memberof DealItemModel
|
|
3256
3058
|
*/
|
|
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;
|
|
3059
|
+
'hospitalSlug'?: string | null;
|
|
3270
3060
|
/**
|
|
3271
3061
|
*
|
|
3272
3062
|
* @type {MarketingType}
|
|
@@ -3291,24 +3081,6 @@ export interface DealItemModel {
|
|
|
3291
3081
|
* @memberof DealItemModel
|
|
3292
3082
|
*/
|
|
3293
3083
|
'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
3084
|
/**
|
|
3313
3085
|
*
|
|
3314
3086
|
* @type {AuditableEntity}
|
|
@@ -3333,49 +3105,25 @@ export interface DealItemSimpleModel {
|
|
|
3333
3105
|
* @type {string}
|
|
3334
3106
|
* @memberof DealItemSimpleModel
|
|
3335
3107
|
*/
|
|
3336
|
-
'
|
|
3108
|
+
'languageCode'?: string | null;
|
|
3337
3109
|
/**
|
|
3338
3110
|
*
|
|
3339
3111
|
* @type {string}
|
|
3340
3112
|
* @memberof DealItemSimpleModel
|
|
3341
3113
|
*/
|
|
3342
|
-
'
|
|
3114
|
+
'name'?: string | null;
|
|
3343
3115
|
/**
|
|
3344
3116
|
*
|
|
3345
3117
|
* @type {string}
|
|
3346
3118
|
* @memberof DealItemSimpleModel
|
|
3347
3119
|
*/
|
|
3348
|
-
'
|
|
3120
|
+
'slug'?: string | null;
|
|
3349
3121
|
/**
|
|
3350
3122
|
*
|
|
3351
|
-
* @type {
|
|
3352
|
-
* @memberof DealItemSimpleModel
|
|
3353
|
-
*/
|
|
3354
|
-
'hospitalName'?: string | null;
|
|
3355
|
-
/**
|
|
3356
|
-
*
|
|
3357
|
-
* @type {string}
|
|
3358
|
-
* @memberof DealItemSimpleModel
|
|
3359
|
-
*/
|
|
3360
|
-
'hospitalSlug'?: string | null;
|
|
3361
|
-
/**
|
|
3362
|
-
*
|
|
3363
|
-
* @type {number}
|
|
3364
|
-
* @memberof DealItemSimpleModel
|
|
3365
|
-
*/
|
|
3366
|
-
'order'?: number;
|
|
3367
|
-
/**
|
|
3368
|
-
*
|
|
3369
|
-
* @type {boolean}
|
|
3123
|
+
* @type {boolean}
|
|
3370
3124
|
* @memberof DealItemSimpleModel
|
|
3371
3125
|
*/
|
|
3372
3126
|
'confirmed'?: boolean;
|
|
3373
|
-
/**
|
|
3374
|
-
*
|
|
3375
|
-
* @type {AuditableEntity}
|
|
3376
|
-
* @memberof DealItemSimpleModel
|
|
3377
|
-
*/
|
|
3378
|
-
'auditableEntity'?: AuditableEntity;
|
|
3379
3127
|
}
|
|
3380
3128
|
/**
|
|
3381
3129
|
*
|
|
@@ -3394,61 +3142,43 @@ export interface DealModel {
|
|
|
3394
3142
|
* @type {string}
|
|
3395
3143
|
* @memberof DealModel
|
|
3396
3144
|
*/
|
|
3397
|
-
'
|
|
3398
|
-
/**
|
|
3399
|
-
*
|
|
3400
|
-
* @type {string}
|
|
3401
|
-
* @memberof DealModel
|
|
3402
|
-
*/
|
|
3403
|
-
'slug'?: string | null;
|
|
3145
|
+
'languageCode'?: string | null;
|
|
3404
3146
|
/**
|
|
3405
3147
|
*
|
|
3406
3148
|
* @type {string}
|
|
3407
3149
|
* @memberof DealModel
|
|
3408
3150
|
*/
|
|
3409
|
-
'
|
|
3151
|
+
'name'?: string | null;
|
|
3410
3152
|
/**
|
|
3411
3153
|
*
|
|
3412
3154
|
* @type {string}
|
|
3413
3155
|
* @memberof DealModel
|
|
3414
3156
|
*/
|
|
3415
|
-
'
|
|
3157
|
+
'slug'?: string | null;
|
|
3416
3158
|
/**
|
|
3417
3159
|
*
|
|
3418
|
-
* @type {
|
|
3160
|
+
* @type {boolean}
|
|
3419
3161
|
* @memberof DealModel
|
|
3420
3162
|
*/
|
|
3421
|
-
'
|
|
3163
|
+
'confirmed'?: boolean;
|
|
3422
3164
|
/**
|
|
3423
3165
|
*
|
|
3424
3166
|
* @type {string}
|
|
3425
3167
|
* @memberof DealModel
|
|
3426
3168
|
*/
|
|
3427
|
-
'
|
|
3169
|
+
'hospitalId'?: string;
|
|
3428
3170
|
/**
|
|
3429
3171
|
*
|
|
3430
3172
|
* @type {string}
|
|
3431
3173
|
* @memberof DealModel
|
|
3432
3174
|
*/
|
|
3433
|
-
'
|
|
3175
|
+
'hospitalName'?: string | null;
|
|
3434
3176
|
/**
|
|
3435
3177
|
*
|
|
3436
3178
|
* @type {string}
|
|
3437
3179
|
* @memberof DealModel
|
|
3438
3180
|
*/
|
|
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;
|
|
3181
|
+
'hospitalSlug'?: string | null;
|
|
3452
3182
|
/**
|
|
3453
3183
|
*
|
|
3454
3184
|
* @type {MarketingType}
|
|
@@ -3475,34 +3205,34 @@ export interface DealModel {
|
|
|
3475
3205
|
'order'?: number;
|
|
3476
3206
|
/**
|
|
3477
3207
|
*
|
|
3478
|
-
* @type {
|
|
3208
|
+
* @type {AuditableEntity}
|
|
3479
3209
|
* @memberof DealModel
|
|
3480
3210
|
*/
|
|
3481
|
-
'
|
|
3211
|
+
'auditableEntity'?: AuditableEntity;
|
|
3482
3212
|
/**
|
|
3483
3213
|
*
|
|
3484
|
-
* @type {
|
|
3214
|
+
* @type {string}
|
|
3485
3215
|
* @memberof DealModel
|
|
3486
3216
|
*/
|
|
3487
|
-
'
|
|
3217
|
+
'description'?: string | null;
|
|
3488
3218
|
/**
|
|
3489
3219
|
*
|
|
3490
|
-
* @type {
|
|
3220
|
+
* @type {string}
|
|
3491
3221
|
* @memberof DealModel
|
|
3492
3222
|
*/
|
|
3493
|
-
'
|
|
3223
|
+
'overview'?: string | null;
|
|
3494
3224
|
/**
|
|
3495
3225
|
*
|
|
3496
|
-
* @type {
|
|
3226
|
+
* @type {string}
|
|
3497
3227
|
* @memberof DealModel
|
|
3498
3228
|
*/
|
|
3499
|
-
'
|
|
3229
|
+
'content'?: string | null;
|
|
3500
3230
|
/**
|
|
3501
3231
|
*
|
|
3502
|
-
* @type {
|
|
3232
|
+
* @type {number}
|
|
3503
3233
|
* @memberof DealModel
|
|
3504
3234
|
*/
|
|
3505
|
-
'
|
|
3235
|
+
'serviceDuration'?: number;
|
|
3506
3236
|
/**
|
|
3507
3237
|
*
|
|
3508
3238
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -3527,49 +3257,49 @@ export interface DealPackageItemModel {
|
|
|
3527
3257
|
* @type {string}
|
|
3528
3258
|
* @memberof DealPackageItemModel
|
|
3529
3259
|
*/
|
|
3530
|
-
'
|
|
3260
|
+
'languageCode'?: string | null;
|
|
3531
3261
|
/**
|
|
3532
3262
|
*
|
|
3533
3263
|
* @type {string}
|
|
3534
3264
|
* @memberof DealPackageItemModel
|
|
3535
3265
|
*/
|
|
3536
|
-
'
|
|
3266
|
+
'dealId'?: string;
|
|
3537
3267
|
/**
|
|
3538
3268
|
*
|
|
3539
3269
|
* @type {string}
|
|
3540
3270
|
* @memberof DealPackageItemModel
|
|
3541
3271
|
*/
|
|
3542
|
-
'
|
|
3272
|
+
'dealName'?: string | null;
|
|
3543
3273
|
/**
|
|
3544
3274
|
*
|
|
3545
3275
|
* @type {string}
|
|
3546
3276
|
* @memberof DealPackageItemModel
|
|
3547
3277
|
*/
|
|
3548
|
-
'
|
|
3278
|
+
'dealSlug'?: string | null;
|
|
3549
3279
|
/**
|
|
3550
3280
|
*
|
|
3551
|
-
* @type {
|
|
3281
|
+
* @type {string}
|
|
3552
3282
|
* @memberof DealPackageItemModel
|
|
3553
3283
|
*/
|
|
3554
|
-
'
|
|
3284
|
+
'hospitalId'?: string;
|
|
3555
3285
|
/**
|
|
3556
3286
|
*
|
|
3557
3287
|
* @type {string}
|
|
3558
3288
|
* @memberof DealPackageItemModel
|
|
3559
3289
|
*/
|
|
3560
|
-
'
|
|
3290
|
+
'hospitalName'?: string | null;
|
|
3561
3291
|
/**
|
|
3562
3292
|
*
|
|
3563
3293
|
* @type {string}
|
|
3564
3294
|
* @memberof DealPackageItemModel
|
|
3565
3295
|
*/
|
|
3566
|
-
'
|
|
3296
|
+
'hospitalSlug'?: string | null;
|
|
3567
3297
|
/**
|
|
3568
3298
|
*
|
|
3569
|
-
* @type {
|
|
3299
|
+
* @type {RefundPolicy}
|
|
3570
3300
|
* @memberof DealPackageItemModel
|
|
3571
3301
|
*/
|
|
3572
|
-
'
|
|
3302
|
+
'refundPolicy'?: RefundPolicy;
|
|
3573
3303
|
/**
|
|
3574
3304
|
*
|
|
3575
3305
|
* @type {string}
|
|
@@ -3606,49 +3336,49 @@ export interface DealPackageModel {
|
|
|
3606
3336
|
* @type {string}
|
|
3607
3337
|
* @memberof DealPackageModel
|
|
3608
3338
|
*/
|
|
3609
|
-
'
|
|
3339
|
+
'languageCode'?: string | null;
|
|
3610
3340
|
/**
|
|
3611
3341
|
*
|
|
3612
3342
|
* @type {string}
|
|
3613
3343
|
* @memberof DealPackageModel
|
|
3614
3344
|
*/
|
|
3615
|
-
'
|
|
3345
|
+
'dealId'?: string;
|
|
3616
3346
|
/**
|
|
3617
3347
|
*
|
|
3618
3348
|
* @type {string}
|
|
3619
3349
|
* @memberof DealPackageModel
|
|
3620
3350
|
*/
|
|
3621
|
-
'
|
|
3351
|
+
'dealName'?: string | null;
|
|
3622
3352
|
/**
|
|
3623
3353
|
*
|
|
3624
3354
|
* @type {string}
|
|
3625
3355
|
* @memberof DealPackageModel
|
|
3626
3356
|
*/
|
|
3627
|
-
'
|
|
3357
|
+
'dealSlug'?: string | null;
|
|
3628
3358
|
/**
|
|
3629
3359
|
*
|
|
3630
|
-
* @type {
|
|
3360
|
+
* @type {string}
|
|
3631
3361
|
* @memberof DealPackageModel
|
|
3632
3362
|
*/
|
|
3633
|
-
'
|
|
3363
|
+
'hospitalId'?: string;
|
|
3634
3364
|
/**
|
|
3635
3365
|
*
|
|
3636
3366
|
* @type {string}
|
|
3637
3367
|
* @memberof DealPackageModel
|
|
3638
3368
|
*/
|
|
3639
|
-
'
|
|
3369
|
+
'hospitalName'?: string | null;
|
|
3640
3370
|
/**
|
|
3641
3371
|
*
|
|
3642
3372
|
* @type {string}
|
|
3643
3373
|
* @memberof DealPackageModel
|
|
3644
3374
|
*/
|
|
3645
|
-
'
|
|
3375
|
+
'hospitalSlug'?: string | null;
|
|
3646
3376
|
/**
|
|
3647
3377
|
*
|
|
3648
|
-
* @type {
|
|
3378
|
+
* @type {RefundPolicy}
|
|
3649
3379
|
* @memberof DealPackageModel
|
|
3650
3380
|
*/
|
|
3651
|
-
'
|
|
3381
|
+
'refundPolicy'?: RefundPolicy;
|
|
3652
3382
|
/**
|
|
3653
3383
|
*
|
|
3654
3384
|
* @type {string}
|
|
@@ -3667,6 +3397,24 @@ export interface DealPackageModel {
|
|
|
3667
3397
|
* @memberof DealPackageModel
|
|
3668
3398
|
*/
|
|
3669
3399
|
'auditableEntity'?: AuditableEntity;
|
|
3400
|
+
/**
|
|
3401
|
+
*
|
|
3402
|
+
* @type {string}
|
|
3403
|
+
* @memberof DealPackageModel
|
|
3404
|
+
*/
|
|
3405
|
+
'additionalServices'?: string | null;
|
|
3406
|
+
/**
|
|
3407
|
+
*
|
|
3408
|
+
* @type {string}
|
|
3409
|
+
* @memberof DealPackageModel
|
|
3410
|
+
*/
|
|
3411
|
+
'accomodation'?: string | null;
|
|
3412
|
+
/**
|
|
3413
|
+
*
|
|
3414
|
+
* @type {string}
|
|
3415
|
+
* @memberof DealPackageModel
|
|
3416
|
+
*/
|
|
3417
|
+
'transfer'?: string | null;
|
|
3670
3418
|
}
|
|
3671
3419
|
/**
|
|
3672
3420
|
*
|
|
@@ -3693,6 +3441,12 @@ export interface DealPackagesModel {
|
|
|
3693
3441
|
* @interface DealServiceItemModel
|
|
3694
3442
|
*/
|
|
3695
3443
|
export interface DealServiceItemModel {
|
|
3444
|
+
/**
|
|
3445
|
+
*
|
|
3446
|
+
* @type {string}
|
|
3447
|
+
* @memberof DealServiceItemModel
|
|
3448
|
+
*/
|
|
3449
|
+
'languageCode'?: string | null;
|
|
3696
3450
|
/**
|
|
3697
3451
|
*
|
|
3698
3452
|
* @type {string}
|
|
@@ -3705,6 +3459,12 @@ export interface DealServiceItemModel {
|
|
|
3705
3459
|
* @memberof DealServiceItemModel
|
|
3706
3460
|
*/
|
|
3707
3461
|
'dealName'?: string | null;
|
|
3462
|
+
/**
|
|
3463
|
+
*
|
|
3464
|
+
* @type {string}
|
|
3465
|
+
* @memberof DealServiceItemModel
|
|
3466
|
+
*/
|
|
3467
|
+
'dealSlug'?: string | null;
|
|
3708
3468
|
/**
|
|
3709
3469
|
*
|
|
3710
3470
|
* @type {string}
|
|
@@ -3717,6 +3477,12 @@ export interface DealServiceItemModel {
|
|
|
3717
3477
|
* @memberof DealServiceItemModel
|
|
3718
3478
|
*/
|
|
3719
3479
|
'serviceName'?: string | null;
|
|
3480
|
+
/**
|
|
3481
|
+
*
|
|
3482
|
+
* @type {string}
|
|
3483
|
+
* @memberof DealServiceItemModel
|
|
3484
|
+
*/
|
|
3485
|
+
'serviceSlug'?: string | null;
|
|
3720
3486
|
/**
|
|
3721
3487
|
*
|
|
3722
3488
|
* @type {number}
|
|
@@ -3729,168 +3495,342 @@ export interface DealServiceItemModel {
|
|
|
3729
3495
|
* @export
|
|
3730
3496
|
* @interface DealServiceModel
|
|
3731
3497
|
*/
|
|
3732
|
-
export interface DealServiceModel {
|
|
3498
|
+
export interface DealServiceModel {
|
|
3499
|
+
/**
|
|
3500
|
+
*
|
|
3501
|
+
* @type {string}
|
|
3502
|
+
* @memberof DealServiceModel
|
|
3503
|
+
*/
|
|
3504
|
+
'languageCode'?: string | null;
|
|
3505
|
+
/**
|
|
3506
|
+
*
|
|
3507
|
+
* @type {string}
|
|
3508
|
+
* @memberof DealServiceModel
|
|
3509
|
+
*/
|
|
3510
|
+
'dealId'?: string;
|
|
3511
|
+
/**
|
|
3512
|
+
*
|
|
3513
|
+
* @type {string}
|
|
3514
|
+
* @memberof DealServiceModel
|
|
3515
|
+
*/
|
|
3516
|
+
'dealName'?: string | null;
|
|
3517
|
+
/**
|
|
3518
|
+
*
|
|
3519
|
+
* @type {string}
|
|
3520
|
+
* @memberof DealServiceModel
|
|
3521
|
+
*/
|
|
3522
|
+
'dealSlug'?: string | null;
|
|
3523
|
+
/**
|
|
3524
|
+
*
|
|
3525
|
+
* @type {string}
|
|
3526
|
+
* @memberof DealServiceModel
|
|
3527
|
+
*/
|
|
3528
|
+
'serviceId'?: string;
|
|
3529
|
+
/**
|
|
3530
|
+
*
|
|
3531
|
+
* @type {string}
|
|
3532
|
+
* @memberof DealServiceModel
|
|
3533
|
+
*/
|
|
3534
|
+
'serviceName'?: string | null;
|
|
3535
|
+
/**
|
|
3536
|
+
*
|
|
3537
|
+
* @type {string}
|
|
3538
|
+
* @memberof DealServiceModel
|
|
3539
|
+
*/
|
|
3540
|
+
'serviceSlug'?: string | null;
|
|
3541
|
+
/**
|
|
3542
|
+
*
|
|
3543
|
+
* @type {number}
|
|
3544
|
+
* @memberof DealServiceModel
|
|
3545
|
+
*/
|
|
3546
|
+
'order'?: number;
|
|
3547
|
+
}
|
|
3548
|
+
/**
|
|
3549
|
+
*
|
|
3550
|
+
* @export
|
|
3551
|
+
* @interface DealServicesModel
|
|
3552
|
+
*/
|
|
3553
|
+
export interface DealServicesModel {
|
|
3554
|
+
/**
|
|
3555
|
+
*
|
|
3556
|
+
* @type {Array<DealServiceItemModel>}
|
|
3557
|
+
* @memberof DealServicesModel
|
|
3558
|
+
*/
|
|
3559
|
+
'items'?: Array<DealServiceItemModel> | null;
|
|
3560
|
+
/**
|
|
3561
|
+
*
|
|
3562
|
+
* @type {PagedListMetaData}
|
|
3563
|
+
* @memberof DealServicesModel
|
|
3564
|
+
*/
|
|
3565
|
+
'metaData'?: PagedListMetaData;
|
|
3566
|
+
}
|
|
3567
|
+
/**
|
|
3568
|
+
*
|
|
3569
|
+
* @export
|
|
3570
|
+
* @interface DealsModel
|
|
3571
|
+
*/
|
|
3572
|
+
export interface DealsModel {
|
|
3573
|
+
/**
|
|
3574
|
+
*
|
|
3575
|
+
* @type {Array<DealItemModel>}
|
|
3576
|
+
* @memberof DealsModel
|
|
3577
|
+
*/
|
|
3578
|
+
'items'?: Array<DealItemModel> | null;
|
|
3579
|
+
/**
|
|
3580
|
+
*
|
|
3581
|
+
* @type {PagedListMetaData}
|
|
3582
|
+
* @memberof DealsModel
|
|
3583
|
+
*/
|
|
3584
|
+
'metaData'?: PagedListMetaData;
|
|
3585
|
+
}
|
|
3586
|
+
/**
|
|
3587
|
+
*
|
|
3588
|
+
* @export
|
|
3589
|
+
* @interface DealsSimpleModel
|
|
3590
|
+
*/
|
|
3591
|
+
export interface DealsSimpleModel {
|
|
3592
|
+
/**
|
|
3593
|
+
*
|
|
3594
|
+
* @type {Array<DealItemSimpleModel>}
|
|
3595
|
+
* @memberof DealsSimpleModel
|
|
3596
|
+
*/
|
|
3597
|
+
'items'?: Array<DealItemSimpleModel> | null;
|
|
3598
|
+
/**
|
|
3599
|
+
*
|
|
3600
|
+
* @type {PagedListMetaData}
|
|
3601
|
+
* @memberof DealsSimpleModel
|
|
3602
|
+
*/
|
|
3603
|
+
'metaData'?: PagedListMetaData;
|
|
3604
|
+
}
|
|
3605
|
+
/**
|
|
3606
|
+
*
|
|
3607
|
+
* @export
|
|
3608
|
+
* @interface DoctorAffiliationItemModel
|
|
3609
|
+
*/
|
|
3610
|
+
export interface DoctorAffiliationItemModel {
|
|
3611
|
+
/**
|
|
3612
|
+
*
|
|
3613
|
+
* @type {string}
|
|
3614
|
+
* @memberof DoctorAffiliationItemModel
|
|
3615
|
+
*/
|
|
3616
|
+
'id'?: string;
|
|
3617
|
+
/**
|
|
3618
|
+
*
|
|
3619
|
+
* @type {string}
|
|
3620
|
+
* @memberof DoctorAffiliationItemModel
|
|
3621
|
+
*/
|
|
3622
|
+
'hospitalId'?: string;
|
|
3623
|
+
/**
|
|
3624
|
+
*
|
|
3625
|
+
* @type {string}
|
|
3626
|
+
* @memberof DoctorAffiliationItemModel
|
|
3627
|
+
*/
|
|
3628
|
+
'hospitalName'?: string | null;
|
|
3629
|
+
/**
|
|
3630
|
+
*
|
|
3631
|
+
* @type {string}
|
|
3632
|
+
* @memberof DoctorAffiliationItemModel
|
|
3633
|
+
*/
|
|
3634
|
+
'hospitalSlug'?: string | null;
|
|
3635
|
+
/**
|
|
3636
|
+
*
|
|
3637
|
+
* @type {string}
|
|
3638
|
+
* @memberof DoctorAffiliationItemModel
|
|
3639
|
+
*/
|
|
3640
|
+
'doctorId'?: string;
|
|
3641
|
+
/**
|
|
3642
|
+
*
|
|
3643
|
+
* @type {string}
|
|
3644
|
+
* @memberof DoctorAffiliationItemModel
|
|
3645
|
+
*/
|
|
3646
|
+
'languageCode'?: string | null;
|
|
3647
|
+
/**
|
|
3648
|
+
*
|
|
3649
|
+
* @type {string}
|
|
3650
|
+
* @memberof DoctorAffiliationItemModel
|
|
3651
|
+
*/
|
|
3652
|
+
'name'?: string | null;
|
|
3653
|
+
/**
|
|
3654
|
+
*
|
|
3655
|
+
* @type {string}
|
|
3656
|
+
* @memberof DoctorAffiliationItemModel
|
|
3657
|
+
*/
|
|
3658
|
+
'slug'?: string | null;
|
|
3659
|
+
/**
|
|
3660
|
+
*
|
|
3661
|
+
* @type {boolean}
|
|
3662
|
+
* @memberof DoctorAffiliationItemModel
|
|
3663
|
+
*/
|
|
3664
|
+
'confirmed'?: boolean;
|
|
3665
|
+
/**
|
|
3666
|
+
*
|
|
3667
|
+
* @type {string}
|
|
3668
|
+
* @memberof DoctorAffiliationItemModel
|
|
3669
|
+
*/
|
|
3670
|
+
'photo'?: string | null;
|
|
3671
|
+
/**
|
|
3672
|
+
*
|
|
3673
|
+
* @type {string}
|
|
3674
|
+
* @memberof DoctorAffiliationItemModel
|
|
3675
|
+
*/
|
|
3676
|
+
'photoThumbnail'?: string | null;
|
|
3677
|
+
/**
|
|
3678
|
+
*
|
|
3679
|
+
* @type {boolean}
|
|
3680
|
+
* @memberof DoctorAffiliationItemModel
|
|
3681
|
+
*/
|
|
3682
|
+
'consultationEnabled'?: boolean | null;
|
|
3683
|
+
/**
|
|
3684
|
+
*
|
|
3685
|
+
* @type {number}
|
|
3686
|
+
* @memberof DoctorAffiliationItemModel
|
|
3687
|
+
*/
|
|
3688
|
+
'consultationFee'?: number | null;
|
|
3689
|
+
/**
|
|
3690
|
+
*
|
|
3691
|
+
* @type {number}
|
|
3692
|
+
* @memberof DoctorAffiliationItemModel
|
|
3693
|
+
*/
|
|
3694
|
+
'order'?: number;
|
|
3695
|
+
}
|
|
3696
|
+
/**
|
|
3697
|
+
*
|
|
3698
|
+
* @export
|
|
3699
|
+
* @interface DoctorAffiliationModel
|
|
3700
|
+
*/
|
|
3701
|
+
export interface DoctorAffiliationModel {
|
|
3733
3702
|
/**
|
|
3734
3703
|
*
|
|
3735
3704
|
* @type {string}
|
|
3736
|
-
* @memberof
|
|
3705
|
+
* @memberof DoctorAffiliationModel
|
|
3737
3706
|
*/
|
|
3738
|
-
'
|
|
3707
|
+
'id'?: string;
|
|
3739
3708
|
/**
|
|
3740
3709
|
*
|
|
3741
3710
|
* @type {string}
|
|
3742
|
-
* @memberof
|
|
3711
|
+
* @memberof DoctorAffiliationModel
|
|
3743
3712
|
*/
|
|
3744
|
-
'
|
|
3713
|
+
'hospitalId'?: string;
|
|
3745
3714
|
/**
|
|
3746
3715
|
*
|
|
3747
3716
|
* @type {string}
|
|
3748
|
-
* @memberof
|
|
3717
|
+
* @memberof DoctorAffiliationModel
|
|
3749
3718
|
*/
|
|
3750
|
-
'
|
|
3719
|
+
'hospitalName'?: string | null;
|
|
3751
3720
|
/**
|
|
3752
3721
|
*
|
|
3753
3722
|
* @type {string}
|
|
3754
|
-
* @memberof
|
|
3723
|
+
* @memberof DoctorAffiliationModel
|
|
3755
3724
|
*/
|
|
3756
|
-
'
|
|
3725
|
+
'hospitalSlug'?: string | null;
|
|
3757
3726
|
/**
|
|
3758
3727
|
*
|
|
3759
|
-
* @type {
|
|
3760
|
-
* @memberof
|
|
3728
|
+
* @type {string}
|
|
3729
|
+
* @memberof DoctorAffiliationModel
|
|
3761
3730
|
*/
|
|
3762
|
-
'
|
|
3763
|
-
}
|
|
3764
|
-
/**
|
|
3765
|
-
*
|
|
3766
|
-
* @export
|
|
3767
|
-
* @interface DealServicesModel
|
|
3768
|
-
*/
|
|
3769
|
-
export interface DealServicesModel {
|
|
3731
|
+
'doctorId'?: string;
|
|
3770
3732
|
/**
|
|
3771
3733
|
*
|
|
3772
|
-
* @type {
|
|
3773
|
-
* @memberof
|
|
3734
|
+
* @type {string}
|
|
3735
|
+
* @memberof DoctorAffiliationModel
|
|
3774
3736
|
*/
|
|
3775
|
-
'
|
|
3737
|
+
'languageCode'?: string | null;
|
|
3776
3738
|
/**
|
|
3777
3739
|
*
|
|
3778
|
-
* @type {
|
|
3779
|
-
* @memberof
|
|
3740
|
+
* @type {string}
|
|
3741
|
+
* @memberof DoctorAffiliationModel
|
|
3780
3742
|
*/
|
|
3781
|
-
'
|
|
3782
|
-
}
|
|
3783
|
-
/**
|
|
3784
|
-
*
|
|
3785
|
-
* @export
|
|
3786
|
-
* @interface DealsModel
|
|
3787
|
-
*/
|
|
3788
|
-
export interface DealsModel {
|
|
3743
|
+
'name'?: string | null;
|
|
3789
3744
|
/**
|
|
3790
3745
|
*
|
|
3791
|
-
* @type {
|
|
3792
|
-
* @memberof
|
|
3746
|
+
* @type {string}
|
|
3747
|
+
* @memberof DoctorAffiliationModel
|
|
3793
3748
|
*/
|
|
3794
|
-
'
|
|
3749
|
+
'slug'?: string | null;
|
|
3795
3750
|
/**
|
|
3796
3751
|
*
|
|
3797
|
-
* @type {
|
|
3798
|
-
* @memberof
|
|
3752
|
+
* @type {boolean}
|
|
3753
|
+
* @memberof DoctorAffiliationModel
|
|
3799
3754
|
*/
|
|
3800
|
-
'
|
|
3801
|
-
}
|
|
3802
|
-
/**
|
|
3803
|
-
*
|
|
3804
|
-
* @export
|
|
3805
|
-
* @interface DealsSimpleModel
|
|
3806
|
-
*/
|
|
3807
|
-
export interface DealsSimpleModel {
|
|
3755
|
+
'confirmed'?: boolean;
|
|
3808
3756
|
/**
|
|
3809
3757
|
*
|
|
3810
|
-
* @type {
|
|
3811
|
-
* @memberof
|
|
3758
|
+
* @type {string}
|
|
3759
|
+
* @memberof DoctorAffiliationModel
|
|
3812
3760
|
*/
|
|
3813
|
-
'
|
|
3761
|
+
'photo'?: string | null;
|
|
3814
3762
|
/**
|
|
3815
3763
|
*
|
|
3816
|
-
* @type {
|
|
3817
|
-
* @memberof
|
|
3764
|
+
* @type {string}
|
|
3765
|
+
* @memberof DoctorAffiliationModel
|
|
3818
3766
|
*/
|
|
3819
|
-
'
|
|
3820
|
-
}
|
|
3821
|
-
/**
|
|
3822
|
-
*
|
|
3823
|
-
* @export
|
|
3824
|
-
* @interface DoctorAffiliationItemModel
|
|
3825
|
-
*/
|
|
3826
|
-
export interface DoctorAffiliationItemModel {
|
|
3767
|
+
'photoThumbnail'?: string | null;
|
|
3827
3768
|
/**
|
|
3828
3769
|
*
|
|
3829
|
-
* @type {
|
|
3830
|
-
* @memberof
|
|
3770
|
+
* @type {boolean}
|
|
3771
|
+
* @memberof DoctorAffiliationModel
|
|
3831
3772
|
*/
|
|
3832
|
-
'
|
|
3773
|
+
'consultationEnabled'?: boolean | null;
|
|
3833
3774
|
/**
|
|
3834
3775
|
*
|
|
3835
|
-
* @type {
|
|
3836
|
-
* @memberof
|
|
3776
|
+
* @type {number}
|
|
3777
|
+
* @memberof DoctorAffiliationModel
|
|
3837
3778
|
*/
|
|
3838
|
-
'
|
|
3779
|
+
'consultationFee'?: number | null;
|
|
3839
3780
|
/**
|
|
3840
3781
|
*
|
|
3841
|
-
* @type {
|
|
3842
|
-
* @memberof
|
|
3782
|
+
* @type {number}
|
|
3783
|
+
* @memberof DoctorAffiliationModel
|
|
3843
3784
|
*/
|
|
3844
|
-
'
|
|
3785
|
+
'order'?: number;
|
|
3845
3786
|
/**
|
|
3846
3787
|
*
|
|
3847
3788
|
* @type {string}
|
|
3848
|
-
* @memberof
|
|
3789
|
+
* @memberof DoctorAffiliationModel
|
|
3849
3790
|
*/
|
|
3850
|
-
'
|
|
3791
|
+
'description'?: string | null;
|
|
3851
3792
|
/**
|
|
3852
3793
|
*
|
|
3853
|
-
* @type {
|
|
3854
|
-
* @memberof
|
|
3794
|
+
* @type {string}
|
|
3795
|
+
* @memberof DoctorAffiliationModel
|
|
3855
3796
|
*/
|
|
3856
|
-
'
|
|
3857
|
-
}
|
|
3858
|
-
/**
|
|
3859
|
-
*
|
|
3860
|
-
* @export
|
|
3861
|
-
* @interface DoctorAffiliationModel
|
|
3862
|
-
*/
|
|
3863
|
-
export interface DoctorAffiliationModel {
|
|
3797
|
+
'overview'?: string | null;
|
|
3864
3798
|
/**
|
|
3865
3799
|
*
|
|
3866
3800
|
* @type {string}
|
|
3867
3801
|
* @memberof DoctorAffiliationModel
|
|
3868
3802
|
*/
|
|
3869
|
-
'
|
|
3803
|
+
'content'?: string | null;
|
|
3870
3804
|
/**
|
|
3871
3805
|
*
|
|
3872
3806
|
* @type {string}
|
|
3873
3807
|
* @memberof DoctorAffiliationModel
|
|
3874
3808
|
*/
|
|
3875
|
-
'
|
|
3809
|
+
'background'?: string | null;
|
|
3876
3810
|
/**
|
|
3877
3811
|
*
|
|
3878
3812
|
* @type {string}
|
|
3879
3813
|
* @memberof DoctorAffiliationModel
|
|
3880
3814
|
*/
|
|
3881
|
-
'
|
|
3815
|
+
'backgroundThumbnail'?: string | null;
|
|
3882
3816
|
/**
|
|
3883
3817
|
*
|
|
3884
3818
|
* @type {string}
|
|
3885
3819
|
* @memberof DoctorAffiliationModel
|
|
3886
3820
|
*/
|
|
3887
|
-
'
|
|
3821
|
+
'customStyle'?: string | null;
|
|
3888
3822
|
/**
|
|
3889
3823
|
*
|
|
3890
|
-
* @type {
|
|
3824
|
+
* @type {Array<LocalizedUrlModel>}
|
|
3891
3825
|
* @memberof DoctorAffiliationModel
|
|
3892
3826
|
*/
|
|
3893
|
-
'
|
|
3827
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
3828
|
+
/**
|
|
3829
|
+
*
|
|
3830
|
+
* @type {Array<MediaModel>}
|
|
3831
|
+
* @memberof DoctorAffiliationModel
|
|
3832
|
+
*/
|
|
3833
|
+
'medias'?: Array<MediaModel> | null;
|
|
3894
3834
|
}
|
|
3895
3835
|
/**
|
|
3896
3836
|
*
|
|
@@ -4175,12 +4115,6 @@ export interface DoctorItemModel {
|
|
|
4175
4115
|
* @memberof DoctorItemModel
|
|
4176
4116
|
*/
|
|
4177
4117
|
'firstName'?: string | null;
|
|
4178
|
-
/**
|
|
4179
|
-
*
|
|
4180
|
-
* @type {string}
|
|
4181
|
-
* @memberof DoctorItemModel
|
|
4182
|
-
*/
|
|
4183
|
-
'middleName'?: string | null;
|
|
4184
4118
|
/**
|
|
4185
4119
|
*
|
|
4186
4120
|
* @type {string}
|
|
@@ -4193,18 +4127,6 @@ export interface DoctorItemModel {
|
|
|
4193
4127
|
* @memberof DoctorItemModel
|
|
4194
4128
|
*/
|
|
4195
4129
|
'fullName'?: string | null;
|
|
4196
|
-
/**
|
|
4197
|
-
*
|
|
4198
|
-
* @type {string}
|
|
4199
|
-
* @memberof DoctorItemModel
|
|
4200
|
-
*/
|
|
4201
|
-
'slug'?: string | null;
|
|
4202
|
-
/**
|
|
4203
|
-
*
|
|
4204
|
-
* @type {boolean}
|
|
4205
|
-
* @memberof DoctorItemModel
|
|
4206
|
-
*/
|
|
4207
|
-
'confirmed'?: boolean;
|
|
4208
4130
|
/**
|
|
4209
4131
|
*
|
|
4210
4132
|
* @type {string}
|
|
@@ -4353,12 +4275,6 @@ export interface DoctorModel {
|
|
|
4353
4275
|
* @memberof DoctorModel
|
|
4354
4276
|
*/
|
|
4355
4277
|
'firstName'?: string | null;
|
|
4356
|
-
/**
|
|
4357
|
-
*
|
|
4358
|
-
* @type {string}
|
|
4359
|
-
* @memberof DoctorModel
|
|
4360
|
-
*/
|
|
4361
|
-
'middleName'?: string | null;
|
|
4362
4278
|
/**
|
|
4363
4279
|
*
|
|
4364
4280
|
* @type {string}
|
|
@@ -4371,18 +4287,6 @@ export interface DoctorModel {
|
|
|
4371
4287
|
* @memberof DoctorModel
|
|
4372
4288
|
*/
|
|
4373
4289
|
'fullName'?: string | null;
|
|
4374
|
-
/**
|
|
4375
|
-
*
|
|
4376
|
-
* @type {string}
|
|
4377
|
-
* @memberof DoctorModel
|
|
4378
|
-
*/
|
|
4379
|
-
'slug'?: string | null;
|
|
4380
|
-
/**
|
|
4381
|
-
*
|
|
4382
|
-
* @type {boolean}
|
|
4383
|
-
* @memberof DoctorModel
|
|
4384
|
-
*/
|
|
4385
|
-
'confirmed'?: boolean;
|
|
4386
4290
|
/**
|
|
4387
4291
|
*
|
|
4388
4292
|
* @type {string}
|
|
@@ -4639,42 +4543,18 @@ export interface DoctorSimpleItemModel {
|
|
|
4639
4543
|
* @memberof DoctorSimpleItemModel
|
|
4640
4544
|
*/
|
|
4641
4545
|
'id'?: string;
|
|
4642
|
-
/**
|
|
4643
|
-
*
|
|
4644
|
-
* @type {string}
|
|
4645
|
-
* @memberof DoctorSimpleItemModel
|
|
4646
|
-
*/
|
|
4647
|
-
'languageCode'?: string | null;
|
|
4648
4546
|
/**
|
|
4649
4547
|
*
|
|
4650
4548
|
* @type {string}
|
|
4651
4549
|
* @memberof DoctorSimpleItemModel
|
|
4652
4550
|
*/
|
|
4653
4551
|
'firstName'?: string | null;
|
|
4654
|
-
/**
|
|
4655
|
-
*
|
|
4656
|
-
* @type {string}
|
|
4657
|
-
* @memberof DoctorSimpleItemModel
|
|
4658
|
-
*/
|
|
4659
|
-
'middleName'?: string | null;
|
|
4660
4552
|
/**
|
|
4661
4553
|
*
|
|
4662
4554
|
* @type {string}
|
|
4663
4555
|
* @memberof DoctorSimpleItemModel
|
|
4664
4556
|
*/
|
|
4665
4557
|
'lastName'?: string | null;
|
|
4666
|
-
/**
|
|
4667
|
-
*
|
|
4668
|
-
* @type {string}
|
|
4669
|
-
* @memberof DoctorSimpleItemModel
|
|
4670
|
-
*/
|
|
4671
|
-
'fullName'?: string | null;
|
|
4672
|
-
/**
|
|
4673
|
-
*
|
|
4674
|
-
* @type {string}
|
|
4675
|
-
* @memberof DoctorSimpleItemModel
|
|
4676
|
-
*/
|
|
4677
|
-
'slug'?: string | null;
|
|
4678
4558
|
}
|
|
4679
4559
|
/**
|
|
4680
4560
|
*
|
|
@@ -4892,7 +4772,7 @@ export interface FaqCategoryItemModel {
|
|
|
4892
4772
|
* @type {string}
|
|
4893
4773
|
* @memberof FaqCategoryItemModel
|
|
4894
4774
|
*/
|
|
4895
|
-
'
|
|
4775
|
+
'languageCode'?: string | null;
|
|
4896
4776
|
/**
|
|
4897
4777
|
*
|
|
4898
4778
|
* @type {string}
|
|
@@ -4905,12 +4785,18 @@ export interface FaqCategoryItemModel {
|
|
|
4905
4785
|
* @memberof FaqCategoryItemModel
|
|
4906
4786
|
*/
|
|
4907
4787
|
'slug'?: string | null;
|
|
4788
|
+
/**
|
|
4789
|
+
*
|
|
4790
|
+
* @type {boolean}
|
|
4791
|
+
* @memberof FaqCategoryItemModel
|
|
4792
|
+
*/
|
|
4793
|
+
'confirmed'?: boolean;
|
|
4908
4794
|
/**
|
|
4909
4795
|
*
|
|
4910
4796
|
* @type {string}
|
|
4911
4797
|
* @memberof FaqCategoryItemModel
|
|
4912
4798
|
*/
|
|
4913
|
-
'
|
|
4799
|
+
'parentId'?: string | null;
|
|
4914
4800
|
/**
|
|
4915
4801
|
*
|
|
4916
4802
|
* @type {number}
|
|
@@ -4931,10 +4817,22 @@ export interface FaqCategoryItemModel {
|
|
|
4931
4817
|
'hospitalName'?: string | null;
|
|
4932
4818
|
/**
|
|
4933
4819
|
*
|
|
4934
|
-
* @type {
|
|
4820
|
+
* @type {string}
|
|
4935
4821
|
* @memberof FaqCategoryItemModel
|
|
4936
4822
|
*/
|
|
4937
|
-
'
|
|
4823
|
+
'hospitalSlug'?: string | null;
|
|
4824
|
+
/**
|
|
4825
|
+
*
|
|
4826
|
+
* @type {string}
|
|
4827
|
+
* @memberof FaqCategoryItemModel
|
|
4828
|
+
*/
|
|
4829
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
4830
|
+
/**
|
|
4831
|
+
*
|
|
4832
|
+
* @type {Array<MediaModel>}
|
|
4833
|
+
* @memberof FaqCategoryItemModel
|
|
4834
|
+
*/
|
|
4835
|
+
'medias'?: Array<MediaModel> | null;
|
|
4938
4836
|
/**
|
|
4939
4837
|
*
|
|
4940
4838
|
* @type {AuditableEntity}
|
|
@@ -4959,7 +4857,7 @@ export interface FaqCategoryModel {
|
|
|
4959
4857
|
* @type {string}
|
|
4960
4858
|
* @memberof FaqCategoryModel
|
|
4961
4859
|
*/
|
|
4962
|
-
'
|
|
4860
|
+
'languageCode'?: string | null;
|
|
4963
4861
|
/**
|
|
4964
4862
|
*
|
|
4965
4863
|
* @type {string}
|
|
@@ -4972,12 +4870,18 @@ export interface FaqCategoryModel {
|
|
|
4972
4870
|
* @memberof FaqCategoryModel
|
|
4973
4871
|
*/
|
|
4974
4872
|
'slug'?: string | null;
|
|
4873
|
+
/**
|
|
4874
|
+
*
|
|
4875
|
+
* @type {boolean}
|
|
4876
|
+
* @memberof FaqCategoryModel
|
|
4877
|
+
*/
|
|
4878
|
+
'confirmed'?: boolean;
|
|
4975
4879
|
/**
|
|
4976
4880
|
*
|
|
4977
4881
|
* @type {string}
|
|
4978
4882
|
* @memberof FaqCategoryModel
|
|
4979
4883
|
*/
|
|
4980
|
-
'
|
|
4884
|
+
'parentId'?: string | null;
|
|
4981
4885
|
/**
|
|
4982
4886
|
*
|
|
4983
4887
|
* @type {number}
|
|
@@ -4995,25 +4899,49 @@ export interface FaqCategoryModel {
|
|
|
4995
4899
|
* @type {string}
|
|
4996
4900
|
* @memberof FaqCategoryModel
|
|
4997
4901
|
*/
|
|
4998
|
-
'hospitalName'?: string | null;
|
|
4902
|
+
'hospitalName'?: string | null;
|
|
4903
|
+
/**
|
|
4904
|
+
*
|
|
4905
|
+
* @type {string}
|
|
4906
|
+
* @memberof FaqCategoryModel
|
|
4907
|
+
*/
|
|
4908
|
+
'hospitalSlug'?: string | null;
|
|
4909
|
+
/**
|
|
4910
|
+
*
|
|
4911
|
+
* @type {string}
|
|
4912
|
+
* @memberof FaqCategoryModel
|
|
4913
|
+
*/
|
|
4914
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
4915
|
+
/**
|
|
4916
|
+
*
|
|
4917
|
+
* @type {Array<MediaModel>}
|
|
4918
|
+
* @memberof FaqCategoryModel
|
|
4919
|
+
*/
|
|
4920
|
+
'medias'?: Array<MediaModel> | null;
|
|
4921
|
+
/**
|
|
4922
|
+
*
|
|
4923
|
+
* @type {AuditableEntity}
|
|
4924
|
+
* @memberof FaqCategoryModel
|
|
4925
|
+
*/
|
|
4926
|
+
'auditableEntity'?: AuditableEntity;
|
|
4999
4927
|
/**
|
|
5000
4928
|
*
|
|
5001
|
-
* @type {
|
|
4929
|
+
* @type {string}
|
|
5002
4930
|
* @memberof FaqCategoryModel
|
|
5003
4931
|
*/
|
|
5004
|
-
'
|
|
4932
|
+
'description'?: string | null;
|
|
5005
4933
|
/**
|
|
5006
4934
|
*
|
|
5007
|
-
* @type {
|
|
4935
|
+
* @type {string}
|
|
5008
4936
|
* @memberof FaqCategoryModel
|
|
5009
4937
|
*/
|
|
5010
|
-
'
|
|
4938
|
+
'overview'?: string | null;
|
|
5011
4939
|
/**
|
|
5012
4940
|
*
|
|
5013
4941
|
* @type {string}
|
|
5014
4942
|
* @memberof FaqCategoryModel
|
|
5015
4943
|
*/
|
|
5016
|
-
'
|
|
4944
|
+
'content'?: string | null;
|
|
5017
4945
|
/**
|
|
5018
4946
|
*
|
|
5019
4947
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -5033,6 +4961,12 @@ export interface FaqItemModel {
|
|
|
5033
4961
|
* @memberof FaqItemModel
|
|
5034
4962
|
*/
|
|
5035
4963
|
'id'?: string;
|
|
4964
|
+
/**
|
|
4965
|
+
*
|
|
4966
|
+
* @type {string}
|
|
4967
|
+
* @memberof FaqItemModel
|
|
4968
|
+
*/
|
|
4969
|
+
'languageCode'?: string | null;
|
|
5036
4970
|
/**
|
|
5037
4971
|
*
|
|
5038
4972
|
* @type {string}
|
|
@@ -5045,12 +4979,18 @@ export interface FaqItemModel {
|
|
|
5045
4979
|
* @memberof FaqItemModel
|
|
5046
4980
|
*/
|
|
5047
4981
|
'slug'?: string | null;
|
|
4982
|
+
/**
|
|
4983
|
+
*
|
|
4984
|
+
* @type {boolean}
|
|
4985
|
+
* @memberof FaqItemModel
|
|
4986
|
+
*/
|
|
4987
|
+
'confirmed'?: boolean;
|
|
5048
4988
|
/**
|
|
5049
4989
|
*
|
|
5050
4990
|
* @type {string}
|
|
5051
4991
|
* @memberof FaqItemModel
|
|
5052
4992
|
*/
|
|
5053
|
-
'
|
|
4993
|
+
'parentId'?: string | null;
|
|
5054
4994
|
/**
|
|
5055
4995
|
*
|
|
5056
4996
|
* @type {number}
|
|
@@ -5074,19 +5014,25 @@ export interface FaqItemModel {
|
|
|
5074
5014
|
* @type {string}
|
|
5075
5015
|
* @memberof FaqItemModel
|
|
5076
5016
|
*/
|
|
5077
|
-
'
|
|
5017
|
+
'hospitalSlug'?: string | null;
|
|
5078
5018
|
/**
|
|
5079
5019
|
*
|
|
5080
5020
|
* @type {string}
|
|
5081
5021
|
* @memberof FaqItemModel
|
|
5082
5022
|
*/
|
|
5083
|
-
'
|
|
5023
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
5084
5024
|
/**
|
|
5085
5025
|
*
|
|
5086
|
-
* @type {
|
|
5026
|
+
* @type {string}
|
|
5087
5027
|
* @memberof FaqItemModel
|
|
5088
5028
|
*/
|
|
5089
|
-
'
|
|
5029
|
+
'faqCategoryId'?: string;
|
|
5030
|
+
/**
|
|
5031
|
+
*
|
|
5032
|
+
* @type {string}
|
|
5033
|
+
* @memberof FaqItemModel
|
|
5034
|
+
*/
|
|
5035
|
+
'faqCategoryName'?: string | null;
|
|
5090
5036
|
/**
|
|
5091
5037
|
*
|
|
5092
5038
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -5118,6 +5064,12 @@ export interface FaqModel {
|
|
|
5118
5064
|
* @memberof FaqModel
|
|
5119
5065
|
*/
|
|
5120
5066
|
'id'?: string;
|
|
5067
|
+
/**
|
|
5068
|
+
*
|
|
5069
|
+
* @type {string}
|
|
5070
|
+
* @memberof FaqModel
|
|
5071
|
+
*/
|
|
5072
|
+
'languageCode'?: string | null;
|
|
5121
5073
|
/**
|
|
5122
5074
|
*
|
|
5123
5075
|
* @type {string}
|
|
@@ -5130,12 +5082,18 @@ export interface FaqModel {
|
|
|
5130
5082
|
* @memberof FaqModel
|
|
5131
5083
|
*/
|
|
5132
5084
|
'slug'?: string | null;
|
|
5085
|
+
/**
|
|
5086
|
+
*
|
|
5087
|
+
* @type {boolean}
|
|
5088
|
+
* @memberof FaqModel
|
|
5089
|
+
*/
|
|
5090
|
+
'confirmed'?: boolean;
|
|
5133
5091
|
/**
|
|
5134
5092
|
*
|
|
5135
5093
|
* @type {string}
|
|
5136
5094
|
* @memberof FaqModel
|
|
5137
5095
|
*/
|
|
5138
|
-
'
|
|
5096
|
+
'parentId'?: string | null;
|
|
5139
5097
|
/**
|
|
5140
5098
|
*
|
|
5141
5099
|
* @type {number}
|
|
@@ -5159,19 +5117,25 @@ export interface FaqModel {
|
|
|
5159
5117
|
* @type {string}
|
|
5160
5118
|
* @memberof FaqModel
|
|
5161
5119
|
*/
|
|
5162
|
-
'
|
|
5120
|
+
'hospitalSlug'?: string | null;
|
|
5163
5121
|
/**
|
|
5164
5122
|
*
|
|
5165
5123
|
* @type {string}
|
|
5166
5124
|
* @memberof FaqModel
|
|
5167
5125
|
*/
|
|
5168
|
-
'
|
|
5126
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
5169
5127
|
/**
|
|
5170
5128
|
*
|
|
5171
|
-
* @type {
|
|
5129
|
+
* @type {string}
|
|
5172
5130
|
* @memberof FaqModel
|
|
5173
5131
|
*/
|
|
5174
|
-
'
|
|
5132
|
+
'faqCategoryId'?: string;
|
|
5133
|
+
/**
|
|
5134
|
+
*
|
|
5135
|
+
* @type {string}
|
|
5136
|
+
* @memberof FaqModel
|
|
5137
|
+
*/
|
|
5138
|
+
'faqCategoryName'?: string | null;
|
|
5175
5139
|
/**
|
|
5176
5140
|
*
|
|
5177
5141
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -5195,7 +5159,13 @@ export interface FaqModel {
|
|
|
5195
5159
|
* @type {string}
|
|
5196
5160
|
* @memberof FaqModel
|
|
5197
5161
|
*/
|
|
5198
|
-
'
|
|
5162
|
+
'description'?: string | null;
|
|
5163
|
+
/**
|
|
5164
|
+
*
|
|
5165
|
+
* @type {string}
|
|
5166
|
+
* @memberof FaqModel
|
|
5167
|
+
*/
|
|
5168
|
+
'overview'?: string | null;
|
|
5199
5169
|
/**
|
|
5200
5170
|
*
|
|
5201
5171
|
* @type {string}
|
|
@@ -5909,127 +5879,31 @@ export interface HospitalServiceItemModel {
|
|
|
5909
5879
|
* @type {string}
|
|
5910
5880
|
* @memberof HospitalServiceItemModel
|
|
5911
5881
|
*/
|
|
5912
|
-
'
|
|
5913
|
-
/**
|
|
5914
|
-
*
|
|
5915
|
-
* @type {string}
|
|
5916
|
-
* @memberof HospitalServiceItemModel
|
|
5917
|
-
*/
|
|
5918
|
-
'slug'?: string | null;
|
|
5919
|
-
/**
|
|
5920
|
-
*
|
|
5921
|
-
* @type {string}
|
|
5922
|
-
* @memberof HospitalServiceItemModel
|
|
5923
|
-
*/
|
|
5924
|
-
'description'?: string | null;
|
|
5925
|
-
/**
|
|
5926
|
-
*
|
|
5927
|
-
* @type {string}
|
|
5928
|
-
* @memberof HospitalServiceItemModel
|
|
5929
|
-
*/
|
|
5930
|
-
'hospitalId'?: string;
|
|
5931
|
-
/**
|
|
5932
|
-
*
|
|
5933
|
-
* @type {string}
|
|
5934
|
-
* @memberof HospitalServiceItemModel
|
|
5935
|
-
*/
|
|
5936
|
-
'hospitalName'?: string | null;
|
|
5937
|
-
/**
|
|
5938
|
-
*
|
|
5939
|
-
* @type {string}
|
|
5940
|
-
* @memberof HospitalServiceItemModel
|
|
5941
|
-
*/
|
|
5942
|
-
'hospitalSlug'?: string | null;
|
|
5943
|
-
/**
|
|
5944
|
-
*
|
|
5945
|
-
* @type {string}
|
|
5946
|
-
* @memberof HospitalServiceItemModel
|
|
5947
|
-
*/
|
|
5948
|
-
'specialtyTypeId'?: string | null;
|
|
5949
|
-
/**
|
|
5950
|
-
*
|
|
5951
|
-
* @type {string}
|
|
5952
|
-
* @memberof HospitalServiceItemModel
|
|
5953
|
-
*/
|
|
5954
|
-
'specialtyTypeName'?: string | null;
|
|
5955
|
-
/**
|
|
5956
|
-
*
|
|
5957
|
-
* @type {string}
|
|
5958
|
-
* @memberof HospitalServiceItemModel
|
|
5959
|
-
*/
|
|
5960
|
-
'specialtyId'?: string;
|
|
5961
|
-
/**
|
|
5962
|
-
*
|
|
5963
|
-
* @type {string}
|
|
5964
|
-
* @memberof HospitalServiceItemModel
|
|
5965
|
-
*/
|
|
5966
|
-
'specialtyName'?: string | null;
|
|
5967
|
-
/**
|
|
5968
|
-
*
|
|
5969
|
-
* @type {string}
|
|
5970
|
-
* @memberof HospitalServiceItemModel
|
|
5971
|
-
*/
|
|
5972
|
-
'hospitalSpecialtyName'?: string | null;
|
|
5973
|
-
/**
|
|
5974
|
-
*
|
|
5975
|
-
* @type {string}
|
|
5976
|
-
* @memberof HospitalServiceItemModel
|
|
5977
|
-
*/
|
|
5978
|
-
'hospitalSpecialtySlug'?: string | null;
|
|
5882
|
+
'languageCode'?: string | null;
|
|
5979
5883
|
/**
|
|
5980
5884
|
*
|
|
5981
5885
|
* @type {string}
|
|
5982
5886
|
* @memberof HospitalServiceItemModel
|
|
5983
5887
|
*/
|
|
5984
|
-
'
|
|
5888
|
+
'name'?: string | null;
|
|
5985
5889
|
/**
|
|
5986
5890
|
*
|
|
5987
5891
|
* @type {string}
|
|
5988
5892
|
* @memberof HospitalServiceItemModel
|
|
5989
5893
|
*/
|
|
5990
|
-
'
|
|
5991
|
-
/**
|
|
5992
|
-
*
|
|
5993
|
-
* @type {MarketingType}
|
|
5994
|
-
* @memberof HospitalServiceItemModel
|
|
5995
|
-
*/
|
|
5996
|
-
'marketingType'?: MarketingType;
|
|
5997
|
-
/**
|
|
5998
|
-
*
|
|
5999
|
-
* @type {Procedure}
|
|
6000
|
-
* @memberof HospitalServiceItemModel
|
|
6001
|
-
*/
|
|
6002
|
-
'procedure'?: Procedure;
|
|
6003
|
-
/**
|
|
6004
|
-
*
|
|
6005
|
-
* @type {number}
|
|
6006
|
-
* @memberof HospitalServiceItemModel
|
|
6007
|
-
*/
|
|
6008
|
-
'minPrice'?: number | null;
|
|
6009
|
-
/**
|
|
6010
|
-
*
|
|
6011
|
-
* @type {number}
|
|
6012
|
-
* @memberof HospitalServiceItemModel
|
|
6013
|
-
*/
|
|
6014
|
-
'maxPrice'?: number | null;
|
|
5894
|
+
'slug'?: string | null;
|
|
6015
5895
|
/**
|
|
6016
5896
|
*
|
|
6017
5897
|
* @type {boolean}
|
|
6018
5898
|
* @memberof HospitalServiceItemModel
|
|
6019
5899
|
*/
|
|
6020
|
-
'
|
|
5900
|
+
'confirmed'?: boolean;
|
|
6021
5901
|
/**
|
|
6022
5902
|
*
|
|
6023
5903
|
* @type {number}
|
|
6024
5904
|
* @memberof HospitalServiceItemModel
|
|
6025
5905
|
*/
|
|
6026
5906
|
'order'?: number;
|
|
6027
|
-
/**
|
|
6028
|
-
*
|
|
6029
|
-
* @type {boolean}
|
|
6030
|
-
* @memberof HospitalServiceItemModel
|
|
6031
|
-
*/
|
|
6032
|
-
'confirmed'?: boolean;
|
|
6033
5907
|
/**
|
|
6034
5908
|
*
|
|
6035
5909
|
* @type {string}
|
|
@@ -6042,12 +5916,6 @@ export interface HospitalServiceItemModel {
|
|
|
6042
5916
|
* @memberof HospitalServiceItemModel
|
|
6043
5917
|
*/
|
|
6044
5918
|
'photoThumbnail'?: string | null;
|
|
6045
|
-
/**
|
|
6046
|
-
*
|
|
6047
|
-
* @type {Array<MediaModel>}
|
|
6048
|
-
* @memberof HospitalServiceItemModel
|
|
6049
|
-
*/
|
|
6050
|
-
'medias'?: Array<MediaModel> | null;
|
|
6051
5919
|
/**
|
|
6052
5920
|
*
|
|
6053
5921
|
* @type {AuditableEntity}
|
|
@@ -6072,163 +5940,139 @@ export interface HospitalServiceModel {
|
|
|
6072
5940
|
* @type {string}
|
|
6073
5941
|
* @memberof HospitalServiceModel
|
|
6074
5942
|
*/
|
|
6075
|
-
'
|
|
5943
|
+
'languageCode'?: string | null;
|
|
6076
5944
|
/**
|
|
6077
5945
|
*
|
|
6078
5946
|
* @type {string}
|
|
6079
5947
|
* @memberof HospitalServiceModel
|
|
6080
5948
|
*/
|
|
6081
|
-
'
|
|
5949
|
+
'name'?: string | null;
|
|
6082
5950
|
/**
|
|
6083
5951
|
*
|
|
6084
5952
|
* @type {string}
|
|
6085
5953
|
* @memberof HospitalServiceModel
|
|
6086
5954
|
*/
|
|
6087
|
-
'
|
|
5955
|
+
'slug'?: string | null;
|
|
6088
5956
|
/**
|
|
6089
5957
|
*
|
|
6090
|
-
* @type {
|
|
5958
|
+
* @type {boolean}
|
|
6091
5959
|
* @memberof HospitalServiceModel
|
|
6092
5960
|
*/
|
|
6093
|
-
'
|
|
5961
|
+
'confirmed'?: boolean;
|
|
6094
5962
|
/**
|
|
6095
5963
|
*
|
|
6096
|
-
* @type {
|
|
5964
|
+
* @type {number}
|
|
6097
5965
|
* @memberof HospitalServiceModel
|
|
6098
5966
|
*/
|
|
6099
|
-
'
|
|
5967
|
+
'order'?: number;
|
|
6100
5968
|
/**
|
|
6101
5969
|
*
|
|
6102
5970
|
* @type {string}
|
|
6103
5971
|
* @memberof HospitalServiceModel
|
|
6104
5972
|
*/
|
|
6105
|
-
'
|
|
5973
|
+
'photo'?: string | null;
|
|
6106
5974
|
/**
|
|
6107
5975
|
*
|
|
6108
5976
|
* @type {string}
|
|
6109
5977
|
* @memberof HospitalServiceModel
|
|
6110
5978
|
*/
|
|
6111
|
-
'
|
|
5979
|
+
'photoThumbnail'?: string | null;
|
|
6112
5980
|
/**
|
|
6113
5981
|
*
|
|
6114
|
-
* @type {
|
|
5982
|
+
* @type {AuditableEntity}
|
|
6115
5983
|
* @memberof HospitalServiceModel
|
|
6116
5984
|
*/
|
|
6117
|
-
'
|
|
5985
|
+
'auditableEntity'?: AuditableEntity;
|
|
6118
5986
|
/**
|
|
6119
5987
|
*
|
|
6120
5988
|
* @type {string}
|
|
6121
5989
|
* @memberof HospitalServiceModel
|
|
6122
5990
|
*/
|
|
6123
|
-
'
|
|
5991
|
+
'description'?: string | null;
|
|
6124
5992
|
/**
|
|
6125
5993
|
*
|
|
6126
5994
|
* @type {string}
|
|
6127
5995
|
* @memberof HospitalServiceModel
|
|
6128
5996
|
*/
|
|
6129
|
-
'
|
|
5997
|
+
'overview'?: string | null;
|
|
6130
5998
|
/**
|
|
6131
5999
|
*
|
|
6132
6000
|
* @type {string}
|
|
6133
6001
|
* @memberof HospitalServiceModel
|
|
6134
6002
|
*/
|
|
6135
|
-
'
|
|
6003
|
+
'content'?: string | null;
|
|
6136
6004
|
/**
|
|
6137
6005
|
*
|
|
6138
6006
|
* @type {string}
|
|
6139
6007
|
* @memberof HospitalServiceModel
|
|
6140
6008
|
*/
|
|
6141
|
-
'
|
|
6009
|
+
'hospitalId'?: string;
|
|
6142
6010
|
/**
|
|
6143
6011
|
*
|
|
6144
6012
|
* @type {string}
|
|
6145
6013
|
* @memberof HospitalServiceModel
|
|
6146
6014
|
*/
|
|
6147
|
-
'
|
|
6015
|
+
'hospitalName'?: string | null;
|
|
6148
6016
|
/**
|
|
6149
6017
|
*
|
|
6150
6018
|
* @type {string}
|
|
6151
6019
|
* @memberof HospitalServiceModel
|
|
6152
6020
|
*/
|
|
6153
|
-
'
|
|
6154
|
-
/**
|
|
6155
|
-
*
|
|
6156
|
-
* @type {MarketingType}
|
|
6157
|
-
* @memberof HospitalServiceModel
|
|
6158
|
-
*/
|
|
6159
|
-
'marketingType'?: MarketingType;
|
|
6160
|
-
/**
|
|
6161
|
-
*
|
|
6162
|
-
* @type {Procedure}
|
|
6163
|
-
* @memberof HospitalServiceModel
|
|
6164
|
-
*/
|
|
6165
|
-
'procedure'?: Procedure;
|
|
6166
|
-
/**
|
|
6167
|
-
*
|
|
6168
|
-
* @type {number}
|
|
6169
|
-
* @memberof HospitalServiceModel
|
|
6170
|
-
*/
|
|
6171
|
-
'minPrice'?: number | null;
|
|
6172
|
-
/**
|
|
6173
|
-
*
|
|
6174
|
-
* @type {number}
|
|
6175
|
-
* @memberof HospitalServiceModel
|
|
6176
|
-
*/
|
|
6177
|
-
'maxPrice'?: number | null;
|
|
6021
|
+
'hospitalSlug'?: string | null;
|
|
6178
6022
|
/**
|
|
6179
6023
|
*
|
|
6180
|
-
* @type {
|
|
6024
|
+
* @type {string}
|
|
6181
6025
|
* @memberof HospitalServiceModel
|
|
6182
6026
|
*/
|
|
6183
|
-
'
|
|
6027
|
+
'specialtyName'?: string | null;
|
|
6184
6028
|
/**
|
|
6185
6029
|
*
|
|
6186
|
-
* @type {
|
|
6030
|
+
* @type {string}
|
|
6187
6031
|
* @memberof HospitalServiceModel
|
|
6188
6032
|
*/
|
|
6189
|
-
'
|
|
6033
|
+
'hospitalSpecialtyName'?: string | null;
|
|
6190
6034
|
/**
|
|
6191
6035
|
*
|
|
6192
|
-
* @type {
|
|
6036
|
+
* @type {string}
|
|
6193
6037
|
* @memberof HospitalServiceModel
|
|
6194
6038
|
*/
|
|
6195
|
-
'
|
|
6039
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
6196
6040
|
/**
|
|
6197
6041
|
*
|
|
6198
6042
|
* @type {string}
|
|
6199
6043
|
* @memberof HospitalServiceModel
|
|
6200
6044
|
*/
|
|
6201
|
-
'
|
|
6045
|
+
'serviceCategoryId'?: string | null;
|
|
6202
6046
|
/**
|
|
6203
6047
|
*
|
|
6204
6048
|
* @type {string}
|
|
6205
6049
|
* @memberof HospitalServiceModel
|
|
6206
6050
|
*/
|
|
6207
|
-
'
|
|
6051
|
+
'serviceCategoryName'?: string | null;
|
|
6208
6052
|
/**
|
|
6209
6053
|
*
|
|
6210
|
-
* @type {
|
|
6054
|
+
* @type {Procedure}
|
|
6211
6055
|
* @memberof HospitalServiceModel
|
|
6212
6056
|
*/
|
|
6213
|
-
'
|
|
6057
|
+
'procedure'?: Procedure;
|
|
6214
6058
|
/**
|
|
6215
6059
|
*
|
|
6216
|
-
* @type {
|
|
6060
|
+
* @type {number}
|
|
6217
6061
|
* @memberof HospitalServiceModel
|
|
6218
6062
|
*/
|
|
6219
|
-
'
|
|
6063
|
+
'minPrice'?: number | null;
|
|
6220
6064
|
/**
|
|
6221
6065
|
*
|
|
6222
|
-
* @type {
|
|
6066
|
+
* @type {number}
|
|
6223
6067
|
* @memberof HospitalServiceModel
|
|
6224
6068
|
*/
|
|
6225
|
-
'
|
|
6069
|
+
'maxPrice'?: number | null;
|
|
6226
6070
|
/**
|
|
6227
6071
|
*
|
|
6228
|
-
* @type {
|
|
6072
|
+
* @type {boolean}
|
|
6229
6073
|
* @memberof HospitalServiceModel
|
|
6230
6074
|
*/
|
|
6231
|
-
'
|
|
6075
|
+
'priceReuqest'?: boolean;
|
|
6232
6076
|
/**
|
|
6233
6077
|
*
|
|
6234
6078
|
* @type {string}
|
|
@@ -6237,10 +6081,10 @@ export interface HospitalServiceModel {
|
|
|
6237
6081
|
'customStyle'?: string | null;
|
|
6238
6082
|
/**
|
|
6239
6083
|
*
|
|
6240
|
-
* @type {Array<
|
|
6084
|
+
* @type {Array<MediaModel>}
|
|
6241
6085
|
* @memberof HospitalServiceModel
|
|
6242
6086
|
*/
|
|
6243
|
-
'
|
|
6087
|
+
'medias'?: Array<MediaModel> | null;
|
|
6244
6088
|
}
|
|
6245
6089
|
/**
|
|
6246
6090
|
*
|
|
@@ -6385,6 +6229,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6385
6229
|
* @memberof HospitalSpecialtyItemModel
|
|
6386
6230
|
*/
|
|
6387
6231
|
'slug'?: string | null;
|
|
6232
|
+
/**
|
|
6233
|
+
*
|
|
6234
|
+
* @type {boolean}
|
|
6235
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6236
|
+
*/
|
|
6237
|
+
'confirmed'?: boolean;
|
|
6388
6238
|
/**
|
|
6389
6239
|
*
|
|
6390
6240
|
* @type {number}
|
|
@@ -6427,6 +6277,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6427
6277
|
* @memberof HospitalSpecialtyItemModel
|
|
6428
6278
|
*/
|
|
6429
6279
|
'specialtyId'?: string;
|
|
6280
|
+
/**
|
|
6281
|
+
*
|
|
6282
|
+
* @type {AuditableEntity}
|
|
6283
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6284
|
+
*/
|
|
6285
|
+
'auditableEntity'?: AuditableEntity;
|
|
6430
6286
|
}
|
|
6431
6287
|
/**
|
|
6432
6288
|
*
|
|
@@ -6458,6 +6314,12 @@ export interface HospitalSpecialtyModel {
|
|
|
6458
6314
|
* @memberof HospitalSpecialtyModel
|
|
6459
6315
|
*/
|
|
6460
6316
|
'slug'?: string | null;
|
|
6317
|
+
/**
|
|
6318
|
+
*
|
|
6319
|
+
* @type {boolean}
|
|
6320
|
+
* @memberof HospitalSpecialtyModel
|
|
6321
|
+
*/
|
|
6322
|
+
'confirmed'?: boolean;
|
|
6461
6323
|
/**
|
|
6462
6324
|
*
|
|
6463
6325
|
* @type {number}
|
|
@@ -6502,28 +6364,28 @@ export interface HospitalSpecialtyModel {
|
|
|
6502
6364
|
'specialtyId'?: string;
|
|
6503
6365
|
/**
|
|
6504
6366
|
*
|
|
6505
|
-
* @type {
|
|
6367
|
+
* @type {AuditableEntity}
|
|
6506
6368
|
* @memberof HospitalSpecialtyModel
|
|
6507
6369
|
*/
|
|
6508
|
-
'
|
|
6370
|
+
'auditableEntity'?: AuditableEntity;
|
|
6509
6371
|
/**
|
|
6510
6372
|
*
|
|
6511
6373
|
* @type {string}
|
|
6512
6374
|
* @memberof HospitalSpecialtyModel
|
|
6513
6375
|
*/
|
|
6514
|
-
'
|
|
6376
|
+
'description'?: string | null;
|
|
6515
6377
|
/**
|
|
6516
6378
|
*
|
|
6517
|
-
* @type {
|
|
6379
|
+
* @type {string}
|
|
6518
6380
|
* @memberof HospitalSpecialtyModel
|
|
6519
6381
|
*/
|
|
6520
|
-
'
|
|
6382
|
+
'overview'?: string | null;
|
|
6521
6383
|
/**
|
|
6522
6384
|
*
|
|
6523
6385
|
* @type {string}
|
|
6524
6386
|
* @memberof HospitalSpecialtyModel
|
|
6525
6387
|
*/
|
|
6526
|
-
'
|
|
6388
|
+
'content'?: string | null;
|
|
6527
6389
|
/**
|
|
6528
6390
|
*
|
|
6529
6391
|
* @type {string}
|
|
@@ -6559,13 +6421,7 @@ export interface HospitalSpecialtyModel {
|
|
|
6559
6421
|
* @type {string}
|
|
6560
6422
|
* @memberof HospitalSpecialtyModel
|
|
6561
6423
|
*/
|
|
6562
|
-
'
|
|
6563
|
-
/**
|
|
6564
|
-
*
|
|
6565
|
-
* @type {MarketingType}
|
|
6566
|
-
* @memberof HospitalSpecialtyModel
|
|
6567
|
-
*/
|
|
6568
|
-
'marketingType'?: MarketingType;
|
|
6424
|
+
'customStyle'?: string | null;
|
|
6569
6425
|
/**
|
|
6570
6426
|
*
|
|
6571
6427
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -6609,6 +6465,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
6609
6465
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6610
6466
|
*/
|
|
6611
6467
|
'slug'?: string | null;
|
|
6468
|
+
/**
|
|
6469
|
+
*
|
|
6470
|
+
* @type {boolean}
|
|
6471
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6472
|
+
*/
|
|
6473
|
+
'confirmed'?: boolean;
|
|
6612
6474
|
/**
|
|
6613
6475
|
*
|
|
6614
6476
|
* @type {number}
|
|
@@ -7381,12 +7243,6 @@ export interface PatientModel {
|
|
|
7381
7243
|
* @memberof PatientModel
|
|
7382
7244
|
*/
|
|
7383
7245
|
'firstName'?: string | null;
|
|
7384
|
-
/**
|
|
7385
|
-
*
|
|
7386
|
-
* @type {string}
|
|
7387
|
-
* @memberof PatientModel
|
|
7388
|
-
*/
|
|
7389
|
-
'middleName'?: string | null;
|
|
7390
7246
|
/**
|
|
7391
7247
|
*
|
|
7392
7248
|
* @type {string}
|
|
@@ -7399,18 +7255,6 @@ export interface PatientModel {
|
|
|
7399
7255
|
* @memberof PatientModel
|
|
7400
7256
|
*/
|
|
7401
7257
|
'fullName'?: string | null;
|
|
7402
|
-
/**
|
|
7403
|
-
*
|
|
7404
|
-
* @type {string}
|
|
7405
|
-
* @memberof PatientModel
|
|
7406
|
-
*/
|
|
7407
|
-
'slug'?: string | null;
|
|
7408
|
-
/**
|
|
7409
|
-
*
|
|
7410
|
-
* @type {boolean}
|
|
7411
|
-
* @memberof PatientModel
|
|
7412
|
-
*/
|
|
7413
|
-
'confirmed'?: boolean;
|
|
7414
7258
|
/**
|
|
7415
7259
|
*
|
|
7416
7260
|
* @type {string}
|
|
@@ -8426,6 +8270,17 @@ export enum SnsType {
|
|
|
8426
8270
|
KakaoTalk = 'KakaoTalk'
|
|
8427
8271
|
}
|
|
8428
8272
|
|
|
8273
|
+
/**
|
|
8274
|
+
*
|
|
8275
|
+
* @export
|
|
8276
|
+
* @enum {string}
|
|
8277
|
+
*/
|
|
8278
|
+
|
|
8279
|
+
export enum SortingOrder {
|
|
8280
|
+
Ascending = 'Ascending',
|
|
8281
|
+
Descending = 'Descending'
|
|
8282
|
+
}
|
|
8283
|
+
|
|
8429
8284
|
/**
|
|
8430
8285
|
*
|
|
8431
8286
|
* @export
|
|
@@ -8537,12 +8392,6 @@ export interface SpecialtyItemModel {
|
|
|
8537
8392
|
* @memberof SpecialtyItemModel
|
|
8538
8393
|
*/
|
|
8539
8394
|
'specialtyTypeId'?: string;
|
|
8540
|
-
/**
|
|
8541
|
-
*
|
|
8542
|
-
* @type {string}
|
|
8543
|
-
* @memberof SpecialtyItemModel
|
|
8544
|
-
*/
|
|
8545
|
-
'description'?: string | null;
|
|
8546
8395
|
/**
|
|
8547
8396
|
*
|
|
8548
8397
|
* @type {string}
|
|
@@ -8647,12 +8496,6 @@ export interface SpecialtyModel {
|
|
|
8647
8496
|
* @memberof SpecialtyModel
|
|
8648
8497
|
*/
|
|
8649
8498
|
'specialtyTypeId'?: string;
|
|
8650
|
-
/**
|
|
8651
|
-
*
|
|
8652
|
-
* @type {string}
|
|
8653
|
-
* @memberof SpecialtyModel
|
|
8654
|
-
*/
|
|
8655
|
-
'description'?: string | null;
|
|
8656
8499
|
/**
|
|
8657
8500
|
*
|
|
8658
8501
|
* @type {string}
|
|
@@ -8671,6 +8514,18 @@ export interface SpecialtyModel {
|
|
|
8671
8514
|
* @memberof SpecialtyModel
|
|
8672
8515
|
*/
|
|
8673
8516
|
'auditableEntity'?: AuditableEntity;
|
|
8517
|
+
/**
|
|
8518
|
+
*
|
|
8519
|
+
* @type {string}
|
|
8520
|
+
* @memberof SpecialtyModel
|
|
8521
|
+
*/
|
|
8522
|
+
'description'?: string | null;
|
|
8523
|
+
/**
|
|
8524
|
+
*
|
|
8525
|
+
* @type {string}
|
|
8526
|
+
* @memberof SpecialtyModel
|
|
8527
|
+
*/
|
|
8528
|
+
'overview'?: string | null;
|
|
8674
8529
|
/**
|
|
8675
8530
|
*
|
|
8676
8531
|
* @type {string}
|
|
@@ -9535,12 +9390,6 @@ export interface UserModel {
|
|
|
9535
9390
|
* @memberof UserModel
|
|
9536
9391
|
*/
|
|
9537
9392
|
'firstName'?: string | null;
|
|
9538
|
-
/**
|
|
9539
|
-
*
|
|
9540
|
-
* @type {string}
|
|
9541
|
-
* @memberof UserModel
|
|
9542
|
-
*/
|
|
9543
|
-
'middleName'?: string | null;
|
|
9544
9393
|
/**
|
|
9545
9394
|
*
|
|
9546
9395
|
* @type {string}
|
|
@@ -9553,18 +9402,6 @@ export interface UserModel {
|
|
|
9553
9402
|
* @memberof UserModel
|
|
9554
9403
|
*/
|
|
9555
9404
|
'fullName'?: string | null;
|
|
9556
|
-
/**
|
|
9557
|
-
*
|
|
9558
|
-
* @type {string}
|
|
9559
|
-
* @memberof UserModel
|
|
9560
|
-
*/
|
|
9561
|
-
'slug'?: string | null;
|
|
9562
|
-
/**
|
|
9563
|
-
*
|
|
9564
|
-
* @type {boolean}
|
|
9565
|
-
* @memberof UserModel
|
|
9566
|
-
*/
|
|
9567
|
-
'confirmed'?: boolean;
|
|
9568
9405
|
/**
|
|
9569
9406
|
*
|
|
9570
9407
|
* @type {string}
|
|
@@ -10466,11 +10303,10 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
10466
10303
|
* @summary Get Article.
|
|
10467
10304
|
* @param {string} articleId
|
|
10468
10305
|
* @param {string} [languageCode]
|
|
10469
|
-
* @param {boolean} [returnDefaultValue]
|
|
10470
10306
|
* @param {*} [options] Override http request option.
|
|
10471
10307
|
* @throws {RequiredError}
|
|
10472
10308
|
*/
|
|
10473
|
-
apiV2ArticlesArticleIdGet: async (articleId: string, languageCode?: string,
|
|
10309
|
+
apiV2ArticlesArticleIdGet: async (articleId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10474
10310
|
// verify required parameter 'articleId' is not null or undefined
|
|
10475
10311
|
assertParamExists('apiV2ArticlesArticleIdGet', 'articleId', articleId)
|
|
10476
10312
|
const localVarPath = `/api/v2/articles/{articleId}`
|
|
@@ -10490,10 +10326,6 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
10490
10326
|
localVarQueryParameter['languageCode'] = languageCode;
|
|
10491
10327
|
}
|
|
10492
10328
|
|
|
10493
|
-
if (returnDefaultValue !== undefined) {
|
|
10494
|
-
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
10495
|
-
}
|
|
10496
|
-
|
|
10497
10329
|
|
|
10498
10330
|
|
|
10499
10331
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -11011,12 +10843,11 @@ export const ArticlesApiFp = function(configuration?: Configuration) {
|
|
|
11011
10843
|
* @summary Get Article.
|
|
11012
10844
|
* @param {string} articleId
|
|
11013
10845
|
* @param {string} [languageCode]
|
|
11014
|
-
* @param {boolean} [returnDefaultValue]
|
|
11015
10846
|
* @param {*} [options] Override http request option.
|
|
11016
10847
|
* @throws {RequiredError}
|
|
11017
10848
|
*/
|
|
11018
|
-
async apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string,
|
|
11019
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2ArticlesArticleIdGet(articleId, languageCode,
|
|
10849
|
+
async apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArticleModel>> {
|
|
10850
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2ArticlesArticleIdGet(articleId, languageCode, options);
|
|
11020
10851
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11021
10852
|
},
|
|
11022
10853
|
/**
|
|
@@ -11189,12 +11020,11 @@ export const ArticlesApiFactory = function (configuration?: Configuration, baseP
|
|
|
11189
11020
|
* @summary Get Article.
|
|
11190
11021
|
* @param {string} articleId
|
|
11191
11022
|
* @param {string} [languageCode]
|
|
11192
|
-
* @param {boolean} [returnDefaultValue]
|
|
11193
11023
|
* @param {*} [options] Override http request option.
|
|
11194
11024
|
* @throws {RequiredError}
|
|
11195
11025
|
*/
|
|
11196
|
-
apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string,
|
|
11197
|
-
return localVarFp.apiV2ArticlesArticleIdGet(articleId, languageCode,
|
|
11026
|
+
apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string, options?: any): AxiosPromise<ArticleModel> {
|
|
11027
|
+
return localVarFp.apiV2ArticlesArticleIdGet(articleId, languageCode, options).then((request) => request(axios, basePath));
|
|
11198
11028
|
},
|
|
11199
11029
|
/**
|
|
11200
11030
|
*
|
|
@@ -11362,13 +11192,12 @@ export class ArticlesApi extends BaseAPI {
|
|
|
11362
11192
|
* @summary Get Article.
|
|
11363
11193
|
* @param {string} articleId
|
|
11364
11194
|
* @param {string} [languageCode]
|
|
11365
|
-
* @param {boolean} [returnDefaultValue]
|
|
11366
11195
|
* @param {*} [options] Override http request option.
|
|
11367
11196
|
* @throws {RequiredError}
|
|
11368
11197
|
* @memberof ArticlesApi
|
|
11369
11198
|
*/
|
|
11370
|
-
public apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string,
|
|
11371
|
-
return ArticlesApiFp(this.configuration).apiV2ArticlesArticleIdGet(articleId, languageCode,
|
|
11199
|
+
public apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
11200
|
+
return ArticlesApiFp(this.configuration).apiV2ArticlesArticleIdGet(articleId, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
11372
11201
|
}
|
|
11373
11202
|
|
|
11374
11203
|
/**
|
|
@@ -11514,10 +11343,11 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
11514
11343
|
*
|
|
11515
11344
|
* @summary Get booking.
|
|
11516
11345
|
* @param {string} bookingId
|
|
11346
|
+
* @param {string} [languageCode]
|
|
11517
11347
|
* @param {*} [options] Override http request option.
|
|
11518
11348
|
* @throws {RequiredError}
|
|
11519
11349
|
*/
|
|
11520
|
-
apiV2BookingsBookingIdGet: async (bookingId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
11350
|
+
apiV2BookingsBookingIdGet: async (bookingId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
11521
11351
|
// verify required parameter 'bookingId' is not null or undefined
|
|
11522
11352
|
assertParamExists('apiV2BookingsBookingIdGet', 'bookingId', bookingId)
|
|
11523
11353
|
const localVarPath = `/api/v2/bookings/{bookingId}`
|
|
@@ -11537,6 +11367,10 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
11537
11367
|
// oauth required
|
|
11538
11368
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_api", "IdentityServerApi"], configuration)
|
|
11539
11369
|
|
|
11370
|
+
if (languageCode !== undefined) {
|
|
11371
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
11372
|
+
}
|
|
11373
|
+
|
|
11540
11374
|
|
|
11541
11375
|
|
|
11542
11376
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -11631,19 +11465,26 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
11631
11465
|
/**
|
|
11632
11466
|
*
|
|
11633
11467
|
* @summary Get all bookings.
|
|
11634
|
-
* @param {string} [
|
|
11468
|
+
* @param {string} [hospitalId]
|
|
11469
|
+
* @param {string} [hospitalName]
|
|
11470
|
+
* @param {string} [dealId]
|
|
11471
|
+
* @param {string} [dealName]
|
|
11635
11472
|
* @param {boolean} [isOpen]
|
|
11636
11473
|
* @param {boolean} [isCompleted]
|
|
11637
11474
|
* @param {BookingStatus} [status]
|
|
11638
11475
|
* @param {string} [dealPackageId]
|
|
11639
|
-
* @param {
|
|
11476
|
+
* @param {SortingOrder} [sortRequestDate]
|
|
11477
|
+
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
11478
|
+
* @param {boolean} [isExternal]
|
|
11479
|
+
* @param {boolean} [paymentEnabled]
|
|
11480
|
+
* @param {string} [languageCode]
|
|
11640
11481
|
* @param {number} [page]
|
|
11641
11482
|
* @param {number} [limit]
|
|
11642
11483
|
* @param {Date} [lastRetrieved]
|
|
11643
11484
|
* @param {*} [options] Override http request option.
|
|
11644
11485
|
* @throws {RequiredError}
|
|
11645
11486
|
*/
|
|
11646
|
-
apiV2BookingsGet: async (
|
|
11487
|
+
apiV2BookingsGet: async (hospitalId?: string, hospitalName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
11647
11488
|
const localVarPath = `/api/v2/bookings`;
|
|
11648
11489
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11649
11490
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -11660,8 +11501,20 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
11660
11501
|
// oauth required
|
|
11661
11502
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_api", "IdentityServerApi"], configuration)
|
|
11662
11503
|
|
|
11663
|
-
if (
|
|
11664
|
-
localVarQueryParameter['
|
|
11504
|
+
if (hospitalId !== undefined) {
|
|
11505
|
+
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
11506
|
+
}
|
|
11507
|
+
|
|
11508
|
+
if (hospitalName !== undefined) {
|
|
11509
|
+
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
11510
|
+
}
|
|
11511
|
+
|
|
11512
|
+
if (dealId !== undefined) {
|
|
11513
|
+
localVarQueryParameter['DealId'] = dealId;
|
|
11514
|
+
}
|
|
11515
|
+
|
|
11516
|
+
if (dealName !== undefined) {
|
|
11517
|
+
localVarQueryParameter['DealName'] = dealName;
|
|
11665
11518
|
}
|
|
11666
11519
|
|
|
11667
11520
|
if (isOpen !== undefined) {
|
|
@@ -11680,8 +11533,24 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
11680
11533
|
localVarQueryParameter['DealPackageId'] = dealPackageId;
|
|
11681
11534
|
}
|
|
11682
11535
|
|
|
11683
|
-
if (
|
|
11684
|
-
localVarQueryParameter['
|
|
11536
|
+
if (sortRequestDate !== undefined) {
|
|
11537
|
+
localVarQueryParameter['SortRequestDate'] = sortRequestDate;
|
|
11538
|
+
}
|
|
11539
|
+
|
|
11540
|
+
if (sortConfirmedDateStart !== undefined) {
|
|
11541
|
+
localVarQueryParameter['SortConfirmedDateStart'] = sortConfirmedDateStart;
|
|
11542
|
+
}
|
|
11543
|
+
|
|
11544
|
+
if (isExternal !== undefined) {
|
|
11545
|
+
localVarQueryParameter['IsExternal'] = isExternal;
|
|
11546
|
+
}
|
|
11547
|
+
|
|
11548
|
+
if (paymentEnabled !== undefined) {
|
|
11549
|
+
localVarQueryParameter['PaymentEnabled'] = paymentEnabled;
|
|
11550
|
+
}
|
|
11551
|
+
|
|
11552
|
+
if (languageCode !== undefined) {
|
|
11553
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
11685
11554
|
}
|
|
11686
11555
|
|
|
11687
11556
|
if (page !== undefined) {
|
|
@@ -11765,11 +11634,12 @@ export const BookingsApiFp = function(configuration?: Configuration) {
|
|
|
11765
11634
|
*
|
|
11766
11635
|
* @summary Get booking.
|
|
11767
11636
|
* @param {string} bookingId
|
|
11637
|
+
* @param {string} [languageCode]
|
|
11768
11638
|
* @param {*} [options] Override http request option.
|
|
11769
11639
|
* @throws {RequiredError}
|
|
11770
11640
|
*/
|
|
11771
|
-
async apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingModel>> {
|
|
11772
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2BookingsBookingIdGet(bookingId, options);
|
|
11641
|
+
async apiV2BookingsBookingIdGet(bookingId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingModel>> {
|
|
11642
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2BookingsBookingIdGet(bookingId, languageCode, options);
|
|
11773
11643
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11774
11644
|
},
|
|
11775
11645
|
/**
|
|
@@ -11798,20 +11668,27 @@ export const BookingsApiFp = function(configuration?: Configuration) {
|
|
|
11798
11668
|
/**
|
|
11799
11669
|
*
|
|
11800
11670
|
* @summary Get all bookings.
|
|
11801
|
-
* @param {string} [
|
|
11671
|
+
* @param {string} [hospitalId]
|
|
11672
|
+
* @param {string} [hospitalName]
|
|
11673
|
+
* @param {string} [dealId]
|
|
11674
|
+
* @param {string} [dealName]
|
|
11802
11675
|
* @param {boolean} [isOpen]
|
|
11803
11676
|
* @param {boolean} [isCompleted]
|
|
11804
11677
|
* @param {BookingStatus} [status]
|
|
11805
11678
|
* @param {string} [dealPackageId]
|
|
11806
|
-
* @param {
|
|
11679
|
+
* @param {SortingOrder} [sortRequestDate]
|
|
11680
|
+
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
11681
|
+
* @param {boolean} [isExternal]
|
|
11682
|
+
* @param {boolean} [paymentEnabled]
|
|
11683
|
+
* @param {string} [languageCode]
|
|
11807
11684
|
* @param {number} [page]
|
|
11808
11685
|
* @param {number} [limit]
|
|
11809
11686
|
* @param {Date} [lastRetrieved]
|
|
11810
11687
|
* @param {*} [options] Override http request option.
|
|
11811
11688
|
* @throws {RequiredError}
|
|
11812
11689
|
*/
|
|
11813
|
-
async apiV2BookingsGet(
|
|
11814
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2BookingsGet(
|
|
11690
|
+
async apiV2BookingsGet(hospitalId?: string, hospitalName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingsModel>> {
|
|
11691
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2BookingsGet(hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, page, limit, lastRetrieved, options);
|
|
11815
11692
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11816
11693
|
},
|
|
11817
11694
|
/**
|
|
@@ -11840,11 +11717,12 @@ export const BookingsApiFactory = function (configuration?: Configuration, baseP
|
|
|
11840
11717
|
*
|
|
11841
11718
|
* @summary Get booking.
|
|
11842
11719
|
* @param {string} bookingId
|
|
11720
|
+
* @param {string} [languageCode]
|
|
11843
11721
|
* @param {*} [options] Override http request option.
|
|
11844
11722
|
* @throws {RequiredError}
|
|
11845
11723
|
*/
|
|
11846
|
-
apiV2BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel> {
|
|
11847
|
-
return localVarFp.apiV2BookingsBookingIdGet(bookingId, options).then((request) => request(axios, basePath));
|
|
11724
|
+
apiV2BookingsBookingIdGet(bookingId: string, languageCode?: string, options?: any): AxiosPromise<BookingModel> {
|
|
11725
|
+
return localVarFp.apiV2BookingsBookingIdGet(bookingId, languageCode, options).then((request) => request(axios, basePath));
|
|
11848
11726
|
},
|
|
11849
11727
|
/**
|
|
11850
11728
|
*
|
|
@@ -11870,20 +11748,27 @@ export const BookingsApiFactory = function (configuration?: Configuration, baseP
|
|
|
11870
11748
|
/**
|
|
11871
11749
|
*
|
|
11872
11750
|
* @summary Get all bookings.
|
|
11873
|
-
* @param {string} [
|
|
11751
|
+
* @param {string} [hospitalId]
|
|
11752
|
+
* @param {string} [hospitalName]
|
|
11753
|
+
* @param {string} [dealId]
|
|
11754
|
+
* @param {string} [dealName]
|
|
11874
11755
|
* @param {boolean} [isOpen]
|
|
11875
11756
|
* @param {boolean} [isCompleted]
|
|
11876
11757
|
* @param {BookingStatus} [status]
|
|
11877
11758
|
* @param {string} [dealPackageId]
|
|
11878
|
-
* @param {
|
|
11759
|
+
* @param {SortingOrder} [sortRequestDate]
|
|
11760
|
+
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
11761
|
+
* @param {boolean} [isExternal]
|
|
11762
|
+
* @param {boolean} [paymentEnabled]
|
|
11763
|
+
* @param {string} [languageCode]
|
|
11879
11764
|
* @param {number} [page]
|
|
11880
11765
|
* @param {number} [limit]
|
|
11881
11766
|
* @param {Date} [lastRetrieved]
|
|
11882
11767
|
* @param {*} [options] Override http request option.
|
|
11883
11768
|
* @throws {RequiredError}
|
|
11884
11769
|
*/
|
|
11885
|
-
apiV2BookingsGet(
|
|
11886
|
-
return localVarFp.apiV2BookingsGet(
|
|
11770
|
+
apiV2BookingsGet(hospitalId?: string, hospitalName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<BookingsModel> {
|
|
11771
|
+
return localVarFp.apiV2BookingsGet(hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
11887
11772
|
},
|
|
11888
11773
|
/**
|
|
11889
11774
|
*
|
|
@@ -11910,12 +11795,13 @@ export class BookingsApi extends BaseAPI {
|
|
|
11910
11795
|
*
|
|
11911
11796
|
* @summary Get booking.
|
|
11912
11797
|
* @param {string} bookingId
|
|
11798
|
+
* @param {string} [languageCode]
|
|
11913
11799
|
* @param {*} [options] Override http request option.
|
|
11914
11800
|
* @throws {RequiredError}
|
|
11915
11801
|
* @memberof BookingsApi
|
|
11916
11802
|
*/
|
|
11917
|
-
public apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig) {
|
|
11918
|
-
return BookingsApiFp(this.configuration).apiV2BookingsBookingIdGet(bookingId, options).then((request) => request(this.axios, this.basePath));
|
|
11803
|
+
public apiV2BookingsBookingIdGet(bookingId: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
11804
|
+
return BookingsApiFp(this.configuration).apiV2BookingsBookingIdGet(bookingId, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
11919
11805
|
}
|
|
11920
11806
|
|
|
11921
11807
|
/**
|
|
@@ -11946,12 +11832,19 @@ export class BookingsApi extends BaseAPI {
|
|
|
11946
11832
|
/**
|
|
11947
11833
|
*
|
|
11948
11834
|
* @summary Get all bookings.
|
|
11949
|
-
* @param {string} [
|
|
11835
|
+
* @param {string} [hospitalId]
|
|
11836
|
+
* @param {string} [hospitalName]
|
|
11837
|
+
* @param {string} [dealId]
|
|
11838
|
+
* @param {string} [dealName]
|
|
11950
11839
|
* @param {boolean} [isOpen]
|
|
11951
11840
|
* @param {boolean} [isCompleted]
|
|
11952
11841
|
* @param {BookingStatus} [status]
|
|
11953
11842
|
* @param {string} [dealPackageId]
|
|
11954
|
-
* @param {
|
|
11843
|
+
* @param {SortingOrder} [sortRequestDate]
|
|
11844
|
+
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
11845
|
+
* @param {boolean} [isExternal]
|
|
11846
|
+
* @param {boolean} [paymentEnabled]
|
|
11847
|
+
* @param {string} [languageCode]
|
|
11955
11848
|
* @param {number} [page]
|
|
11956
11849
|
* @param {number} [limit]
|
|
11957
11850
|
* @param {Date} [lastRetrieved]
|
|
@@ -11959,8 +11852,8 @@ export class BookingsApi extends BaseAPI {
|
|
|
11959
11852
|
* @throws {RequiredError}
|
|
11960
11853
|
* @memberof BookingsApi
|
|
11961
11854
|
*/
|
|
11962
|
-
public apiV2BookingsGet(
|
|
11963
|
-
return BookingsApiFp(this.configuration).apiV2BookingsGet(
|
|
11855
|
+
public apiV2BookingsGet(hospitalId?: string, hospitalName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
11856
|
+
return BookingsApiFp(this.configuration).apiV2BookingsGet(hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
11964
11857
|
}
|
|
11965
11858
|
|
|
11966
11859
|
/**
|
|
@@ -12711,10 +12604,11 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
12711
12604
|
*
|
|
12712
12605
|
* @summary Get consultation.
|
|
12713
12606
|
* @param {string} consultationId
|
|
12607
|
+
* @param {string} [languageCode]
|
|
12714
12608
|
* @param {*} [options] Override http request option.
|
|
12715
12609
|
* @throws {RequiredError}
|
|
12716
12610
|
*/
|
|
12717
|
-
apiV2ConsultationsConsultationIdGet: async (consultationId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
12611
|
+
apiV2ConsultationsConsultationIdGet: async (consultationId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
12718
12612
|
// verify required parameter 'consultationId' is not null or undefined
|
|
12719
12613
|
assertParamExists('apiV2ConsultationsConsultationIdGet', 'consultationId', consultationId)
|
|
12720
12614
|
const localVarPath = `/api/v2/consultations/{consultationId}`
|
|
@@ -12734,6 +12628,10 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
12734
12628
|
// oauth required
|
|
12735
12629
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_api", "IdentityServerApi"], configuration)
|
|
12736
12630
|
|
|
12631
|
+
if (languageCode !== undefined) {
|
|
12632
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
12633
|
+
}
|
|
12634
|
+
|
|
12737
12635
|
|
|
12738
12636
|
|
|
12739
12637
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -12828,19 +12726,24 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
12828
12726
|
/**
|
|
12829
12727
|
*
|
|
12830
12728
|
* @summary Get all consultations.
|
|
12831
|
-
* @param {string} [
|
|
12729
|
+
* @param {string} [hospitalId]
|
|
12730
|
+
* @param {string} [hospitalName]
|
|
12731
|
+
* @param {string} [doctorId]
|
|
12732
|
+
* @param {string} [doctorName]
|
|
12733
|
+
* @param {string} [dealId]
|
|
12734
|
+
* @param {string} [dealName]
|
|
12832
12735
|
* @param {boolean} [isOpen]
|
|
12833
12736
|
* @param {boolean} [isCompleted]
|
|
12834
12737
|
* @param {ConsultationStatus} [status]
|
|
12835
12738
|
* @param {ConsultationType} [consultationType]
|
|
12836
|
-
* @param {string} [
|
|
12739
|
+
* @param {string} [languageCode]
|
|
12837
12740
|
* @param {number} [page]
|
|
12838
12741
|
* @param {number} [limit]
|
|
12839
12742
|
* @param {Date} [lastRetrieved]
|
|
12840
12743
|
* @param {*} [options] Override http request option.
|
|
12841
12744
|
* @throws {RequiredError}
|
|
12842
12745
|
*/
|
|
12843
|
-
apiV2ConsultationsGet: async (
|
|
12746
|
+
apiV2ConsultationsGet: async (hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
12844
12747
|
const localVarPath = `/api/v2/consultations`;
|
|
12845
12748
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12846
12749
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -12857,8 +12760,28 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
12857
12760
|
// oauth required
|
|
12858
12761
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_api", "IdentityServerApi"], configuration)
|
|
12859
12762
|
|
|
12860
|
-
if (
|
|
12861
|
-
localVarQueryParameter['
|
|
12763
|
+
if (hospitalId !== undefined) {
|
|
12764
|
+
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
12765
|
+
}
|
|
12766
|
+
|
|
12767
|
+
if (hospitalName !== undefined) {
|
|
12768
|
+
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
12769
|
+
}
|
|
12770
|
+
|
|
12771
|
+
if (doctorId !== undefined) {
|
|
12772
|
+
localVarQueryParameter['DoctorId'] = doctorId;
|
|
12773
|
+
}
|
|
12774
|
+
|
|
12775
|
+
if (doctorName !== undefined) {
|
|
12776
|
+
localVarQueryParameter['DoctorName'] = doctorName;
|
|
12777
|
+
}
|
|
12778
|
+
|
|
12779
|
+
if (dealId !== undefined) {
|
|
12780
|
+
localVarQueryParameter['DealId'] = dealId;
|
|
12781
|
+
}
|
|
12782
|
+
|
|
12783
|
+
if (dealName !== undefined) {
|
|
12784
|
+
localVarQueryParameter['DealName'] = dealName;
|
|
12862
12785
|
}
|
|
12863
12786
|
|
|
12864
12787
|
if (isOpen !== undefined) {
|
|
@@ -12877,8 +12800,8 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
12877
12800
|
localVarQueryParameter['ConsultationType'] = consultationType;
|
|
12878
12801
|
}
|
|
12879
12802
|
|
|
12880
|
-
if (
|
|
12881
|
-
localVarQueryParameter['
|
|
12803
|
+
if (languageCode !== undefined) {
|
|
12804
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
12882
12805
|
}
|
|
12883
12806
|
|
|
12884
12807
|
if (page !== undefined) {
|
|
@@ -12962,11 +12885,12 @@ export const ConsultationsApiFp = function(configuration?: Configuration) {
|
|
|
12962
12885
|
*
|
|
12963
12886
|
* @summary Get consultation.
|
|
12964
12887
|
* @param {string} consultationId
|
|
12888
|
+
* @param {string} [languageCode]
|
|
12965
12889
|
* @param {*} [options] Override http request option.
|
|
12966
12890
|
* @throws {RequiredError}
|
|
12967
12891
|
*/
|
|
12968
|
-
async apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConsultationModel>> {
|
|
12969
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2ConsultationsConsultationIdGet(consultationId, options);
|
|
12892
|
+
async apiV2ConsultationsConsultationIdGet(consultationId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConsultationModel>> {
|
|
12893
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2ConsultationsConsultationIdGet(consultationId, languageCode, options);
|
|
12970
12894
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
12971
12895
|
},
|
|
12972
12896
|
/**
|
|
@@ -12995,20 +12919,25 @@ export const ConsultationsApiFp = function(configuration?: Configuration) {
|
|
|
12995
12919
|
/**
|
|
12996
12920
|
*
|
|
12997
12921
|
* @summary Get all consultations.
|
|
12998
|
-
* @param {string} [
|
|
12922
|
+
* @param {string} [hospitalId]
|
|
12923
|
+
* @param {string} [hospitalName]
|
|
12924
|
+
* @param {string} [doctorId]
|
|
12925
|
+
* @param {string} [doctorName]
|
|
12926
|
+
* @param {string} [dealId]
|
|
12927
|
+
* @param {string} [dealName]
|
|
12999
12928
|
* @param {boolean} [isOpen]
|
|
13000
12929
|
* @param {boolean} [isCompleted]
|
|
13001
12930
|
* @param {ConsultationStatus} [status]
|
|
13002
12931
|
* @param {ConsultationType} [consultationType]
|
|
13003
|
-
* @param {string} [
|
|
12932
|
+
* @param {string} [languageCode]
|
|
13004
12933
|
* @param {number} [page]
|
|
13005
12934
|
* @param {number} [limit]
|
|
13006
12935
|
* @param {Date} [lastRetrieved]
|
|
13007
12936
|
* @param {*} [options] Override http request option.
|
|
13008
12937
|
* @throws {RequiredError}
|
|
13009
12938
|
*/
|
|
13010
|
-
async apiV2ConsultationsGet(
|
|
13011
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2ConsultationsGet(
|
|
12939
|
+
async apiV2ConsultationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConsultationsModel>> {
|
|
12940
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2ConsultationsGet(hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, languageCode, page, limit, lastRetrieved, options);
|
|
13012
12941
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
13013
12942
|
},
|
|
13014
12943
|
/**
|
|
@@ -13037,11 +12966,12 @@ export const ConsultationsApiFactory = function (configuration?: Configuration,
|
|
|
13037
12966
|
*
|
|
13038
12967
|
* @summary Get consultation.
|
|
13039
12968
|
* @param {string} consultationId
|
|
12969
|
+
* @param {string} [languageCode]
|
|
13040
12970
|
* @param {*} [options] Override http request option.
|
|
13041
12971
|
* @throws {RequiredError}
|
|
13042
12972
|
*/
|
|
13043
|
-
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel> {
|
|
13044
|
-
return localVarFp.apiV2ConsultationsConsultationIdGet(consultationId, options).then((request) => request(axios, basePath));
|
|
12973
|
+
apiV2ConsultationsConsultationIdGet(consultationId: string, languageCode?: string, options?: any): AxiosPromise<ConsultationModel> {
|
|
12974
|
+
return localVarFp.apiV2ConsultationsConsultationIdGet(consultationId, languageCode, options).then((request) => request(axios, basePath));
|
|
13045
12975
|
},
|
|
13046
12976
|
/**
|
|
13047
12977
|
*
|
|
@@ -13067,20 +12997,25 @@ export const ConsultationsApiFactory = function (configuration?: Configuration,
|
|
|
13067
12997
|
/**
|
|
13068
12998
|
*
|
|
13069
12999
|
* @summary Get all consultations.
|
|
13070
|
-
* @param {string} [
|
|
13000
|
+
* @param {string} [hospitalId]
|
|
13001
|
+
* @param {string} [hospitalName]
|
|
13002
|
+
* @param {string} [doctorId]
|
|
13003
|
+
* @param {string} [doctorName]
|
|
13004
|
+
* @param {string} [dealId]
|
|
13005
|
+
* @param {string} [dealName]
|
|
13071
13006
|
* @param {boolean} [isOpen]
|
|
13072
13007
|
* @param {boolean} [isCompleted]
|
|
13073
13008
|
* @param {ConsultationStatus} [status]
|
|
13074
13009
|
* @param {ConsultationType} [consultationType]
|
|
13075
|
-
* @param {string} [
|
|
13010
|
+
* @param {string} [languageCode]
|
|
13076
13011
|
* @param {number} [page]
|
|
13077
13012
|
* @param {number} [limit]
|
|
13078
13013
|
* @param {Date} [lastRetrieved]
|
|
13079
13014
|
* @param {*} [options] Override http request option.
|
|
13080
13015
|
* @throws {RequiredError}
|
|
13081
13016
|
*/
|
|
13082
|
-
apiV2ConsultationsGet(
|
|
13083
|
-
return localVarFp.apiV2ConsultationsGet(
|
|
13017
|
+
apiV2ConsultationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ConsultationsModel> {
|
|
13018
|
+
return localVarFp.apiV2ConsultationsGet(hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
13084
13019
|
},
|
|
13085
13020
|
/**
|
|
13086
13021
|
*
|
|
@@ -13107,12 +13042,13 @@ export class ConsultationsApi extends BaseAPI {
|
|
|
13107
13042
|
*
|
|
13108
13043
|
* @summary Get consultation.
|
|
13109
13044
|
* @param {string} consultationId
|
|
13045
|
+
* @param {string} [languageCode]
|
|
13110
13046
|
* @param {*} [options] Override http request option.
|
|
13111
13047
|
* @throws {RequiredError}
|
|
13112
13048
|
* @memberof ConsultationsApi
|
|
13113
13049
|
*/
|
|
13114
|
-
public apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig) {
|
|
13115
|
-
return ConsultationsApiFp(this.configuration).apiV2ConsultationsConsultationIdGet(consultationId, options).then((request) => request(this.axios, this.basePath));
|
|
13050
|
+
public apiV2ConsultationsConsultationIdGet(consultationId: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
13051
|
+
return ConsultationsApiFp(this.configuration).apiV2ConsultationsConsultationIdGet(consultationId, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
13116
13052
|
}
|
|
13117
13053
|
|
|
13118
13054
|
/**
|
|
@@ -13143,12 +13079,17 @@ export class ConsultationsApi extends BaseAPI {
|
|
|
13143
13079
|
/**
|
|
13144
13080
|
*
|
|
13145
13081
|
* @summary Get all consultations.
|
|
13146
|
-
* @param {string} [
|
|
13082
|
+
* @param {string} [hospitalId]
|
|
13083
|
+
* @param {string} [hospitalName]
|
|
13084
|
+
* @param {string} [doctorId]
|
|
13085
|
+
* @param {string} [doctorName]
|
|
13086
|
+
* @param {string} [dealId]
|
|
13087
|
+
* @param {string} [dealName]
|
|
13147
13088
|
* @param {boolean} [isOpen]
|
|
13148
13089
|
* @param {boolean} [isCompleted]
|
|
13149
13090
|
* @param {ConsultationStatus} [status]
|
|
13150
13091
|
* @param {ConsultationType} [consultationType]
|
|
13151
|
-
* @param {string} [
|
|
13092
|
+
* @param {string} [languageCode]
|
|
13152
13093
|
* @param {number} [page]
|
|
13153
13094
|
* @param {number} [limit]
|
|
13154
13095
|
* @param {Date} [lastRetrieved]
|
|
@@ -13156,8 +13097,8 @@ export class ConsultationsApi extends BaseAPI {
|
|
|
13156
13097
|
* @throws {RequiredError}
|
|
13157
13098
|
* @memberof ConsultationsApi
|
|
13158
13099
|
*/
|
|
13159
|
-
public apiV2ConsultationsGet(
|
|
13160
|
-
return ConsultationsApiFp(this.configuration).apiV2ConsultationsGet(
|
|
13100
|
+
public apiV2ConsultationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
13101
|
+
return ConsultationsApiFp(this.configuration).apiV2ConsultationsGet(hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
13161
13102
|
}
|
|
13162
13103
|
|
|
13163
13104
|
/**
|
|
@@ -15322,16 +15263,19 @@ export class DealsApi extends BaseAPI {
|
|
|
15322
15263
|
|
|
15323
15264
|
|
|
15324
15265
|
/**
|
|
15325
|
-
*
|
|
15266
|
+
* DoctorAffiliationsApi - axios parameter creator
|
|
15326
15267
|
* @export
|
|
15327
15268
|
*/
|
|
15328
|
-
export const
|
|
15269
|
+
export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
15329
15270
|
return {
|
|
15330
15271
|
/**
|
|
15331
15272
|
*
|
|
15332
15273
|
* @summary Get all doctor affiliations.
|
|
15333
|
-
* @param {string}
|
|
15274
|
+
* @param {string} [hospitalId]
|
|
15334
15275
|
* @param {string} [hospitalName]
|
|
15276
|
+
* @param {string} [doctorId]
|
|
15277
|
+
* @param {string} [doctorName]
|
|
15278
|
+
* @param {string} [doctorSlug]
|
|
15335
15279
|
* @param {string} [languageCode]
|
|
15336
15280
|
* @param {number} [page]
|
|
15337
15281
|
* @param {number} [limit]
|
|
@@ -15339,11 +15283,8 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
15339
15283
|
* @param {*} [options] Override http request option.
|
|
15340
15284
|
* @throws {RequiredError}
|
|
15341
15285
|
*/
|
|
15342
|
-
|
|
15343
|
-
|
|
15344
|
-
assertParamExists('apiV2DoctorsDoctorIdAffiliationsGet', 'doctorId', doctorId)
|
|
15345
|
-
const localVarPath = `/api/v2/doctors/{doctorId}/affiliations`
|
|
15346
|
-
.replace(`{${"doctorId"}}`, encodeURIComponent(String(doctorId)));
|
|
15286
|
+
apiV2DoctoraffiliationsGet: async (hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
15287
|
+
const localVarPath = `/api/v2/doctoraffiliations`;
|
|
15347
15288
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
15348
15289
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
15349
15290
|
let baseOptions;
|
|
@@ -15355,10 +15296,26 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
15355
15296
|
const localVarHeaderParameter = {} as any;
|
|
15356
15297
|
const localVarQueryParameter = {} as any;
|
|
15357
15298
|
|
|
15299
|
+
if (hospitalId !== undefined) {
|
|
15300
|
+
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
15301
|
+
}
|
|
15302
|
+
|
|
15358
15303
|
if (hospitalName !== undefined) {
|
|
15359
15304
|
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
15360
15305
|
}
|
|
15361
15306
|
|
|
15307
|
+
if (doctorId !== undefined) {
|
|
15308
|
+
localVarQueryParameter['DoctorId'] = doctorId;
|
|
15309
|
+
}
|
|
15310
|
+
|
|
15311
|
+
if (doctorName !== undefined) {
|
|
15312
|
+
localVarQueryParameter['DoctorName'] = doctorName;
|
|
15313
|
+
}
|
|
15314
|
+
|
|
15315
|
+
if (doctorSlug !== undefined) {
|
|
15316
|
+
localVarQueryParameter['DoctorSlug'] = doctorSlug;
|
|
15317
|
+
}
|
|
15318
|
+
|
|
15362
15319
|
if (languageCode !== undefined) {
|
|
15363
15320
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
15364
15321
|
}
|
|
@@ -15391,19 +15348,16 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
15391
15348
|
/**
|
|
15392
15349
|
*
|
|
15393
15350
|
* @summary Get doctor affiliation.
|
|
15394
|
-
* @param {string}
|
|
15395
|
-
* @param {string}
|
|
15351
|
+
* @param {string} id
|
|
15352
|
+
* @param {string} [languageCode]
|
|
15396
15353
|
* @param {*} [options] Override http request option.
|
|
15397
15354
|
* @throws {RequiredError}
|
|
15398
15355
|
*/
|
|
15399
|
-
|
|
15400
|
-
// verify required parameter '
|
|
15401
|
-
assertParamExists('
|
|
15402
|
-
|
|
15403
|
-
|
|
15404
|
-
const localVarPath = `/api/v2/doctors/{doctorId}/affiliations/{hospitalId}`
|
|
15405
|
-
.replace(`{${"doctorId"}}`, encodeURIComponent(String(doctorId)))
|
|
15406
|
-
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
15356
|
+
apiV2DoctoraffiliationsIdGet: async (id: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
15357
|
+
// verify required parameter 'id' is not null or undefined
|
|
15358
|
+
assertParamExists('apiV2DoctoraffiliationsIdGet', 'id', id)
|
|
15359
|
+
const localVarPath = `/api/v2/doctoraffiliations/{id}`
|
|
15360
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
15407
15361
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
15408
15362
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
15409
15363
|
let baseOptions;
|
|
@@ -15415,6 +15369,10 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
15415
15369
|
const localVarHeaderParameter = {} as any;
|
|
15416
15370
|
const localVarQueryParameter = {} as any;
|
|
15417
15371
|
|
|
15372
|
+
if (languageCode !== undefined) {
|
|
15373
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
15374
|
+
}
|
|
15375
|
+
|
|
15418
15376
|
|
|
15419
15377
|
|
|
15420
15378
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -15426,6 +15384,137 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
15426
15384
|
options: localVarRequestOptions,
|
|
15427
15385
|
};
|
|
15428
15386
|
},
|
|
15387
|
+
}
|
|
15388
|
+
};
|
|
15389
|
+
|
|
15390
|
+
/**
|
|
15391
|
+
* DoctorAffiliationsApi - functional programming interface
|
|
15392
|
+
* @export
|
|
15393
|
+
*/
|
|
15394
|
+
export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
15395
|
+
const localVarAxiosParamCreator = DoctorAffiliationsApiAxiosParamCreator(configuration)
|
|
15396
|
+
return {
|
|
15397
|
+
/**
|
|
15398
|
+
*
|
|
15399
|
+
* @summary Get all doctor affiliations.
|
|
15400
|
+
* @param {string} [hospitalId]
|
|
15401
|
+
* @param {string} [hospitalName]
|
|
15402
|
+
* @param {string} [doctorId]
|
|
15403
|
+
* @param {string} [doctorName]
|
|
15404
|
+
* @param {string} [doctorSlug]
|
|
15405
|
+
* @param {string} [languageCode]
|
|
15406
|
+
* @param {number} [page]
|
|
15407
|
+
* @param {number} [limit]
|
|
15408
|
+
* @param {Date} [lastRetrieved]
|
|
15409
|
+
* @param {*} [options] Override http request option.
|
|
15410
|
+
* @throws {RequiredError}
|
|
15411
|
+
*/
|
|
15412
|
+
async apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
|
|
15413
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options);
|
|
15414
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
15415
|
+
},
|
|
15416
|
+
/**
|
|
15417
|
+
*
|
|
15418
|
+
* @summary Get doctor affiliation.
|
|
15419
|
+
* @param {string} id
|
|
15420
|
+
* @param {string} [languageCode]
|
|
15421
|
+
* @param {*} [options] Override http request option.
|
|
15422
|
+
* @throws {RequiredError}
|
|
15423
|
+
*/
|
|
15424
|
+
async apiV2DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
|
|
15425
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctoraffiliationsIdGet(id, languageCode, options);
|
|
15426
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
15427
|
+
},
|
|
15428
|
+
}
|
|
15429
|
+
};
|
|
15430
|
+
|
|
15431
|
+
/**
|
|
15432
|
+
* DoctorAffiliationsApi - factory interface
|
|
15433
|
+
* @export
|
|
15434
|
+
*/
|
|
15435
|
+
export const DoctorAffiliationsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
15436
|
+
const localVarFp = DoctorAffiliationsApiFp(configuration)
|
|
15437
|
+
return {
|
|
15438
|
+
/**
|
|
15439
|
+
*
|
|
15440
|
+
* @summary Get all doctor affiliations.
|
|
15441
|
+
* @param {string} [hospitalId]
|
|
15442
|
+
* @param {string} [hospitalName]
|
|
15443
|
+
* @param {string} [doctorId]
|
|
15444
|
+
* @param {string} [doctorName]
|
|
15445
|
+
* @param {string} [doctorSlug]
|
|
15446
|
+
* @param {string} [languageCode]
|
|
15447
|
+
* @param {number} [page]
|
|
15448
|
+
* @param {number} [limit]
|
|
15449
|
+
* @param {Date} [lastRetrieved]
|
|
15450
|
+
* @param {*} [options] Override http request option.
|
|
15451
|
+
* @throws {RequiredError}
|
|
15452
|
+
*/
|
|
15453
|
+
apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
|
|
15454
|
+
return localVarFp.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
15455
|
+
},
|
|
15456
|
+
/**
|
|
15457
|
+
*
|
|
15458
|
+
* @summary Get doctor affiliation.
|
|
15459
|
+
* @param {string} id
|
|
15460
|
+
* @param {string} [languageCode]
|
|
15461
|
+
* @param {*} [options] Override http request option.
|
|
15462
|
+
* @throws {RequiredError}
|
|
15463
|
+
*/
|
|
15464
|
+
apiV2DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: any): AxiosPromise<DoctorAffiliationModel> {
|
|
15465
|
+
return localVarFp.apiV2DoctoraffiliationsIdGet(id, languageCode, options).then((request) => request(axios, basePath));
|
|
15466
|
+
},
|
|
15467
|
+
};
|
|
15468
|
+
};
|
|
15469
|
+
|
|
15470
|
+
/**
|
|
15471
|
+
* DoctorAffiliationsApi - object-oriented interface
|
|
15472
|
+
* @export
|
|
15473
|
+
* @class DoctorAffiliationsApi
|
|
15474
|
+
* @extends {BaseAPI}
|
|
15475
|
+
*/
|
|
15476
|
+
export class DoctorAffiliationsApi extends BaseAPI {
|
|
15477
|
+
/**
|
|
15478
|
+
*
|
|
15479
|
+
* @summary Get all doctor affiliations.
|
|
15480
|
+
* @param {string} [hospitalId]
|
|
15481
|
+
* @param {string} [hospitalName]
|
|
15482
|
+
* @param {string} [doctorId]
|
|
15483
|
+
* @param {string} [doctorName]
|
|
15484
|
+
* @param {string} [doctorSlug]
|
|
15485
|
+
* @param {string} [languageCode]
|
|
15486
|
+
* @param {number} [page]
|
|
15487
|
+
* @param {number} [limit]
|
|
15488
|
+
* @param {Date} [lastRetrieved]
|
|
15489
|
+
* @param {*} [options] Override http request option.
|
|
15490
|
+
* @throws {RequiredError}
|
|
15491
|
+
* @memberof DoctorAffiliationsApi
|
|
15492
|
+
*/
|
|
15493
|
+
public apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
15494
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
15495
|
+
}
|
|
15496
|
+
|
|
15497
|
+
/**
|
|
15498
|
+
*
|
|
15499
|
+
* @summary Get doctor affiliation.
|
|
15500
|
+
* @param {string} id
|
|
15501
|
+
* @param {string} [languageCode]
|
|
15502
|
+
* @param {*} [options] Override http request option.
|
|
15503
|
+
* @throws {RequiredError}
|
|
15504
|
+
* @memberof DoctorAffiliationsApi
|
|
15505
|
+
*/
|
|
15506
|
+
public apiV2DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
15507
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV2DoctoraffiliationsIdGet(id, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
15508
|
+
}
|
|
15509
|
+
}
|
|
15510
|
+
|
|
15511
|
+
|
|
15512
|
+
/**
|
|
15513
|
+
* DoctorsApi - axios parameter creator
|
|
15514
|
+
* @export
|
|
15515
|
+
*/
|
|
15516
|
+
export const DoctorsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
15517
|
+
return {
|
|
15429
15518
|
/**
|
|
15430
15519
|
*
|
|
15431
15520
|
* @summary Get DoctorCertificate.
|
|
@@ -16008,14 +16097,13 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
16008
16097
|
* @param {string} [specialtyId]
|
|
16009
16098
|
* @param {string} [specialtyName]
|
|
16010
16099
|
* @param {string} [languageCode]
|
|
16011
|
-
* @param {boolean} [showHidden]
|
|
16012
16100
|
* @param {number} [page]
|
|
16013
16101
|
* @param {number} [limit]
|
|
16014
16102
|
* @param {Date} [lastRetrieved]
|
|
16015
16103
|
* @param {*} [options] Override http request option.
|
|
16016
16104
|
* @throws {RequiredError}
|
|
16017
16105
|
*/
|
|
16018
|
-
apiV2DoctorsDoctorIdSpecialtiesGet: async (doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string,
|
|
16106
|
+
apiV2DoctorsDoctorIdSpecialtiesGet: async (doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
16019
16107
|
// verify required parameter 'doctorId' is not null or undefined
|
|
16020
16108
|
assertParamExists('apiV2DoctorsDoctorIdSpecialtiesGet', 'doctorId', doctorId)
|
|
16021
16109
|
const localVarPath = `/api/v2/doctors/{doctorId}/specialties`
|
|
@@ -16047,10 +16135,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
16047
16135
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
16048
16136
|
}
|
|
16049
16137
|
|
|
16050
|
-
if (showHidden !== undefined) {
|
|
16051
|
-
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
16052
|
-
}
|
|
16053
|
-
|
|
16054
16138
|
if (page !== undefined) {
|
|
16055
16139
|
localVarQueryParameter['page'] = page;
|
|
16056
16140
|
}
|
|
@@ -16414,34 +16498,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
16414
16498
|
export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
16415
16499
|
const localVarAxiosParamCreator = DoctorsApiAxiosParamCreator(configuration)
|
|
16416
16500
|
return {
|
|
16417
|
-
/**
|
|
16418
|
-
*
|
|
16419
|
-
* @summary Get all doctor affiliations.
|
|
16420
|
-
* @param {string} doctorId
|
|
16421
|
-
* @param {string} [hospitalName]
|
|
16422
|
-
* @param {string} [languageCode]
|
|
16423
|
-
* @param {number} [page]
|
|
16424
|
-
* @param {number} [limit]
|
|
16425
|
-
* @param {Date} [lastRetrieved]
|
|
16426
|
-
* @param {*} [options] Override http request option.
|
|
16427
|
-
* @throws {RequiredError}
|
|
16428
|
-
*/
|
|
16429
|
-
async apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
|
|
16430
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options);
|
|
16431
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
16432
|
-
},
|
|
16433
|
-
/**
|
|
16434
|
-
*
|
|
16435
|
-
* @summary Get doctor affiliation.
|
|
16436
|
-
* @param {string} doctorId
|
|
16437
|
-
* @param {string} hospitalId
|
|
16438
|
-
* @param {*} [options] Override http request option.
|
|
16439
|
-
* @throws {RequiredError}
|
|
16440
|
-
*/
|
|
16441
|
-
async apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
|
|
16442
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId, hospitalId, options);
|
|
16443
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
16444
|
-
},
|
|
16445
16501
|
/**
|
|
16446
16502
|
*
|
|
16447
16503
|
* @summary Get DoctorCertificate.
|
|
@@ -16608,15 +16664,14 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
16608
16664
|
* @param {string} [specialtyId]
|
|
16609
16665
|
* @param {string} [specialtyName]
|
|
16610
16666
|
* @param {string} [languageCode]
|
|
16611
|
-
* @param {boolean} [showHidden]
|
|
16612
16667
|
* @param {number} [page]
|
|
16613
16668
|
* @param {number} [limit]
|
|
16614
16669
|
* @param {Date} [lastRetrieved]
|
|
16615
16670
|
* @param {*} [options] Override http request option.
|
|
16616
16671
|
* @throws {RequiredError}
|
|
16617
16672
|
*/
|
|
16618
|
-
async apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string,
|
|
16619
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode,
|
|
16673
|
+
async apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorSpecialtiesModel>> {
|
|
16674
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options);
|
|
16620
16675
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
16621
16676
|
},
|
|
16622
16677
|
/**
|
|
@@ -16708,32 +16763,6 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
16708
16763
|
export const DoctorsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
16709
16764
|
const localVarFp = DoctorsApiFp(configuration)
|
|
16710
16765
|
return {
|
|
16711
|
-
/**
|
|
16712
|
-
*
|
|
16713
|
-
* @summary Get all doctor affiliations.
|
|
16714
|
-
* @param {string} doctorId
|
|
16715
|
-
* @param {string} [hospitalName]
|
|
16716
|
-
* @param {string} [languageCode]
|
|
16717
|
-
* @param {number} [page]
|
|
16718
|
-
* @param {number} [limit]
|
|
16719
|
-
* @param {Date} [lastRetrieved]
|
|
16720
|
-
* @param {*} [options] Override http request option.
|
|
16721
|
-
* @throws {RequiredError}
|
|
16722
|
-
*/
|
|
16723
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
|
|
16724
|
-
return localVarFp.apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
16725
|
-
},
|
|
16726
|
-
/**
|
|
16727
|
-
*
|
|
16728
|
-
* @summary Get doctor affiliation.
|
|
16729
|
-
* @param {string} doctorId
|
|
16730
|
-
* @param {string} hospitalId
|
|
16731
|
-
* @param {*} [options] Override http request option.
|
|
16732
|
-
* @throws {RequiredError}
|
|
16733
|
-
*/
|
|
16734
|
-
apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: any): AxiosPromise<DoctorAffiliationModel> {
|
|
16735
|
-
return localVarFp.apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId, hospitalId, options).then((request) => request(axios, basePath));
|
|
16736
|
-
},
|
|
16737
16766
|
/**
|
|
16738
16767
|
*
|
|
16739
16768
|
* @summary Get DoctorCertificate.
|
|
@@ -16889,15 +16918,14 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
16889
16918
|
* @param {string} [specialtyId]
|
|
16890
16919
|
* @param {string} [specialtyName]
|
|
16891
16920
|
* @param {string} [languageCode]
|
|
16892
|
-
* @param {boolean} [showHidden]
|
|
16893
16921
|
* @param {number} [page]
|
|
16894
16922
|
* @param {number} [limit]
|
|
16895
16923
|
* @param {Date} [lastRetrieved]
|
|
16896
16924
|
* @param {*} [options] Override http request option.
|
|
16897
16925
|
* @throws {RequiredError}
|
|
16898
16926
|
*/
|
|
16899
|
-
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string,
|
|
16900
|
-
return localVarFp.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode,
|
|
16927
|
+
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorSpecialtiesModel> {
|
|
16928
|
+
return localVarFp.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
16901
16929
|
},
|
|
16902
16930
|
/**
|
|
16903
16931
|
*
|
|
@@ -16984,36 +17012,6 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
16984
17012
|
* @extends {BaseAPI}
|
|
16985
17013
|
*/
|
|
16986
17014
|
export class DoctorsApi extends BaseAPI {
|
|
16987
|
-
/**
|
|
16988
|
-
*
|
|
16989
|
-
* @summary Get all doctor affiliations.
|
|
16990
|
-
* @param {string} doctorId
|
|
16991
|
-
* @param {string} [hospitalName]
|
|
16992
|
-
* @param {string} [languageCode]
|
|
16993
|
-
* @param {number} [page]
|
|
16994
|
-
* @param {number} [limit]
|
|
16995
|
-
* @param {Date} [lastRetrieved]
|
|
16996
|
-
* @param {*} [options] Override http request option.
|
|
16997
|
-
* @throws {RequiredError}
|
|
16998
|
-
* @memberof DoctorsApi
|
|
16999
|
-
*/
|
|
17000
|
-
public apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
17001
|
-
return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
17002
|
-
}
|
|
17003
|
-
|
|
17004
|
-
/**
|
|
17005
|
-
*
|
|
17006
|
-
* @summary Get doctor affiliation.
|
|
17007
|
-
* @param {string} doctorId
|
|
17008
|
-
* @param {string} hospitalId
|
|
17009
|
-
* @param {*} [options] Override http request option.
|
|
17010
|
-
* @throws {RequiredError}
|
|
17011
|
-
* @memberof DoctorsApi
|
|
17012
|
-
*/
|
|
17013
|
-
public apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig) {
|
|
17014
|
-
return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId, hospitalId, options).then((request) => request(this.axios, this.basePath));
|
|
17015
|
-
}
|
|
17016
|
-
|
|
17017
17015
|
/**
|
|
17018
17016
|
*
|
|
17019
17017
|
* @summary Get DoctorCertificate.
|
|
@@ -17191,7 +17189,6 @@ export class DoctorsApi extends BaseAPI {
|
|
|
17191
17189
|
* @param {string} [specialtyId]
|
|
17192
17190
|
* @param {string} [specialtyName]
|
|
17193
17191
|
* @param {string} [languageCode]
|
|
17194
|
-
* @param {boolean} [showHidden]
|
|
17195
17192
|
* @param {number} [page]
|
|
17196
17193
|
* @param {number} [limit]
|
|
17197
17194
|
* @param {Date} [lastRetrieved]
|
|
@@ -17199,8 +17196,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
17199
17196
|
* @throws {RequiredError}
|
|
17200
17197
|
* @memberof DoctorsApi
|
|
17201
17198
|
*/
|
|
17202
|
-
public apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string,
|
|
17203
|
-
return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode,
|
|
17199
|
+
public apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
17200
|
+
return DoctorsApiFp(this.configuration).apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
17204
17201
|
}
|
|
17205
17202
|
|
|
17206
17203
|
/**
|
|
@@ -19548,17 +19545,14 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19548
19545
|
* @param {string} [name]
|
|
19549
19546
|
* @param {string} [slug]
|
|
19550
19547
|
* @param {MarketingType} [marketingType]
|
|
19551
|
-
* @param {boolean} [returnDefaultValue]
|
|
19552
|
-
* @param {boolean} [includeServices]
|
|
19553
19548
|
* @param {string} [languageCode]
|
|
19554
|
-
* @param {boolean} [showHidden]
|
|
19555
19549
|
* @param {number} [page]
|
|
19556
19550
|
* @param {number} [limit]
|
|
19557
19551
|
* @param {Date} [lastRetrieved]
|
|
19558
19552
|
* @param {*} [options] Override http request option.
|
|
19559
19553
|
* @throws {RequiredError}
|
|
19560
19554
|
*/
|
|
19561
|
-
apiV2HospitalsHospitalIdSpecialtiesGet: async (hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
19555
|
+
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> => {
|
|
19562
19556
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
19563
19557
|
assertParamExists('apiV2HospitalsHospitalIdSpecialtiesGet', 'hospitalId', hospitalId)
|
|
19564
19558
|
const localVarPath = `/api/v2/hospitals/{hospitalId}/specialties`
|
|
@@ -19606,22 +19600,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19606
19600
|
localVarQueryParameter['MarketingType'] = marketingType;
|
|
19607
19601
|
}
|
|
19608
19602
|
|
|
19609
|
-
if (returnDefaultValue !== undefined) {
|
|
19610
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
19611
|
-
}
|
|
19612
|
-
|
|
19613
|
-
if (includeServices !== undefined) {
|
|
19614
|
-
localVarQueryParameter['IncludeServices'] = includeServices;
|
|
19615
|
-
}
|
|
19616
|
-
|
|
19617
19603
|
if (languageCode !== undefined) {
|
|
19618
19604
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
19619
19605
|
}
|
|
19620
19606
|
|
|
19621
|
-
if (showHidden !== undefined) {
|
|
19622
|
-
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
19623
|
-
}
|
|
19624
|
-
|
|
19625
19607
|
if (page !== undefined) {
|
|
19626
19608
|
localVarQueryParameter['page'] = page;
|
|
19627
19609
|
}
|
|
@@ -19766,17 +19748,14 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19766
19748
|
* @param {string} [name]
|
|
19767
19749
|
* @param {string} [slug]
|
|
19768
19750
|
* @param {MarketingType} [marketingType]
|
|
19769
|
-
* @param {boolean} [returnDefaultValue]
|
|
19770
|
-
* @param {boolean} [includeServices]
|
|
19771
19751
|
* @param {string} [languageCode]
|
|
19772
|
-
* @param {boolean} [showHidden]
|
|
19773
19752
|
* @param {number} [page]
|
|
19774
19753
|
* @param {number} [limit]
|
|
19775
19754
|
* @param {Date} [lastRetrieved]
|
|
19776
19755
|
* @param {*} [options] Override http request option.
|
|
19777
19756
|
* @throws {RequiredError}
|
|
19778
19757
|
*/
|
|
19779
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet: async (hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
19758
|
+
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> => {
|
|
19780
19759
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
19781
19760
|
assertParamExists('apiV2HospitalsHospitalIdSpecialtiesSimpleGet', 'hospitalId', hospitalId)
|
|
19782
19761
|
const localVarPath = `/api/v2/hospitals/{hospitalId}/specialties/simple`
|
|
@@ -19824,22 +19803,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19824
19803
|
localVarQueryParameter['MarketingType'] = marketingType;
|
|
19825
19804
|
}
|
|
19826
19805
|
|
|
19827
|
-
if (returnDefaultValue !== undefined) {
|
|
19828
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
19829
|
-
}
|
|
19830
|
-
|
|
19831
|
-
if (includeServices !== undefined) {
|
|
19832
|
-
localVarQueryParameter['IncludeServices'] = includeServices;
|
|
19833
|
-
}
|
|
19834
|
-
|
|
19835
19806
|
if (languageCode !== undefined) {
|
|
19836
19807
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
19837
19808
|
}
|
|
19838
19809
|
|
|
19839
|
-
if (showHidden !== undefined) {
|
|
19840
|
-
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
19841
|
-
}
|
|
19842
|
-
|
|
19843
19810
|
if (page !== undefined) {
|
|
19844
19811
|
localVarQueryParameter['page'] = page;
|
|
19845
19812
|
}
|
|
@@ -19871,12 +19838,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19871
19838
|
* @param {string} hospitalId
|
|
19872
19839
|
* @param {string} slug
|
|
19873
19840
|
* @param {string} [languageCode]
|
|
19874
|
-
* @param {boolean} [returnDefaultValue]
|
|
19875
|
-
* @param {boolean} [includeServices]
|
|
19876
19841
|
* @param {*} [options] Override http request option.
|
|
19877
19842
|
* @throws {RequiredError}
|
|
19878
19843
|
*/
|
|
19879
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet: async (hospitalId: string, slug: string, languageCode?: string,
|
|
19844
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet: async (hospitalId: string, slug: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19880
19845
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
19881
19846
|
assertParamExists('apiV2HospitalsHospitalIdSpecialtiesSlugGet', 'hospitalId', hospitalId)
|
|
19882
19847
|
// verify required parameter 'slug' is not null or undefined
|
|
@@ -19899,14 +19864,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19899
19864
|
localVarQueryParameter['languageCode'] = languageCode;
|
|
19900
19865
|
}
|
|
19901
19866
|
|
|
19902
|
-
if (returnDefaultValue !== undefined) {
|
|
19903
|
-
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
19904
|
-
}
|
|
19905
|
-
|
|
19906
|
-
if (includeServices !== undefined) {
|
|
19907
|
-
localVarQueryParameter['includeServices'] = includeServices;
|
|
19908
|
-
}
|
|
19909
|
-
|
|
19910
19867
|
|
|
19911
19868
|
|
|
19912
19869
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -20742,18 +20699,15 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
20742
20699
|
* @param {string} [name]
|
|
20743
20700
|
* @param {string} [slug]
|
|
20744
20701
|
* @param {MarketingType} [marketingType]
|
|
20745
|
-
* @param {boolean} [returnDefaultValue]
|
|
20746
|
-
* @param {boolean} [includeServices]
|
|
20747
20702
|
* @param {string} [languageCode]
|
|
20748
|
-
* @param {boolean} [showHidden]
|
|
20749
20703
|
* @param {number} [page]
|
|
20750
20704
|
* @param {number} [limit]
|
|
20751
20705
|
* @param {Date} [lastRetrieved]
|
|
20752
20706
|
* @param {*} [options] Override http request option.
|
|
20753
20707
|
* @throws {RequiredError}
|
|
20754
20708
|
*/
|
|
20755
|
-
async apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
20756
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
20709
|
+
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>> {
|
|
20710
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options);
|
|
20757
20711
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
20758
20712
|
},
|
|
20759
20713
|
/**
|
|
@@ -20798,18 +20752,15 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
20798
20752
|
* @param {string} [name]
|
|
20799
20753
|
* @param {string} [slug]
|
|
20800
20754
|
* @param {MarketingType} [marketingType]
|
|
20801
|
-
* @param {boolean} [returnDefaultValue]
|
|
20802
|
-
* @param {boolean} [includeServices]
|
|
20803
20755
|
* @param {string} [languageCode]
|
|
20804
|
-
* @param {boolean} [showHidden]
|
|
20805
20756
|
* @param {number} [page]
|
|
20806
20757
|
* @param {number} [limit]
|
|
20807
20758
|
* @param {Date} [lastRetrieved]
|
|
20808
20759
|
* @param {*} [options] Override http request option.
|
|
20809
20760
|
* @throws {RequiredError}
|
|
20810
20761
|
*/
|
|
20811
|
-
async apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
20812
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
20762
|
+
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>> {
|
|
20763
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options);
|
|
20813
20764
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
20814
20765
|
},
|
|
20815
20766
|
/**
|
|
@@ -20818,13 +20769,11 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
20818
20769
|
* @param {string} hospitalId
|
|
20819
20770
|
* @param {string} slug
|
|
20820
20771
|
* @param {string} [languageCode]
|
|
20821
|
-
* @param {boolean} [returnDefaultValue]
|
|
20822
|
-
* @param {boolean} [includeServices]
|
|
20823
20772
|
* @param {*} [options] Override http request option.
|
|
20824
20773
|
* @throws {RequiredError}
|
|
20825
20774
|
*/
|
|
20826
|
-
async apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string,
|
|
20827
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode,
|
|
20775
|
+
async apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>> {
|
|
20776
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, options);
|
|
20828
20777
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
20829
20778
|
},
|
|
20830
20779
|
/**
|
|
@@ -21203,18 +21152,15 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
21203
21152
|
* @param {string} [name]
|
|
21204
21153
|
* @param {string} [slug]
|
|
21205
21154
|
* @param {MarketingType} [marketingType]
|
|
21206
|
-
* @param {boolean} [returnDefaultValue]
|
|
21207
|
-
* @param {boolean} [includeServices]
|
|
21208
21155
|
* @param {string} [languageCode]
|
|
21209
|
-
* @param {boolean} [showHidden]
|
|
21210
21156
|
* @param {number} [page]
|
|
21211
21157
|
* @param {number} [limit]
|
|
21212
21158
|
* @param {Date} [lastRetrieved]
|
|
21213
21159
|
* @param {*} [options] Override http request option.
|
|
21214
21160
|
* @throws {RequiredError}
|
|
21215
21161
|
*/
|
|
21216
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
21217
|
-
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
21162
|
+
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> {
|
|
21163
|
+
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
21218
21164
|
},
|
|
21219
21165
|
/**
|
|
21220
21166
|
*
|
|
@@ -21256,18 +21202,15 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
21256
21202
|
* @param {string} [name]
|
|
21257
21203
|
* @param {string} [slug]
|
|
21258
21204
|
* @param {MarketingType} [marketingType]
|
|
21259
|
-
* @param {boolean} [returnDefaultValue]
|
|
21260
|
-
* @param {boolean} [includeServices]
|
|
21261
21205
|
* @param {string} [languageCode]
|
|
21262
|
-
* @param {boolean} [showHidden]
|
|
21263
21206
|
* @param {number} [page]
|
|
21264
21207
|
* @param {number} [limit]
|
|
21265
21208
|
* @param {Date} [lastRetrieved]
|
|
21266
21209
|
* @param {*} [options] Override http request option.
|
|
21267
21210
|
* @throws {RequiredError}
|
|
21268
21211
|
*/
|
|
21269
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
21270
|
-
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
21212
|
+
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> {
|
|
21213
|
+
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
21271
21214
|
},
|
|
21272
21215
|
/**
|
|
21273
21216
|
*
|
|
@@ -21275,13 +21218,11 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
21275
21218
|
* @param {string} hospitalId
|
|
21276
21219
|
* @param {string} slug
|
|
21277
21220
|
* @param {string} [languageCode]
|
|
21278
|
-
* @param {boolean} [returnDefaultValue]
|
|
21279
|
-
* @param {boolean} [includeServices]
|
|
21280
21221
|
* @param {*} [options] Override http request option.
|
|
21281
21222
|
* @throws {RequiredError}
|
|
21282
21223
|
*/
|
|
21283
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string,
|
|
21284
|
-
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode,
|
|
21224
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, options?: any): AxiosPromise<HospitalSpecialtyModel> {
|
|
21225
|
+
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, options).then((request) => request(axios, basePath));
|
|
21285
21226
|
},
|
|
21286
21227
|
/**
|
|
21287
21228
|
*
|
|
@@ -21678,10 +21619,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21678
21619
|
* @param {string} [name]
|
|
21679
21620
|
* @param {string} [slug]
|
|
21680
21621
|
* @param {MarketingType} [marketingType]
|
|
21681
|
-
* @param {boolean} [returnDefaultValue]
|
|
21682
|
-
* @param {boolean} [includeServices]
|
|
21683
21622
|
* @param {string} [languageCode]
|
|
21684
|
-
* @param {boolean} [showHidden]
|
|
21685
21623
|
* @param {number} [page]
|
|
21686
21624
|
* @param {number} [limit]
|
|
21687
21625
|
* @param {Date} [lastRetrieved]
|
|
@@ -21689,8 +21627,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21689
21627
|
* @throws {RequiredError}
|
|
21690
21628
|
* @memberof HospitalsApi
|
|
21691
21629
|
*/
|
|
21692
|
-
public apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
21693
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
21630
|
+
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) {
|
|
21631
|
+
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));
|
|
21694
21632
|
}
|
|
21695
21633
|
|
|
21696
21634
|
/**
|
|
@@ -21737,10 +21675,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21737
21675
|
* @param {string} [name]
|
|
21738
21676
|
* @param {string} [slug]
|
|
21739
21677
|
* @param {MarketingType} [marketingType]
|
|
21740
|
-
* @param {boolean} [returnDefaultValue]
|
|
21741
|
-
* @param {boolean} [includeServices]
|
|
21742
21678
|
* @param {string} [languageCode]
|
|
21743
|
-
* @param {boolean} [showHidden]
|
|
21744
21679
|
* @param {number} [page]
|
|
21745
21680
|
* @param {number} [limit]
|
|
21746
21681
|
* @param {Date} [lastRetrieved]
|
|
@@ -21748,8 +21683,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21748
21683
|
* @throws {RequiredError}
|
|
21749
21684
|
* @memberof HospitalsApi
|
|
21750
21685
|
*/
|
|
21751
|
-
public apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
21752
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
21686
|
+
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) {
|
|
21687
|
+
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));
|
|
21753
21688
|
}
|
|
21754
21689
|
|
|
21755
21690
|
/**
|
|
@@ -21758,14 +21693,12 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21758
21693
|
* @param {string} hospitalId
|
|
21759
21694
|
* @param {string} slug
|
|
21760
21695
|
* @param {string} [languageCode]
|
|
21761
|
-
* @param {boolean} [returnDefaultValue]
|
|
21762
|
-
* @param {boolean} [includeServices]
|
|
21763
21696
|
* @param {*} [options] Override http request option.
|
|
21764
21697
|
* @throws {RequiredError}
|
|
21765
21698
|
* @memberof HospitalsApi
|
|
21766
21699
|
*/
|
|
21767
|
-
public apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string,
|
|
21768
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode,
|
|
21700
|
+
public apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
21701
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
21769
21702
|
}
|
|
21770
21703
|
|
|
21771
21704
|
/**
|