ch-api-client-typescript2 3.3.4 → 3.4.0
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 +556 -1013
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +77 -119
- package/package.json +1 -1
- package/src/api.ts +584 -1065
package/lib/api.d.ts
CHANGED
|
@@ -29,19 +29,7 @@ export interface AboutUsPageItemModel {
|
|
|
29
29
|
* @type {string}
|
|
30
30
|
* @memberof AboutUsPageItemModel
|
|
31
31
|
*/
|
|
32
|
-
'
|
|
33
|
-
/**
|
|
34
|
-
*
|
|
35
|
-
* @type {string}
|
|
36
|
-
* @memberof AboutUsPageItemModel
|
|
37
|
-
*/
|
|
38
|
-
'hospitalName'?: string | null;
|
|
39
|
-
/**
|
|
40
|
-
*
|
|
41
|
-
* @type {string}
|
|
42
|
-
* @memberof AboutUsPageItemModel
|
|
43
|
-
*/
|
|
44
|
-
'hospitalSlug'?: string | null;
|
|
32
|
+
'languageCode'?: string | null;
|
|
45
33
|
/**
|
|
46
34
|
*
|
|
47
35
|
* @type {string}
|
|
@@ -54,24 +42,12 @@ export interface AboutUsPageItemModel {
|
|
|
54
42
|
* @memberof AboutUsPageItemModel
|
|
55
43
|
*/
|
|
56
44
|
'slug'?: string | null;
|
|
57
|
-
/**
|
|
58
|
-
*
|
|
59
|
-
* @type {string}
|
|
60
|
-
* @memberof AboutUsPageItemModel
|
|
61
|
-
*/
|
|
62
|
-
'description'?: string | null;
|
|
63
45
|
/**
|
|
64
46
|
*
|
|
65
47
|
* @type {boolean}
|
|
66
48
|
* @memberof AboutUsPageItemModel
|
|
67
49
|
*/
|
|
68
50
|
'confirmed'?: boolean;
|
|
69
|
-
/**
|
|
70
|
-
*
|
|
71
|
-
* @type {Array<MediaModel>}
|
|
72
|
-
* @memberof AboutUsPageItemModel
|
|
73
|
-
*/
|
|
74
|
-
'medias'?: Array<MediaModel> | null;
|
|
75
51
|
/**
|
|
76
52
|
*
|
|
77
53
|
* @type {AuditableEntity}
|
|
@@ -96,19 +72,7 @@ export interface AboutUsPageModel {
|
|
|
96
72
|
* @type {string}
|
|
97
73
|
* @memberof AboutUsPageModel
|
|
98
74
|
*/
|
|
99
|
-
'
|
|
100
|
-
/**
|
|
101
|
-
*
|
|
102
|
-
* @type {string}
|
|
103
|
-
* @memberof AboutUsPageModel
|
|
104
|
-
*/
|
|
105
|
-
'hospitalName'?: string | null;
|
|
106
|
-
/**
|
|
107
|
-
*
|
|
108
|
-
* @type {string}
|
|
109
|
-
* @memberof AboutUsPageModel
|
|
110
|
-
*/
|
|
111
|
-
'hospitalSlug'?: string | null;
|
|
75
|
+
'languageCode'?: string | null;
|
|
112
76
|
/**
|
|
113
77
|
*
|
|
114
78
|
* @type {string}
|
|
@@ -121,12 +85,6 @@ export interface AboutUsPageModel {
|
|
|
121
85
|
* @memberof AboutUsPageModel
|
|
122
86
|
*/
|
|
123
87
|
'slug'?: string | null;
|
|
124
|
-
/**
|
|
125
|
-
*
|
|
126
|
-
* @type {string}
|
|
127
|
-
* @memberof AboutUsPageModel
|
|
128
|
-
*/
|
|
129
|
-
'description'?: string | null;
|
|
130
88
|
/**
|
|
131
89
|
*
|
|
132
90
|
* @type {boolean}
|
|
@@ -135,22 +93,22 @@ export interface AboutUsPageModel {
|
|
|
135
93
|
'confirmed'?: boolean;
|
|
136
94
|
/**
|
|
137
95
|
*
|
|
138
|
-
* @type {
|
|
96
|
+
* @type {AuditableEntity}
|
|
139
97
|
* @memberof AboutUsPageModel
|
|
140
98
|
*/
|
|
141
|
-
'
|
|
99
|
+
'auditableEntity'?: AuditableEntity;
|
|
142
100
|
/**
|
|
143
101
|
*
|
|
144
|
-
* @type {
|
|
102
|
+
* @type {string}
|
|
145
103
|
* @memberof AboutUsPageModel
|
|
146
104
|
*/
|
|
147
|
-
'
|
|
105
|
+
'description'?: string | null;
|
|
148
106
|
/**
|
|
149
107
|
*
|
|
150
108
|
* @type {string}
|
|
151
109
|
* @memberof AboutUsPageModel
|
|
152
110
|
*/
|
|
153
|
-
'
|
|
111
|
+
'overview'?: string | null;
|
|
154
112
|
/**
|
|
155
113
|
*
|
|
156
114
|
* @type {string}
|
|
@@ -181,6 +139,12 @@ export interface AboutUsPageModel {
|
|
|
181
139
|
* @memberof AboutUsPageModel
|
|
182
140
|
*/
|
|
183
141
|
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
142
|
+
/**
|
|
143
|
+
*
|
|
144
|
+
* @type {Array<MediaModel>}
|
|
145
|
+
* @memberof AboutUsPageModel
|
|
146
|
+
*/
|
|
147
|
+
'medias'?: Array<MediaModel> | null;
|
|
184
148
|
}
|
|
185
149
|
/**
|
|
186
150
|
*
|
|
@@ -367,6 +331,12 @@ export interface ArticleContributorItemModel {
|
|
|
367
331
|
* @memberof ArticleContributorItemModel
|
|
368
332
|
*/
|
|
369
333
|
'contributorId'?: string;
|
|
334
|
+
/**
|
|
335
|
+
*
|
|
336
|
+
* @type {string}
|
|
337
|
+
* @memberof ArticleContributorItemModel
|
|
338
|
+
*/
|
|
339
|
+
'languageCode'?: string | null;
|
|
370
340
|
/**
|
|
371
341
|
*
|
|
372
342
|
* @type {string}
|
|
@@ -381,28 +351,28 @@ export interface ArticleContributorItemModel {
|
|
|
381
351
|
'contributorSlug'?: string | null;
|
|
382
352
|
/**
|
|
383
353
|
*
|
|
384
|
-
* @type {
|
|
354
|
+
* @type {boolean}
|
|
385
355
|
* @memberof ArticleContributorItemModel
|
|
386
356
|
*/
|
|
387
|
-
'
|
|
357
|
+
'contributorConfirmed'?: boolean;
|
|
388
358
|
/**
|
|
389
359
|
*
|
|
390
360
|
* @type {string}
|
|
391
361
|
* @memberof ArticleContributorItemModel
|
|
392
362
|
*/
|
|
393
|
-
'
|
|
363
|
+
'contributorEmail'?: string | null;
|
|
394
364
|
/**
|
|
395
365
|
*
|
|
396
366
|
* @type {string}
|
|
397
367
|
* @memberof ArticleContributorItemModel
|
|
398
368
|
*/
|
|
399
|
-
'
|
|
369
|
+
'contributorPhoto'?: string | null;
|
|
400
370
|
/**
|
|
401
371
|
*
|
|
402
372
|
* @type {string}
|
|
403
373
|
* @memberof ArticleContributorItemModel
|
|
404
374
|
*/
|
|
405
|
-
'
|
|
375
|
+
'contributorPhotoThumbnail'?: string | null;
|
|
406
376
|
/**
|
|
407
377
|
*
|
|
408
378
|
* @type {ContributionType}
|
|
@@ -421,24 +391,12 @@ export interface ArticleContributorItemModel {
|
|
|
421
391
|
* @memberof ArticleContributorItemModel
|
|
422
392
|
*/
|
|
423
393
|
'order'?: number;
|
|
424
|
-
/**
|
|
425
|
-
*
|
|
426
|
-
* @type {boolean}
|
|
427
|
-
* @memberof ArticleContributorItemModel
|
|
428
|
-
*/
|
|
429
|
-
'confirmed'?: boolean;
|
|
430
394
|
/**
|
|
431
395
|
*
|
|
432
396
|
* @type {AuditableEntity}
|
|
433
397
|
* @memberof ArticleContributorItemModel
|
|
434
398
|
*/
|
|
435
399
|
'auditableEntity'?: AuditableEntity;
|
|
436
|
-
/**
|
|
437
|
-
*
|
|
438
|
-
* @type {Array<SnsHandleModel>}
|
|
439
|
-
* @memberof ArticleContributorItemModel
|
|
440
|
-
*/
|
|
441
|
-
'contributorSnsHandles'?: Array<SnsHandleModel> | null;
|
|
442
400
|
}
|
|
443
401
|
/**
|
|
444
402
|
*
|
|
@@ -458,6 +416,12 @@ export interface ArticleContributorModel {
|
|
|
458
416
|
* @memberof ArticleContributorModel
|
|
459
417
|
*/
|
|
460
418
|
'contributorId'?: string;
|
|
419
|
+
/**
|
|
420
|
+
*
|
|
421
|
+
* @type {string}
|
|
422
|
+
* @memberof ArticleContributorModel
|
|
423
|
+
*/
|
|
424
|
+
'languageCode'?: string | null;
|
|
461
425
|
/**
|
|
462
426
|
*
|
|
463
427
|
* @type {string}
|
|
@@ -472,28 +436,28 @@ export interface ArticleContributorModel {
|
|
|
472
436
|
'contributorSlug'?: string | null;
|
|
473
437
|
/**
|
|
474
438
|
*
|
|
475
|
-
* @type {
|
|
439
|
+
* @type {boolean}
|
|
476
440
|
* @memberof ArticleContributorModel
|
|
477
441
|
*/
|
|
478
|
-
'
|
|
442
|
+
'contributorConfirmed'?: boolean;
|
|
479
443
|
/**
|
|
480
444
|
*
|
|
481
445
|
* @type {string}
|
|
482
446
|
* @memberof ArticleContributorModel
|
|
483
447
|
*/
|
|
484
|
-
'
|
|
448
|
+
'contributorEmail'?: string | null;
|
|
485
449
|
/**
|
|
486
450
|
*
|
|
487
451
|
* @type {string}
|
|
488
452
|
* @memberof ArticleContributorModel
|
|
489
453
|
*/
|
|
490
|
-
'
|
|
454
|
+
'contributorPhoto'?: string | null;
|
|
491
455
|
/**
|
|
492
456
|
*
|
|
493
457
|
* @type {string}
|
|
494
458
|
* @memberof ArticleContributorModel
|
|
495
459
|
*/
|
|
496
|
-
'
|
|
460
|
+
'contributorPhotoThumbnail'?: string | null;
|
|
497
461
|
/**
|
|
498
462
|
*
|
|
499
463
|
* @type {ContributionType}
|
|
@@ -512,12 +476,6 @@ export interface ArticleContributorModel {
|
|
|
512
476
|
* @memberof ArticleContributorModel
|
|
513
477
|
*/
|
|
514
478
|
'order'?: number;
|
|
515
|
-
/**
|
|
516
|
-
*
|
|
517
|
-
* @type {boolean}
|
|
518
|
-
* @memberof ArticleContributorModel
|
|
519
|
-
*/
|
|
520
|
-
'confirmed'?: boolean;
|
|
521
479
|
/**
|
|
522
480
|
*
|
|
523
481
|
* @type {AuditableEntity}
|
|
@@ -526,16 +484,16 @@ export interface ArticleContributorModel {
|
|
|
526
484
|
'auditableEntity'?: AuditableEntity;
|
|
527
485
|
/**
|
|
528
486
|
*
|
|
529
|
-
* @type {
|
|
487
|
+
* @type {string}
|
|
530
488
|
* @memberof ArticleContributorModel
|
|
531
489
|
*/
|
|
532
|
-
'
|
|
490
|
+
'contributorDescription'?: string | null;
|
|
533
491
|
/**
|
|
534
492
|
*
|
|
535
493
|
* @type {string}
|
|
536
494
|
* @memberof ArticleContributorModel
|
|
537
495
|
*/
|
|
538
|
-
'
|
|
496
|
+
'overview'?: string | null;
|
|
539
497
|
/**
|
|
540
498
|
*
|
|
541
499
|
* @type {string}
|
|
@@ -547,7 +505,7 @@ export interface ArticleContributorModel {
|
|
|
547
505
|
* @type {Array<SnsHandle>}
|
|
548
506
|
* @memberof ArticleContributorModel
|
|
549
507
|
*/
|
|
550
|
-
'
|
|
508
|
+
'contributorSnsHandles'?: Array<SnsHandle> | null;
|
|
551
509
|
/**
|
|
552
510
|
*
|
|
553
511
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -591,31 +549,25 @@ export interface ArticleItemModel {
|
|
|
591
549
|
* @type {string}
|
|
592
550
|
* @memberof ArticleItemModel
|
|
593
551
|
*/
|
|
594
|
-
'
|
|
595
|
-
/**
|
|
596
|
-
*
|
|
597
|
-
* @type {string}
|
|
598
|
-
* @memberof ArticleItemModel
|
|
599
|
-
*/
|
|
600
|
-
'slug'?: string | null;
|
|
552
|
+
'languageCode'?: string | null;
|
|
601
553
|
/**
|
|
602
554
|
*
|
|
603
555
|
* @type {string}
|
|
604
556
|
* @memberof ArticleItemModel
|
|
605
557
|
*/
|
|
606
|
-
'
|
|
558
|
+
'name'?: string | null;
|
|
607
559
|
/**
|
|
608
560
|
*
|
|
609
561
|
* @type {string}
|
|
610
562
|
* @memberof ArticleItemModel
|
|
611
563
|
*/
|
|
612
|
-
'
|
|
564
|
+
'slug'?: string | null;
|
|
613
565
|
/**
|
|
614
566
|
*
|
|
615
|
-
* @type {
|
|
567
|
+
* @type {boolean}
|
|
616
568
|
* @memberof ArticleItemModel
|
|
617
569
|
*/
|
|
618
|
-
'
|
|
570
|
+
'confirmed'?: boolean;
|
|
619
571
|
/**
|
|
620
572
|
*
|
|
621
573
|
* @type {MarketingType}
|
|
@@ -640,54 +592,24 @@ export interface ArticleItemModel {
|
|
|
640
592
|
* @memberof ArticleItemModel
|
|
641
593
|
*/
|
|
642
594
|
'hospitalId'?: string;
|
|
643
|
-
/**
|
|
644
|
-
*
|
|
645
|
-
* @type {string}
|
|
646
|
-
* @memberof ArticleItemModel
|
|
647
|
-
*/
|
|
648
|
-
'hospitalName'?: string | null;
|
|
649
|
-
/**
|
|
650
|
-
*
|
|
651
|
-
* @type {string}
|
|
652
|
-
* @memberof ArticleItemModel
|
|
653
|
-
*/
|
|
654
|
-
'hospitalSlug'?: string | null;
|
|
655
595
|
/**
|
|
656
596
|
*
|
|
657
597
|
* @type {string}
|
|
658
598
|
* @memberof ArticleItemModel
|
|
659
599
|
*/
|
|
660
600
|
'youtubeUrl'?: string | null;
|
|
661
|
-
/**
|
|
662
|
-
*
|
|
663
|
-
* @type {boolean}
|
|
664
|
-
* @memberof ArticleItemModel
|
|
665
|
-
*/
|
|
666
|
-
'confirmed'?: boolean;
|
|
667
601
|
/**
|
|
668
602
|
*
|
|
669
603
|
* @type {Array<ArticleTagItemModel>}
|
|
670
604
|
* @memberof ArticleItemModel
|
|
671
605
|
*/
|
|
672
606
|
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
673
|
-
/**
|
|
674
|
-
*
|
|
675
|
-
* @type {Array<ArticleContributorItemModel>}
|
|
676
|
-
* @memberof ArticleItemModel
|
|
677
|
-
*/
|
|
678
|
-
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
679
607
|
/**
|
|
680
608
|
*
|
|
681
609
|
* @type {Array<MediaModel>}
|
|
682
610
|
* @memberof ArticleItemModel
|
|
683
611
|
*/
|
|
684
612
|
'medias'?: Array<MediaModel> | null;
|
|
685
|
-
/**
|
|
686
|
-
*
|
|
687
|
-
* @type {Array<SourceModel>}
|
|
688
|
-
* @memberof ArticleItemModel
|
|
689
|
-
*/
|
|
690
|
-
'sources'?: Array<SourceModel> | null;
|
|
691
613
|
/**
|
|
692
614
|
*
|
|
693
615
|
* @type {AuditableEntity}
|
|
@@ -721,22 +643,10 @@ export interface ArticleModel {
|
|
|
721
643
|
'slug'?: string | null;
|
|
722
644
|
/**
|
|
723
645
|
*
|
|
724
|
-
* @type {
|
|
725
|
-
* @memberof ArticleModel
|
|
726
|
-
*/
|
|
727
|
-
'description'?: string | null;
|
|
728
|
-
/**
|
|
729
|
-
*
|
|
730
|
-
* @type {string}
|
|
731
|
-
* @memberof ArticleModel
|
|
732
|
-
*/
|
|
733
|
-
'body'?: string | null;
|
|
734
|
-
/**
|
|
735
|
-
*
|
|
736
|
-
* @type {ArticleStatus}
|
|
646
|
+
* @type {boolean}
|
|
737
647
|
* @memberof ArticleModel
|
|
738
648
|
*/
|
|
739
|
-
'
|
|
649
|
+
'confirmed'?: boolean;
|
|
740
650
|
/**
|
|
741
651
|
*
|
|
742
652
|
* @type {MarketingType}
|
|
@@ -761,54 +671,24 @@ export interface ArticleModel {
|
|
|
761
671
|
* @memberof ArticleModel
|
|
762
672
|
*/
|
|
763
673
|
'hospitalId'?: string;
|
|
764
|
-
/**
|
|
765
|
-
*
|
|
766
|
-
* @type {string}
|
|
767
|
-
* @memberof ArticleModel
|
|
768
|
-
*/
|
|
769
|
-
'hospitalName'?: string | null;
|
|
770
|
-
/**
|
|
771
|
-
*
|
|
772
|
-
* @type {string}
|
|
773
|
-
* @memberof ArticleModel
|
|
774
|
-
*/
|
|
775
|
-
'hospitalSlug'?: string | null;
|
|
776
674
|
/**
|
|
777
675
|
*
|
|
778
676
|
* @type {string}
|
|
779
677
|
* @memberof ArticleModel
|
|
780
678
|
*/
|
|
781
679
|
'youtubeUrl'?: string | null;
|
|
782
|
-
/**
|
|
783
|
-
*
|
|
784
|
-
* @type {boolean}
|
|
785
|
-
* @memberof ArticleModel
|
|
786
|
-
*/
|
|
787
|
-
'confirmed'?: boolean;
|
|
788
680
|
/**
|
|
789
681
|
*
|
|
790
682
|
* @type {Array<ArticleTagItemModel>}
|
|
791
683
|
* @memberof ArticleModel
|
|
792
684
|
*/
|
|
793
685
|
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
794
|
-
/**
|
|
795
|
-
*
|
|
796
|
-
* @type {Array<ArticleContributorItemModel>}
|
|
797
|
-
* @memberof ArticleModel
|
|
798
|
-
*/
|
|
799
|
-
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
800
686
|
/**
|
|
801
687
|
*
|
|
802
688
|
* @type {Array<MediaModel>}
|
|
803
689
|
* @memberof ArticleModel
|
|
804
690
|
*/
|
|
805
691
|
'medias'?: Array<MediaModel> | null;
|
|
806
|
-
/**
|
|
807
|
-
*
|
|
808
|
-
* @type {Array<SourceModel>}
|
|
809
|
-
* @memberof ArticleModel
|
|
810
|
-
*/
|
|
811
|
-
'sources'?: Array<SourceModel> | null;
|
|
812
692
|
/**
|
|
813
693
|
*
|
|
814
694
|
* @type {AuditableEntity}
|
|
@@ -2353,6 +2233,12 @@ export interface ContributorItemModel {
|
|
|
2353
2233
|
* @memberof ContributorItemModel
|
|
2354
2234
|
*/
|
|
2355
2235
|
'id'?: string;
|
|
2236
|
+
/**
|
|
2237
|
+
*
|
|
2238
|
+
* @type {string}
|
|
2239
|
+
* @memberof ContributorItemModel
|
|
2240
|
+
*/
|
|
2241
|
+
'languageCode'?: string | null;
|
|
2356
2242
|
/**
|
|
2357
2243
|
*
|
|
2358
2244
|
* @type {string}
|
|
@@ -2367,58 +2253,58 @@ export interface ContributorItemModel {
|
|
|
2367
2253
|
'slug'?: string | null;
|
|
2368
2254
|
/**
|
|
2369
2255
|
*
|
|
2370
|
-
* @type {
|
|
2256
|
+
* @type {boolean}
|
|
2371
2257
|
* @memberof ContributorItemModel
|
|
2372
2258
|
*/
|
|
2373
|
-
'
|
|
2259
|
+
'confirmed'?: boolean;
|
|
2374
2260
|
/**
|
|
2375
2261
|
*
|
|
2376
2262
|
* @type {string}
|
|
2377
2263
|
* @memberof ContributorItemModel
|
|
2378
2264
|
*/
|
|
2379
|
-
'
|
|
2265
|
+
'hospitalId'?: string;
|
|
2380
2266
|
/**
|
|
2381
2267
|
*
|
|
2382
2268
|
* @type {string}
|
|
2383
2269
|
* @memberof ContributorItemModel
|
|
2384
2270
|
*/
|
|
2385
|
-
'
|
|
2271
|
+
'hospitalName'?: string | null;
|
|
2386
2272
|
/**
|
|
2387
2273
|
*
|
|
2388
2274
|
* @type {string}
|
|
2389
2275
|
* @memberof ContributorItemModel
|
|
2390
2276
|
*/
|
|
2391
|
-
'
|
|
2277
|
+
'hospitalSlug'?: string | null;
|
|
2392
2278
|
/**
|
|
2393
2279
|
*
|
|
2394
2280
|
* @type {string}
|
|
2395
2281
|
* @memberof ContributorItemModel
|
|
2396
2282
|
*/
|
|
2397
|
-
'
|
|
2283
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
2398
2284
|
/**
|
|
2399
2285
|
*
|
|
2400
2286
|
* @type {string}
|
|
2401
2287
|
* @memberof ContributorItemModel
|
|
2402
2288
|
*/
|
|
2403
|
-
'
|
|
2289
|
+
'email'?: string | null;
|
|
2404
2290
|
/**
|
|
2405
2291
|
*
|
|
2406
2292
|
* @type {string}
|
|
2407
2293
|
* @memberof ContributorItemModel
|
|
2408
2294
|
*/
|
|
2409
|
-
'
|
|
2295
|
+
'photo'?: string | null;
|
|
2410
2296
|
/**
|
|
2411
2297
|
*
|
|
2412
|
-
* @type {
|
|
2298
|
+
* @type {string}
|
|
2413
2299
|
* @memberof ContributorItemModel
|
|
2414
2300
|
*/
|
|
2415
|
-
'
|
|
2301
|
+
'photoThumbnail'?: string | null;
|
|
2416
2302
|
/**
|
|
2417
2303
|
*
|
|
2418
|
-
* @type {
|
|
2304
|
+
* @type {number}
|
|
2419
2305
|
* @memberof ContributorItemModel
|
|
2420
2306
|
*/
|
|
2421
|
-
'
|
|
2307
|
+
'order'?: number;
|
|
2422
2308
|
/**
|
|
2423
2309
|
*
|
|
2424
2310
|
* @type {AuditableEntity}
|
|
@@ -2438,6 +2324,12 @@ export interface ContributorModel {
|
|
|
2438
2324
|
* @memberof ContributorModel
|
|
2439
2325
|
*/
|
|
2440
2326
|
'id'?: string;
|
|
2327
|
+
/**
|
|
2328
|
+
*
|
|
2329
|
+
* @type {string}
|
|
2330
|
+
* @memberof ContributorModel
|
|
2331
|
+
*/
|
|
2332
|
+
'languageCode'?: string | null;
|
|
2441
2333
|
/**
|
|
2442
2334
|
*
|
|
2443
2335
|
* @type {string}
|
|
@@ -2452,58 +2344,58 @@ export interface ContributorModel {
|
|
|
2452
2344
|
'slug'?: string | null;
|
|
2453
2345
|
/**
|
|
2454
2346
|
*
|
|
2455
|
-
* @type {
|
|
2347
|
+
* @type {boolean}
|
|
2456
2348
|
* @memberof ContributorModel
|
|
2457
2349
|
*/
|
|
2458
|
-
'
|
|
2350
|
+
'confirmed'?: boolean;
|
|
2459
2351
|
/**
|
|
2460
2352
|
*
|
|
2461
2353
|
* @type {string}
|
|
2462
2354
|
* @memberof ContributorModel
|
|
2463
2355
|
*/
|
|
2464
|
-
'
|
|
2356
|
+
'hospitalId'?: string;
|
|
2465
2357
|
/**
|
|
2466
2358
|
*
|
|
2467
2359
|
* @type {string}
|
|
2468
2360
|
* @memberof ContributorModel
|
|
2469
2361
|
*/
|
|
2470
|
-
'
|
|
2362
|
+
'hospitalName'?: string | null;
|
|
2471
2363
|
/**
|
|
2472
2364
|
*
|
|
2473
2365
|
* @type {string}
|
|
2474
2366
|
* @memberof ContributorModel
|
|
2475
2367
|
*/
|
|
2476
|
-
'
|
|
2368
|
+
'hospitalSlug'?: string | null;
|
|
2477
2369
|
/**
|
|
2478
2370
|
*
|
|
2479
2371
|
* @type {string}
|
|
2480
2372
|
* @memberof ContributorModel
|
|
2481
2373
|
*/
|
|
2482
|
-
'
|
|
2374
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
2483
2375
|
/**
|
|
2484
2376
|
*
|
|
2485
2377
|
* @type {string}
|
|
2486
2378
|
* @memberof ContributorModel
|
|
2487
2379
|
*/
|
|
2488
|
-
'
|
|
2380
|
+
'email'?: string | null;
|
|
2489
2381
|
/**
|
|
2490
2382
|
*
|
|
2491
2383
|
* @type {string}
|
|
2492
2384
|
* @memberof ContributorModel
|
|
2493
2385
|
*/
|
|
2494
|
-
'
|
|
2386
|
+
'photo'?: string | null;
|
|
2495
2387
|
/**
|
|
2496
2388
|
*
|
|
2497
|
-
* @type {
|
|
2389
|
+
* @type {string}
|
|
2498
2390
|
* @memberof ContributorModel
|
|
2499
2391
|
*/
|
|
2500
|
-
'
|
|
2392
|
+
'photoThumbnail'?: string | null;
|
|
2501
2393
|
/**
|
|
2502
2394
|
*
|
|
2503
|
-
* @type {
|
|
2395
|
+
* @type {number}
|
|
2504
2396
|
* @memberof ContributorModel
|
|
2505
2397
|
*/
|
|
2506
|
-
'
|
|
2398
|
+
'order'?: number;
|
|
2507
2399
|
/**
|
|
2508
2400
|
*
|
|
2509
2401
|
* @type {AuditableEntity}
|
|
@@ -2515,7 +2407,13 @@ export interface ContributorModel {
|
|
|
2515
2407
|
* @type {string}
|
|
2516
2408
|
* @memberof ContributorModel
|
|
2517
2409
|
*/
|
|
2518
|
-
'
|
|
2410
|
+
'description'?: string | null;
|
|
2411
|
+
/**
|
|
2412
|
+
*
|
|
2413
|
+
* @type {string}
|
|
2414
|
+
* @memberof ContributorModel
|
|
2415
|
+
*/
|
|
2416
|
+
'overview'?: string | null;
|
|
2519
2417
|
/**
|
|
2520
2418
|
*
|
|
2521
2419
|
* @type {string}
|
|
@@ -2609,67 +2507,25 @@ export interface CountryItemModel {
|
|
|
2609
2507
|
* @type {string}
|
|
2610
2508
|
* @memberof CountryItemModel
|
|
2611
2509
|
*/
|
|
2612
|
-
'
|
|
2510
|
+
'languageCode'?: string | null;
|
|
2613
2511
|
/**
|
|
2614
2512
|
*
|
|
2615
2513
|
* @type {string}
|
|
2616
2514
|
* @memberof CountryItemModel
|
|
2617
2515
|
*/
|
|
2618
|
-
'
|
|
2516
|
+
'name'?: string | null;
|
|
2619
2517
|
/**
|
|
2620
2518
|
*
|
|
2621
2519
|
* @type {string}
|
|
2622
2520
|
* @memberof CountryItemModel
|
|
2623
2521
|
*/
|
|
2624
2522
|
'slug'?: string | null;
|
|
2625
|
-
/**
|
|
2626
|
-
*
|
|
2627
|
-
* @type {string}
|
|
2628
|
-
* @memberof CountryItemModel
|
|
2629
|
-
*/
|
|
2630
|
-
'description'?: string | null;
|
|
2631
|
-
/**
|
|
2632
|
-
*
|
|
2633
|
-
* @type {number}
|
|
2634
|
-
* @memberof CountryItemModel
|
|
2635
|
-
*/
|
|
2636
|
-
'hospitalsCount'?: number;
|
|
2637
|
-
/**
|
|
2638
|
-
*
|
|
2639
|
-
* @type {number}
|
|
2640
|
-
* @memberof CountryItemModel
|
|
2641
|
-
*/
|
|
2642
|
-
'doctorsCount'?: number;
|
|
2643
|
-
/**
|
|
2644
|
-
*
|
|
2645
|
-
* @type {number}
|
|
2646
|
-
* @memberof CountryItemModel
|
|
2647
|
-
*/
|
|
2648
|
-
'specialitiesCount'?: number;
|
|
2649
|
-
/**
|
|
2650
|
-
*
|
|
2651
|
-
* @type {number}
|
|
2652
|
-
* @memberof CountryItemModel
|
|
2653
|
-
*/
|
|
2654
|
-
'packagesCount'?: number;
|
|
2655
|
-
/**
|
|
2656
|
-
*
|
|
2657
|
-
* @type {number}
|
|
2658
|
-
* @memberof CountryItemModel
|
|
2659
|
-
*/
|
|
2660
|
-
'articlesCount'?: number;
|
|
2661
2523
|
/**
|
|
2662
2524
|
*
|
|
2663
2525
|
* @type {boolean}
|
|
2664
2526
|
* @memberof CountryItemModel
|
|
2665
2527
|
*/
|
|
2666
2528
|
'confirmed'?: boolean;
|
|
2667
|
-
/**
|
|
2668
|
-
*
|
|
2669
|
-
* @type {Array<MediaModel>}
|
|
2670
|
-
* @memberof CountryItemModel
|
|
2671
|
-
*/
|
|
2672
|
-
'medias'?: Array<MediaModel> | null;
|
|
2673
2529
|
/**
|
|
2674
2530
|
*
|
|
2675
2531
|
* @type {AuditableEntity}
|
|
@@ -2694,55 +2550,19 @@ export interface CountryModel {
|
|
|
2694
2550
|
* @type {string}
|
|
2695
2551
|
* @memberof CountryModel
|
|
2696
2552
|
*/
|
|
2697
|
-
'
|
|
2553
|
+
'languageCode'?: string | null;
|
|
2698
2554
|
/**
|
|
2699
2555
|
*
|
|
2700
2556
|
* @type {string}
|
|
2701
2557
|
* @memberof CountryModel
|
|
2702
2558
|
*/
|
|
2703
|
-
'
|
|
2559
|
+
'name'?: string | null;
|
|
2704
2560
|
/**
|
|
2705
2561
|
*
|
|
2706
2562
|
* @type {string}
|
|
2707
2563
|
* @memberof CountryModel
|
|
2708
2564
|
*/
|
|
2709
2565
|
'slug'?: string | null;
|
|
2710
|
-
/**
|
|
2711
|
-
*
|
|
2712
|
-
* @type {string}
|
|
2713
|
-
* @memberof CountryModel
|
|
2714
|
-
*/
|
|
2715
|
-
'description'?: string | null;
|
|
2716
|
-
/**
|
|
2717
|
-
*
|
|
2718
|
-
* @type {number}
|
|
2719
|
-
* @memberof CountryModel
|
|
2720
|
-
*/
|
|
2721
|
-
'hospitalsCount'?: number;
|
|
2722
|
-
/**
|
|
2723
|
-
*
|
|
2724
|
-
* @type {number}
|
|
2725
|
-
* @memberof CountryModel
|
|
2726
|
-
*/
|
|
2727
|
-
'doctorsCount'?: number;
|
|
2728
|
-
/**
|
|
2729
|
-
*
|
|
2730
|
-
* @type {number}
|
|
2731
|
-
* @memberof CountryModel
|
|
2732
|
-
*/
|
|
2733
|
-
'specialitiesCount'?: number;
|
|
2734
|
-
/**
|
|
2735
|
-
*
|
|
2736
|
-
* @type {number}
|
|
2737
|
-
* @memberof CountryModel
|
|
2738
|
-
*/
|
|
2739
|
-
'packagesCount'?: number;
|
|
2740
|
-
/**
|
|
2741
|
-
*
|
|
2742
|
-
* @type {number}
|
|
2743
|
-
* @memberof CountryModel
|
|
2744
|
-
*/
|
|
2745
|
-
'articlesCount'?: number;
|
|
2746
2566
|
/**
|
|
2747
2567
|
*
|
|
2748
2568
|
* @type {boolean}
|
|
@@ -2751,22 +2571,22 @@ export interface CountryModel {
|
|
|
2751
2571
|
'confirmed'?: boolean;
|
|
2752
2572
|
/**
|
|
2753
2573
|
*
|
|
2754
|
-
* @type {
|
|
2574
|
+
* @type {AuditableEntity}
|
|
2755
2575
|
* @memberof CountryModel
|
|
2756
2576
|
*/
|
|
2757
|
-
'
|
|
2577
|
+
'auditableEntity'?: AuditableEntity;
|
|
2758
2578
|
/**
|
|
2759
2579
|
*
|
|
2760
|
-
* @type {
|
|
2580
|
+
* @type {string}
|
|
2761
2581
|
* @memberof CountryModel
|
|
2762
2582
|
*/
|
|
2763
|
-
'
|
|
2583
|
+
'description'?: string | null;
|
|
2764
2584
|
/**
|
|
2765
2585
|
*
|
|
2766
2586
|
* @type {string}
|
|
2767
2587
|
* @memberof CountryModel
|
|
2768
2588
|
*/
|
|
2769
|
-
'
|
|
2589
|
+
'overview'?: string | null;
|
|
2770
2590
|
/**
|
|
2771
2591
|
*
|
|
2772
2592
|
* @type {string}
|
|
@@ -2779,6 +2599,12 @@ export interface CountryModel {
|
|
|
2779
2599
|
* @memberof CountryModel
|
|
2780
2600
|
*/
|
|
2781
2601
|
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
2602
|
+
/**
|
|
2603
|
+
*
|
|
2604
|
+
* @type {Array<MediaModel>}
|
|
2605
|
+
* @memberof CountryModel
|
|
2606
|
+
*/
|
|
2607
|
+
'medias'?: Array<MediaModel> | null;
|
|
2782
2608
|
}
|
|
2783
2609
|
/**
|
|
2784
2610
|
*
|
|
@@ -3193,61 +3019,43 @@ export interface DealItemModel {
|
|
|
3193
3019
|
* @type {string}
|
|
3194
3020
|
* @memberof DealItemModel
|
|
3195
3021
|
*/
|
|
3196
|
-
'
|
|
3197
|
-
/**
|
|
3198
|
-
*
|
|
3199
|
-
* @type {string}
|
|
3200
|
-
* @memberof DealItemModel
|
|
3201
|
-
*/
|
|
3202
|
-
'slug'?: string | null;
|
|
3022
|
+
'languageCode'?: string | null;
|
|
3203
3023
|
/**
|
|
3204
3024
|
*
|
|
3205
3025
|
* @type {string}
|
|
3206
3026
|
* @memberof DealItemModel
|
|
3207
3027
|
*/
|
|
3208
|
-
'
|
|
3028
|
+
'name'?: string | null;
|
|
3209
3029
|
/**
|
|
3210
3030
|
*
|
|
3211
3031
|
* @type {string}
|
|
3212
3032
|
* @memberof DealItemModel
|
|
3213
3033
|
*/
|
|
3214
|
-
'
|
|
3034
|
+
'slug'?: string | null;
|
|
3215
3035
|
/**
|
|
3216
3036
|
*
|
|
3217
|
-
* @type {
|
|
3037
|
+
* @type {boolean}
|
|
3218
3038
|
* @memberof DealItemModel
|
|
3219
3039
|
*/
|
|
3220
|
-
'
|
|
3040
|
+
'confirmed'?: boolean;
|
|
3221
3041
|
/**
|
|
3222
3042
|
*
|
|
3223
3043
|
* @type {string}
|
|
3224
3044
|
* @memberof DealItemModel
|
|
3225
3045
|
*/
|
|
3226
|
-
'
|
|
3046
|
+
'hospitalId'?: string;
|
|
3227
3047
|
/**
|
|
3228
3048
|
*
|
|
3229
3049
|
* @type {string}
|
|
3230
3050
|
* @memberof DealItemModel
|
|
3231
3051
|
*/
|
|
3232
|
-
'
|
|
3052
|
+
'hospitalName'?: string | null;
|
|
3233
3053
|
/**
|
|
3234
3054
|
*
|
|
3235
3055
|
* @type {string}
|
|
3236
3056
|
* @memberof DealItemModel
|
|
3237
3057
|
*/
|
|
3238
|
-
'
|
|
3239
|
-
/**
|
|
3240
|
-
*
|
|
3241
|
-
* @type {boolean}
|
|
3242
|
-
* @memberof DealItemModel
|
|
3243
|
-
*/
|
|
3244
|
-
'hospitalConsultationEnabled'?: boolean;
|
|
3245
|
-
/**
|
|
3246
|
-
*
|
|
3247
|
-
* @type {number}
|
|
3248
|
-
* @memberof DealItemModel
|
|
3249
|
-
*/
|
|
3250
|
-
'serviceDuration'?: number;
|
|
3058
|
+
'hospitalSlug'?: string | null;
|
|
3251
3059
|
/**
|
|
3252
3060
|
*
|
|
3253
3061
|
* @type {MarketingType}
|
|
@@ -3272,24 +3080,6 @@ export interface DealItemModel {
|
|
|
3272
3080
|
* @memberof DealItemModel
|
|
3273
3081
|
*/
|
|
3274
3082
|
'order'?: number;
|
|
3275
|
-
/**
|
|
3276
|
-
*
|
|
3277
|
-
* @type {boolean}
|
|
3278
|
-
* @memberof DealItemModel
|
|
3279
|
-
*/
|
|
3280
|
-
'confirmed'?: boolean;
|
|
3281
|
-
/**
|
|
3282
|
-
*
|
|
3283
|
-
* @type {Array<DealPackageItemModel>}
|
|
3284
|
-
* @memberof DealItemModel
|
|
3285
|
-
*/
|
|
3286
|
-
'dealPackages'?: Array<DealPackageItemModel> | null;
|
|
3287
|
-
/**
|
|
3288
|
-
*
|
|
3289
|
-
* @type {Array<DealServiceItemModel>}
|
|
3290
|
-
* @memberof DealItemModel
|
|
3291
|
-
*/
|
|
3292
|
-
'dealServices'?: Array<DealServiceItemModel> | null;
|
|
3293
3083
|
/**
|
|
3294
3084
|
*
|
|
3295
3085
|
* @type {AuditableEntity}
|
|
@@ -3314,49 +3104,25 @@ export interface DealItemSimpleModel {
|
|
|
3314
3104
|
* @type {string}
|
|
3315
3105
|
* @memberof DealItemSimpleModel
|
|
3316
3106
|
*/
|
|
3317
|
-
'
|
|
3318
|
-
/**
|
|
3319
|
-
*
|
|
3320
|
-
* @type {string}
|
|
3321
|
-
* @memberof DealItemSimpleModel
|
|
3322
|
-
*/
|
|
3323
|
-
'slug'?: string | null;
|
|
3324
|
-
/**
|
|
3325
|
-
*
|
|
3326
|
-
* @type {string}
|
|
3327
|
-
* @memberof DealItemSimpleModel
|
|
3328
|
-
*/
|
|
3329
|
-
'hospitalId'?: string;
|
|
3107
|
+
'languageCode'?: string | null;
|
|
3330
3108
|
/**
|
|
3331
3109
|
*
|
|
3332
3110
|
* @type {string}
|
|
3333
3111
|
* @memberof DealItemSimpleModel
|
|
3334
3112
|
*/
|
|
3335
|
-
'
|
|
3113
|
+
'name'?: string | null;
|
|
3336
3114
|
/**
|
|
3337
3115
|
*
|
|
3338
3116
|
* @type {string}
|
|
3339
3117
|
* @memberof DealItemSimpleModel
|
|
3340
3118
|
*/
|
|
3341
|
-
'
|
|
3342
|
-
/**
|
|
3343
|
-
*
|
|
3344
|
-
* @type {number}
|
|
3345
|
-
* @memberof DealItemSimpleModel
|
|
3346
|
-
*/
|
|
3347
|
-
'order'?: number;
|
|
3119
|
+
'slug'?: string | null;
|
|
3348
3120
|
/**
|
|
3349
3121
|
*
|
|
3350
3122
|
* @type {boolean}
|
|
3351
3123
|
* @memberof DealItemSimpleModel
|
|
3352
3124
|
*/
|
|
3353
3125
|
'confirmed'?: boolean;
|
|
3354
|
-
/**
|
|
3355
|
-
*
|
|
3356
|
-
* @type {AuditableEntity}
|
|
3357
|
-
* @memberof DealItemSimpleModel
|
|
3358
|
-
*/
|
|
3359
|
-
'auditableEntity'?: AuditableEntity;
|
|
3360
3126
|
}
|
|
3361
3127
|
/**
|
|
3362
3128
|
*
|
|
@@ -3375,61 +3141,43 @@ export interface DealModel {
|
|
|
3375
3141
|
* @type {string}
|
|
3376
3142
|
* @memberof DealModel
|
|
3377
3143
|
*/
|
|
3378
|
-
'
|
|
3379
|
-
/**
|
|
3380
|
-
*
|
|
3381
|
-
* @type {string}
|
|
3382
|
-
* @memberof DealModel
|
|
3383
|
-
*/
|
|
3384
|
-
'slug'?: string | null;
|
|
3144
|
+
'languageCode'?: string | null;
|
|
3385
3145
|
/**
|
|
3386
3146
|
*
|
|
3387
3147
|
* @type {string}
|
|
3388
3148
|
* @memberof DealModel
|
|
3389
3149
|
*/
|
|
3390
|
-
'
|
|
3150
|
+
'name'?: string | null;
|
|
3391
3151
|
/**
|
|
3392
3152
|
*
|
|
3393
3153
|
* @type {string}
|
|
3394
3154
|
* @memberof DealModel
|
|
3395
3155
|
*/
|
|
3396
|
-
'
|
|
3156
|
+
'slug'?: string | null;
|
|
3397
3157
|
/**
|
|
3398
3158
|
*
|
|
3399
|
-
* @type {
|
|
3159
|
+
* @type {boolean}
|
|
3400
3160
|
* @memberof DealModel
|
|
3401
3161
|
*/
|
|
3402
|
-
'
|
|
3162
|
+
'confirmed'?: boolean;
|
|
3403
3163
|
/**
|
|
3404
3164
|
*
|
|
3405
3165
|
* @type {string}
|
|
3406
3166
|
* @memberof DealModel
|
|
3407
3167
|
*/
|
|
3408
|
-
'
|
|
3168
|
+
'hospitalId'?: string;
|
|
3409
3169
|
/**
|
|
3410
3170
|
*
|
|
3411
3171
|
* @type {string}
|
|
3412
3172
|
* @memberof DealModel
|
|
3413
3173
|
*/
|
|
3414
|
-
'
|
|
3174
|
+
'hospitalName'?: string | null;
|
|
3415
3175
|
/**
|
|
3416
3176
|
*
|
|
3417
3177
|
* @type {string}
|
|
3418
3178
|
* @memberof DealModel
|
|
3419
3179
|
*/
|
|
3420
|
-
'
|
|
3421
|
-
/**
|
|
3422
|
-
*
|
|
3423
|
-
* @type {boolean}
|
|
3424
|
-
* @memberof DealModel
|
|
3425
|
-
*/
|
|
3426
|
-
'hospitalConsultationEnabled'?: boolean;
|
|
3427
|
-
/**
|
|
3428
|
-
*
|
|
3429
|
-
* @type {number}
|
|
3430
|
-
* @memberof DealModel
|
|
3431
|
-
*/
|
|
3432
|
-
'serviceDuration'?: number;
|
|
3180
|
+
'hospitalSlug'?: string | null;
|
|
3433
3181
|
/**
|
|
3434
3182
|
*
|
|
3435
3183
|
* @type {MarketingType}
|
|
@@ -3456,34 +3204,34 @@ export interface DealModel {
|
|
|
3456
3204
|
'order'?: number;
|
|
3457
3205
|
/**
|
|
3458
3206
|
*
|
|
3459
|
-
* @type {
|
|
3207
|
+
* @type {AuditableEntity}
|
|
3460
3208
|
* @memberof DealModel
|
|
3461
3209
|
*/
|
|
3462
|
-
'
|
|
3210
|
+
'auditableEntity'?: AuditableEntity;
|
|
3463
3211
|
/**
|
|
3464
3212
|
*
|
|
3465
|
-
* @type {
|
|
3213
|
+
* @type {string}
|
|
3466
3214
|
* @memberof DealModel
|
|
3467
3215
|
*/
|
|
3468
|
-
'
|
|
3216
|
+
'description'?: string | null;
|
|
3469
3217
|
/**
|
|
3470
3218
|
*
|
|
3471
|
-
* @type {
|
|
3219
|
+
* @type {string}
|
|
3472
3220
|
* @memberof DealModel
|
|
3473
3221
|
*/
|
|
3474
|
-
'
|
|
3222
|
+
'overview'?: string | null;
|
|
3475
3223
|
/**
|
|
3476
3224
|
*
|
|
3477
|
-
* @type {
|
|
3225
|
+
* @type {string}
|
|
3478
3226
|
* @memberof DealModel
|
|
3479
3227
|
*/
|
|
3480
|
-
'
|
|
3228
|
+
'content'?: string | null;
|
|
3481
3229
|
/**
|
|
3482
3230
|
*
|
|
3483
|
-
* @type {
|
|
3231
|
+
* @type {number}
|
|
3484
3232
|
* @memberof DealModel
|
|
3485
3233
|
*/
|
|
3486
|
-
'
|
|
3234
|
+
'serviceDuration'?: number;
|
|
3487
3235
|
/**
|
|
3488
3236
|
*
|
|
3489
3237
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -3805,6 +3553,12 @@ export interface DealsSimpleModel {
|
|
|
3805
3553
|
* @interface DoctorAffiliationItemModel
|
|
3806
3554
|
*/
|
|
3807
3555
|
export interface DoctorAffiliationItemModel {
|
|
3556
|
+
/**
|
|
3557
|
+
*
|
|
3558
|
+
* @type {string}
|
|
3559
|
+
* @memberof DoctorAffiliationItemModel
|
|
3560
|
+
*/
|
|
3561
|
+
'languageCode'?: string | null;
|
|
3808
3562
|
/**
|
|
3809
3563
|
*
|
|
3810
3564
|
* @type {string}
|
|
@@ -3823,6 +3577,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
3823
3577
|
* @memberof DoctorAffiliationItemModel
|
|
3824
3578
|
*/
|
|
3825
3579
|
'hospitalSlug'?: string | null;
|
|
3580
|
+
/**
|
|
3581
|
+
*
|
|
3582
|
+
* @type {number}
|
|
3583
|
+
* @memberof DoctorAffiliationItemModel
|
|
3584
|
+
*/
|
|
3585
|
+
'order'?: number;
|
|
3826
3586
|
}
|
|
3827
3587
|
/**
|
|
3828
3588
|
*
|
|
@@ -3830,6 +3590,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
3830
3590
|
* @interface DoctorAffiliationModel
|
|
3831
3591
|
*/
|
|
3832
3592
|
export interface DoctorAffiliationModel {
|
|
3593
|
+
/**
|
|
3594
|
+
*
|
|
3595
|
+
* @type {string}
|
|
3596
|
+
* @memberof DoctorAffiliationModel
|
|
3597
|
+
*/
|
|
3598
|
+
'languageCode'?: string | null;
|
|
3833
3599
|
/**
|
|
3834
3600
|
*
|
|
3835
3601
|
* @type {string}
|
|
@@ -3848,6 +3614,12 @@ export interface DoctorAffiliationModel {
|
|
|
3848
3614
|
* @memberof DoctorAffiliationModel
|
|
3849
3615
|
*/
|
|
3850
3616
|
'hospitalSlug'?: string | null;
|
|
3617
|
+
/**
|
|
3618
|
+
*
|
|
3619
|
+
* @type {number}
|
|
3620
|
+
* @memberof DoctorAffiliationModel
|
|
3621
|
+
*/
|
|
3622
|
+
'order'?: number;
|
|
3851
3623
|
}
|
|
3852
3624
|
/**
|
|
3853
3625
|
*
|
|
@@ -4119,31 +3891,67 @@ export interface DoctorItemModel {
|
|
|
4119
3891
|
* @type {string}
|
|
4120
3892
|
* @memberof DoctorItemModel
|
|
4121
3893
|
*/
|
|
4122
|
-
'
|
|
3894
|
+
'languageCode'?: string | null;
|
|
4123
3895
|
/**
|
|
4124
3896
|
*
|
|
4125
3897
|
* @type {string}
|
|
4126
3898
|
* @memberof DoctorItemModel
|
|
4127
3899
|
*/
|
|
4128
|
-
'
|
|
3900
|
+
'userName'?: string | null;
|
|
4129
3901
|
/**
|
|
4130
3902
|
*
|
|
4131
|
-
* @type {
|
|
3903
|
+
* @type {string}
|
|
4132
3904
|
* @memberof DoctorItemModel
|
|
4133
3905
|
*/
|
|
4134
|
-
'
|
|
3906
|
+
'firstName'?: string | null;
|
|
4135
3907
|
/**
|
|
4136
3908
|
*
|
|
4137
|
-
* @type {
|
|
3909
|
+
* @type {string}
|
|
4138
3910
|
* @memberof DoctorItemModel
|
|
4139
3911
|
*/
|
|
4140
|
-
'
|
|
3912
|
+
'lastName'?: string | null;
|
|
3913
|
+
/**
|
|
3914
|
+
*
|
|
3915
|
+
* @type {string}
|
|
3916
|
+
* @memberof DoctorItemModel
|
|
3917
|
+
*/
|
|
3918
|
+
'fullName'?: string | null;
|
|
3919
|
+
/**
|
|
3920
|
+
*
|
|
3921
|
+
* @type {string}
|
|
3922
|
+
* @memberof DoctorItemModel
|
|
3923
|
+
*/
|
|
3924
|
+
'userType'?: string | null;
|
|
3925
|
+
/**
|
|
3926
|
+
*
|
|
3927
|
+
* @type {string}
|
|
3928
|
+
* @memberof DoctorItemModel
|
|
3929
|
+
*/
|
|
3930
|
+
'photo'?: string | null;
|
|
3931
|
+
/**
|
|
3932
|
+
*
|
|
3933
|
+
* @type {string}
|
|
3934
|
+
* @memberof DoctorItemModel
|
|
3935
|
+
*/
|
|
3936
|
+
'photoThumbnail'?: string | null;
|
|
3937
|
+
/**
|
|
3938
|
+
*
|
|
3939
|
+
* @type {AuditableEntity}
|
|
3940
|
+
* @memberof DoctorItemModel
|
|
3941
|
+
*/
|
|
3942
|
+
'auditableEntity'?: AuditableEntity;
|
|
4141
3943
|
/**
|
|
4142
3944
|
*
|
|
4143
3945
|
* @type {boolean}
|
|
4144
3946
|
* @memberof DoctorItemModel
|
|
4145
3947
|
*/
|
|
4146
|
-
'
|
|
3948
|
+
'consultationEnabled'?: boolean | null;
|
|
3949
|
+
/**
|
|
3950
|
+
*
|
|
3951
|
+
* @type {number}
|
|
3952
|
+
* @memberof DoctorItemModel
|
|
3953
|
+
*/
|
|
3954
|
+
'consultationFee'?: number | null;
|
|
4147
3955
|
/**
|
|
4148
3956
|
*
|
|
4149
3957
|
* @type {Array<DoctorSpecialtyItemModel>}
|
|
@@ -4243,19 +4051,19 @@ export interface DoctorModel {
|
|
|
4243
4051
|
* @type {string}
|
|
4244
4052
|
* @memberof DoctorModel
|
|
4245
4053
|
*/
|
|
4246
|
-
'
|
|
4054
|
+
'languageCode'?: string | null;
|
|
4247
4055
|
/**
|
|
4248
4056
|
*
|
|
4249
4057
|
* @type {string}
|
|
4250
4058
|
* @memberof DoctorModel
|
|
4251
4059
|
*/
|
|
4252
|
-
'
|
|
4060
|
+
'userName'?: string | null;
|
|
4253
4061
|
/**
|
|
4254
4062
|
*
|
|
4255
4063
|
* @type {string}
|
|
4256
4064
|
* @memberof DoctorModel
|
|
4257
4065
|
*/
|
|
4258
|
-
'
|
|
4066
|
+
'firstName'?: string | null;
|
|
4259
4067
|
/**
|
|
4260
4068
|
*
|
|
4261
4069
|
* @type {string}
|
|
@@ -4273,31 +4081,37 @@ export interface DoctorModel {
|
|
|
4273
4081
|
* @type {string}
|
|
4274
4082
|
* @memberof DoctorModel
|
|
4275
4083
|
*/
|
|
4276
|
-
'
|
|
4084
|
+
'userType'?: string | null;
|
|
4277
4085
|
/**
|
|
4278
4086
|
*
|
|
4279
4087
|
* @type {string}
|
|
4280
4088
|
* @memberof DoctorModel
|
|
4281
4089
|
*/
|
|
4282
|
-
'
|
|
4090
|
+
'photo'?: string | null;
|
|
4283
4091
|
/**
|
|
4284
4092
|
*
|
|
4285
4093
|
* @type {string}
|
|
4286
4094
|
* @memberof DoctorModel
|
|
4287
4095
|
*/
|
|
4288
|
-
'
|
|
4096
|
+
'photoThumbnail'?: string | null;
|
|
4097
|
+
/**
|
|
4098
|
+
*
|
|
4099
|
+
* @type {AuditableEntity}
|
|
4100
|
+
* @memberof DoctorModel
|
|
4101
|
+
*/
|
|
4102
|
+
'auditableEntity'?: AuditableEntity;
|
|
4289
4103
|
/**
|
|
4290
4104
|
*
|
|
4291
4105
|
* @type {string}
|
|
4292
4106
|
* @memberof DoctorModel
|
|
4293
4107
|
*/
|
|
4294
|
-
'
|
|
4108
|
+
'phone'?: string | null;
|
|
4295
4109
|
/**
|
|
4296
4110
|
*
|
|
4297
4111
|
* @type {string}
|
|
4298
4112
|
* @memberof DoctorModel
|
|
4299
4113
|
*/
|
|
4300
|
-
'
|
|
4114
|
+
'email'?: string | null;
|
|
4301
4115
|
/**
|
|
4302
4116
|
*
|
|
4303
4117
|
* @type {Gender}
|
|
@@ -4322,18 +4136,6 @@ export interface DoctorModel {
|
|
|
4322
4136
|
* @memberof DoctorModel
|
|
4323
4137
|
*/
|
|
4324
4138
|
'communicationUserId'?: string | null;
|
|
4325
|
-
/**
|
|
4326
|
-
*
|
|
4327
|
-
* @type {AuditableEntity}
|
|
4328
|
-
* @memberof DoctorModel
|
|
4329
|
-
*/
|
|
4330
|
-
'auditableEntity'?: AuditableEntity;
|
|
4331
|
-
/**
|
|
4332
|
-
*
|
|
4333
|
-
* @type {string}
|
|
4334
|
-
* @memberof DoctorModel
|
|
4335
|
-
*/
|
|
4336
|
-
'userType'?: string | null;
|
|
4337
4139
|
/**
|
|
4338
4140
|
*
|
|
4339
4141
|
* @type {Array<UserLanguageModel>}
|
|
@@ -4351,31 +4153,25 @@ export interface DoctorModel {
|
|
|
4351
4153
|
* @type {string}
|
|
4352
4154
|
* @memberof DoctorModel
|
|
4353
4155
|
*/
|
|
4354
|
-
'
|
|
4355
|
-
/**
|
|
4356
|
-
*
|
|
4357
|
-
* @type {Date}
|
|
4358
|
-
* @memberof DoctorModel
|
|
4359
|
-
*/
|
|
4360
|
-
'startPracticeDate'?: Date | null;
|
|
4156
|
+
'overview'?: string | null;
|
|
4361
4157
|
/**
|
|
4362
4158
|
*
|
|
4363
4159
|
* @type {string}
|
|
4364
4160
|
* @memberof DoctorModel
|
|
4365
4161
|
*/
|
|
4366
|
-
'
|
|
4162
|
+
'description'?: string | null;
|
|
4367
4163
|
/**
|
|
4368
4164
|
*
|
|
4369
4165
|
* @type {string}
|
|
4370
4166
|
* @memberof DoctorModel
|
|
4371
4167
|
*/
|
|
4372
|
-
'
|
|
4168
|
+
'content'?: string | null;
|
|
4373
4169
|
/**
|
|
4374
4170
|
*
|
|
4375
|
-
* @type {
|
|
4171
|
+
* @type {Date}
|
|
4376
4172
|
* @memberof DoctorModel
|
|
4377
4173
|
*/
|
|
4378
|
-
'
|
|
4174
|
+
'startPracticeDate'?: Date | null;
|
|
4379
4175
|
/**
|
|
4380
4176
|
*
|
|
4381
4177
|
* @type {boolean}
|
|
@@ -4388,12 +4184,6 @@ export interface DoctorModel {
|
|
|
4388
4184
|
* @memberof DoctorModel
|
|
4389
4185
|
*/
|
|
4390
4186
|
'consultationFee'?: number | null;
|
|
4391
|
-
/**
|
|
4392
|
-
*
|
|
4393
|
-
* @type {boolean}
|
|
4394
|
-
* @memberof DoctorModel
|
|
4395
|
-
*/
|
|
4396
|
-
'confirmed'?: boolean;
|
|
4397
4187
|
/**
|
|
4398
4188
|
*
|
|
4399
4189
|
* @type {Array<DoctorSpecialtyItemModel>}
|
|
@@ -4402,16 +4192,10 @@ export interface DoctorModel {
|
|
|
4402
4192
|
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4403
4193
|
/**
|
|
4404
4194
|
*
|
|
4405
|
-
* @type {Array<
|
|
4406
|
-
* @memberof DoctorModel
|
|
4407
|
-
*/
|
|
4408
|
-
'doctorAffiliations'?: Array<DoctorAffiliationModel> | null;
|
|
4409
|
-
/**
|
|
4410
|
-
*
|
|
4411
|
-
* @type {Array<UserTranslationModel>}
|
|
4195
|
+
* @type {Array<DoctorAffiliationItemModel>}
|
|
4412
4196
|
* @memberof DoctorModel
|
|
4413
4197
|
*/
|
|
4414
|
-
'
|
|
4198
|
+
'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
|
|
4415
4199
|
/**
|
|
4416
4200
|
*
|
|
4417
4201
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -4554,36 +4338,12 @@ export interface DoctorSimpleItemModel {
|
|
|
4554
4338
|
* @memberof DoctorSimpleItemModel
|
|
4555
4339
|
*/
|
|
4556
4340
|
'firstName'?: string | null;
|
|
4557
|
-
/**
|
|
4558
|
-
*
|
|
4559
|
-
* @type {string}
|
|
4560
|
-
* @memberof DoctorSimpleItemModel
|
|
4561
|
-
*/
|
|
4562
|
-
'middleName'?: string | null;
|
|
4563
4341
|
/**
|
|
4564
4342
|
*
|
|
4565
4343
|
* @type {string}
|
|
4566
4344
|
* @memberof DoctorSimpleItemModel
|
|
4567
4345
|
*/
|
|
4568
4346
|
'lastName'?: string | null;
|
|
4569
|
-
/**
|
|
4570
|
-
*
|
|
4571
|
-
* @type {string}
|
|
4572
|
-
* @memberof DoctorSimpleItemModel
|
|
4573
|
-
*/
|
|
4574
|
-
'fullname'?: string | null;
|
|
4575
|
-
/**
|
|
4576
|
-
*
|
|
4577
|
-
* @type {string}
|
|
4578
|
-
* @memberof DoctorSimpleItemModel
|
|
4579
|
-
*/
|
|
4580
|
-
'slug'?: string | null;
|
|
4581
|
-
/**
|
|
4582
|
-
*
|
|
4583
|
-
* @type {string}
|
|
4584
|
-
* @memberof DoctorSimpleItemModel
|
|
4585
|
-
*/
|
|
4586
|
-
'hospitalId'?: string | null;
|
|
4587
4347
|
}
|
|
4588
4348
|
/**
|
|
4589
4349
|
*
|
|
@@ -4593,10 +4353,10 @@ export interface DoctorSimpleItemModel {
|
|
|
4593
4353
|
export interface DoctorSpecialtiesModel {
|
|
4594
4354
|
/**
|
|
4595
4355
|
*
|
|
4596
|
-
* @type {Array<
|
|
4356
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
4597
4357
|
* @memberof DoctorSpecialtiesModel
|
|
4598
4358
|
*/
|
|
4599
|
-
'items'?: Array<
|
|
4359
|
+
'items'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4600
4360
|
/**
|
|
4601
4361
|
*
|
|
4602
4362
|
* @type {PagedListMetaData}
|
|
@@ -4610,6 +4370,12 @@ export interface DoctorSpecialtiesModel {
|
|
|
4610
4370
|
* @interface DoctorSpecialtyItemModel
|
|
4611
4371
|
*/
|
|
4612
4372
|
export interface DoctorSpecialtyItemModel {
|
|
4373
|
+
/**
|
|
4374
|
+
*
|
|
4375
|
+
* @type {string}
|
|
4376
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4377
|
+
*/
|
|
4378
|
+
'languageCode'?: string | null;
|
|
4613
4379
|
/**
|
|
4614
4380
|
*
|
|
4615
4381
|
* @type {string}
|
|
@@ -4641,6 +4407,12 @@ export interface DoctorSpecialtyItemModel {
|
|
|
4641
4407
|
* @interface DoctorSpecialtyModel
|
|
4642
4408
|
*/
|
|
4643
4409
|
export interface DoctorSpecialtyModel {
|
|
4410
|
+
/**
|
|
4411
|
+
*
|
|
4412
|
+
* @type {string}
|
|
4413
|
+
* @memberof DoctorSpecialtyModel
|
|
4414
|
+
*/
|
|
4415
|
+
'languageCode'?: string | null;
|
|
4644
4416
|
/**
|
|
4645
4417
|
*
|
|
4646
4418
|
* @type {string}
|
|
@@ -4665,6 +4437,18 @@ export interface DoctorSpecialtyModel {
|
|
|
4665
4437
|
* @memberof DoctorSpecialtyModel
|
|
4666
4438
|
*/
|
|
4667
4439
|
'order'?: number;
|
|
4440
|
+
/**
|
|
4441
|
+
*
|
|
4442
|
+
* @type {string}
|
|
4443
|
+
* @memberof DoctorSpecialtyModel
|
|
4444
|
+
*/
|
|
4445
|
+
'specialtyTypeName'?: string | null;
|
|
4446
|
+
/**
|
|
4447
|
+
*
|
|
4448
|
+
* @type {string}
|
|
4449
|
+
* @memberof DoctorSpecialtyModel
|
|
4450
|
+
*/
|
|
4451
|
+
'specialtyTyeSlug'?: string | null;
|
|
4668
4452
|
}
|
|
4669
4453
|
/**
|
|
4670
4454
|
*
|
|
@@ -4777,7 +4561,7 @@ export interface FaqCategoryItemModel {
|
|
|
4777
4561
|
* @type {string}
|
|
4778
4562
|
* @memberof FaqCategoryItemModel
|
|
4779
4563
|
*/
|
|
4780
|
-
'
|
|
4564
|
+
'languageCode'?: string | null;
|
|
4781
4565
|
/**
|
|
4782
4566
|
*
|
|
4783
4567
|
* @type {string}
|
|
@@ -4790,12 +4574,18 @@ export interface FaqCategoryItemModel {
|
|
|
4790
4574
|
* @memberof FaqCategoryItemModel
|
|
4791
4575
|
*/
|
|
4792
4576
|
'slug'?: string | null;
|
|
4577
|
+
/**
|
|
4578
|
+
*
|
|
4579
|
+
* @type {boolean}
|
|
4580
|
+
* @memberof FaqCategoryItemModel
|
|
4581
|
+
*/
|
|
4582
|
+
'confirmed'?: boolean;
|
|
4793
4583
|
/**
|
|
4794
4584
|
*
|
|
4795
4585
|
* @type {string}
|
|
4796
4586
|
* @memberof FaqCategoryItemModel
|
|
4797
4587
|
*/
|
|
4798
|
-
'
|
|
4588
|
+
'parentId'?: string | null;
|
|
4799
4589
|
/**
|
|
4800
4590
|
*
|
|
4801
4591
|
* @type {number}
|
|
@@ -4816,10 +4606,22 @@ export interface FaqCategoryItemModel {
|
|
|
4816
4606
|
'hospitalName'?: string | null;
|
|
4817
4607
|
/**
|
|
4818
4608
|
*
|
|
4819
|
-
* @type {
|
|
4609
|
+
* @type {string}
|
|
4820
4610
|
* @memberof FaqCategoryItemModel
|
|
4821
4611
|
*/
|
|
4822
|
-
'
|
|
4612
|
+
'hospitalSlug'?: string | null;
|
|
4613
|
+
/**
|
|
4614
|
+
*
|
|
4615
|
+
* @type {string}
|
|
4616
|
+
* @memberof FaqCategoryItemModel
|
|
4617
|
+
*/
|
|
4618
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
4619
|
+
/**
|
|
4620
|
+
*
|
|
4621
|
+
* @type {Array<MediaModel>}
|
|
4622
|
+
* @memberof FaqCategoryItemModel
|
|
4623
|
+
*/
|
|
4624
|
+
'medias'?: Array<MediaModel> | null;
|
|
4823
4625
|
/**
|
|
4824
4626
|
*
|
|
4825
4627
|
* @type {AuditableEntity}
|
|
@@ -4844,7 +4646,7 @@ export interface FaqCategoryModel {
|
|
|
4844
4646
|
* @type {string}
|
|
4845
4647
|
* @memberof FaqCategoryModel
|
|
4846
4648
|
*/
|
|
4847
|
-
'
|
|
4649
|
+
'languageCode'?: string | null;
|
|
4848
4650
|
/**
|
|
4849
4651
|
*
|
|
4850
4652
|
* @type {string}
|
|
@@ -4857,12 +4659,18 @@ export interface FaqCategoryModel {
|
|
|
4857
4659
|
* @memberof FaqCategoryModel
|
|
4858
4660
|
*/
|
|
4859
4661
|
'slug'?: string | null;
|
|
4662
|
+
/**
|
|
4663
|
+
*
|
|
4664
|
+
* @type {boolean}
|
|
4665
|
+
* @memberof FaqCategoryModel
|
|
4666
|
+
*/
|
|
4667
|
+
'confirmed'?: boolean;
|
|
4860
4668
|
/**
|
|
4861
4669
|
*
|
|
4862
4670
|
* @type {string}
|
|
4863
4671
|
* @memberof FaqCategoryModel
|
|
4864
4672
|
*/
|
|
4865
|
-
'
|
|
4673
|
+
'parentId'?: string | null;
|
|
4866
4674
|
/**
|
|
4867
4675
|
*
|
|
4868
4676
|
* @type {number}
|
|
@@ -4883,10 +4691,22 @@ export interface FaqCategoryModel {
|
|
|
4883
4691
|
'hospitalName'?: string | null;
|
|
4884
4692
|
/**
|
|
4885
4693
|
*
|
|
4886
|
-
* @type {
|
|
4694
|
+
* @type {string}
|
|
4887
4695
|
* @memberof FaqCategoryModel
|
|
4888
4696
|
*/
|
|
4889
|
-
'
|
|
4697
|
+
'hospitalSlug'?: string | null;
|
|
4698
|
+
/**
|
|
4699
|
+
*
|
|
4700
|
+
* @type {string}
|
|
4701
|
+
* @memberof FaqCategoryModel
|
|
4702
|
+
*/
|
|
4703
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
4704
|
+
/**
|
|
4705
|
+
*
|
|
4706
|
+
* @type {Array<MediaModel>}
|
|
4707
|
+
* @memberof FaqCategoryModel
|
|
4708
|
+
*/
|
|
4709
|
+
'medias'?: Array<MediaModel> | null;
|
|
4890
4710
|
/**
|
|
4891
4711
|
*
|
|
4892
4712
|
* @type {AuditableEntity}
|
|
@@ -4898,7 +4718,19 @@ export interface FaqCategoryModel {
|
|
|
4898
4718
|
* @type {string}
|
|
4899
4719
|
* @memberof FaqCategoryModel
|
|
4900
4720
|
*/
|
|
4901
|
-
'
|
|
4721
|
+
'description'?: string | null;
|
|
4722
|
+
/**
|
|
4723
|
+
*
|
|
4724
|
+
* @type {string}
|
|
4725
|
+
* @memberof FaqCategoryModel
|
|
4726
|
+
*/
|
|
4727
|
+
'overview'?: string | null;
|
|
4728
|
+
/**
|
|
4729
|
+
*
|
|
4730
|
+
* @type {string}
|
|
4731
|
+
* @memberof FaqCategoryModel
|
|
4732
|
+
*/
|
|
4733
|
+
'content'?: string | null;
|
|
4902
4734
|
/**
|
|
4903
4735
|
*
|
|
4904
4736
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -4918,6 +4750,12 @@ export interface FaqItemModel {
|
|
|
4918
4750
|
* @memberof FaqItemModel
|
|
4919
4751
|
*/
|
|
4920
4752
|
'id'?: string;
|
|
4753
|
+
/**
|
|
4754
|
+
*
|
|
4755
|
+
* @type {string}
|
|
4756
|
+
* @memberof FaqItemModel
|
|
4757
|
+
*/
|
|
4758
|
+
'languageCode'?: string | null;
|
|
4921
4759
|
/**
|
|
4922
4760
|
*
|
|
4923
4761
|
* @type {string}
|
|
@@ -4930,12 +4768,18 @@ export interface FaqItemModel {
|
|
|
4930
4768
|
* @memberof FaqItemModel
|
|
4931
4769
|
*/
|
|
4932
4770
|
'slug'?: string | null;
|
|
4771
|
+
/**
|
|
4772
|
+
*
|
|
4773
|
+
* @type {boolean}
|
|
4774
|
+
* @memberof FaqItemModel
|
|
4775
|
+
*/
|
|
4776
|
+
'confirmed'?: boolean;
|
|
4933
4777
|
/**
|
|
4934
4778
|
*
|
|
4935
4779
|
* @type {string}
|
|
4936
4780
|
* @memberof FaqItemModel
|
|
4937
4781
|
*/
|
|
4938
|
-
'
|
|
4782
|
+
'parentId'?: string | null;
|
|
4939
4783
|
/**
|
|
4940
4784
|
*
|
|
4941
4785
|
* @type {number}
|
|
@@ -4959,19 +4803,25 @@ export interface FaqItemModel {
|
|
|
4959
4803
|
* @type {string}
|
|
4960
4804
|
* @memberof FaqItemModel
|
|
4961
4805
|
*/
|
|
4962
|
-
'
|
|
4806
|
+
'hospitalSlug'?: string | null;
|
|
4963
4807
|
/**
|
|
4964
4808
|
*
|
|
4965
4809
|
* @type {string}
|
|
4966
4810
|
* @memberof FaqItemModel
|
|
4967
4811
|
*/
|
|
4968
|
-
'
|
|
4812
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
4969
4813
|
/**
|
|
4970
4814
|
*
|
|
4971
|
-
* @type {
|
|
4815
|
+
* @type {string}
|
|
4972
4816
|
* @memberof FaqItemModel
|
|
4973
4817
|
*/
|
|
4974
|
-
'
|
|
4818
|
+
'faqCategoryId'?: string;
|
|
4819
|
+
/**
|
|
4820
|
+
*
|
|
4821
|
+
* @type {string}
|
|
4822
|
+
* @memberof FaqItemModel
|
|
4823
|
+
*/
|
|
4824
|
+
'faqCategoryName'?: string | null;
|
|
4975
4825
|
/**
|
|
4976
4826
|
*
|
|
4977
4827
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -5003,6 +4853,12 @@ export interface FaqModel {
|
|
|
5003
4853
|
* @memberof FaqModel
|
|
5004
4854
|
*/
|
|
5005
4855
|
'id'?: string;
|
|
4856
|
+
/**
|
|
4857
|
+
*
|
|
4858
|
+
* @type {string}
|
|
4859
|
+
* @memberof FaqModel
|
|
4860
|
+
*/
|
|
4861
|
+
'languageCode'?: string | null;
|
|
5006
4862
|
/**
|
|
5007
4863
|
*
|
|
5008
4864
|
* @type {string}
|
|
@@ -5015,12 +4871,18 @@ export interface FaqModel {
|
|
|
5015
4871
|
* @memberof FaqModel
|
|
5016
4872
|
*/
|
|
5017
4873
|
'slug'?: string | null;
|
|
4874
|
+
/**
|
|
4875
|
+
*
|
|
4876
|
+
* @type {boolean}
|
|
4877
|
+
* @memberof FaqModel
|
|
4878
|
+
*/
|
|
4879
|
+
'confirmed'?: boolean;
|
|
5018
4880
|
/**
|
|
5019
4881
|
*
|
|
5020
4882
|
* @type {string}
|
|
5021
4883
|
* @memberof FaqModel
|
|
5022
4884
|
*/
|
|
5023
|
-
'
|
|
4885
|
+
'parentId'?: string | null;
|
|
5024
4886
|
/**
|
|
5025
4887
|
*
|
|
5026
4888
|
* @type {number}
|
|
@@ -5044,19 +4906,25 @@ export interface FaqModel {
|
|
|
5044
4906
|
* @type {string}
|
|
5045
4907
|
* @memberof FaqModel
|
|
5046
4908
|
*/
|
|
5047
|
-
'
|
|
4909
|
+
'hospitalSlug'?: string | null;
|
|
5048
4910
|
/**
|
|
5049
4911
|
*
|
|
5050
4912
|
* @type {string}
|
|
5051
4913
|
* @memberof FaqModel
|
|
5052
4914
|
*/
|
|
5053
|
-
'
|
|
4915
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
5054
4916
|
/**
|
|
5055
4917
|
*
|
|
5056
|
-
* @type {
|
|
4918
|
+
* @type {string}
|
|
5057
4919
|
* @memberof FaqModel
|
|
5058
4920
|
*/
|
|
5059
|
-
'
|
|
4921
|
+
'faqCategoryId'?: string;
|
|
4922
|
+
/**
|
|
4923
|
+
*
|
|
4924
|
+
* @type {string}
|
|
4925
|
+
* @memberof FaqModel
|
|
4926
|
+
*/
|
|
4927
|
+
'faqCategoryName'?: string | null;
|
|
5060
4928
|
/**
|
|
5061
4929
|
*
|
|
5062
4930
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -5080,7 +4948,13 @@ export interface FaqModel {
|
|
|
5080
4948
|
* @type {string}
|
|
5081
4949
|
* @memberof FaqModel
|
|
5082
4950
|
*/
|
|
5083
|
-
'
|
|
4951
|
+
'description'?: string | null;
|
|
4952
|
+
/**
|
|
4953
|
+
*
|
|
4954
|
+
* @type {string}
|
|
4955
|
+
* @memberof FaqModel
|
|
4956
|
+
*/
|
|
4957
|
+
'overview'?: string | null;
|
|
5084
4958
|
/**
|
|
5085
4959
|
*
|
|
5086
4960
|
* @type {string}
|
|
@@ -5544,13 +5418,13 @@ export interface HospitalItemModel {
|
|
|
5544
5418
|
* @type {string}
|
|
5545
5419
|
* @memberof HospitalItemModel
|
|
5546
5420
|
*/
|
|
5547
|
-
'
|
|
5421
|
+
'countryId'?: string;
|
|
5548
5422
|
/**
|
|
5549
5423
|
*
|
|
5550
5424
|
* @type {string}
|
|
5551
5425
|
* @memberof HospitalItemModel
|
|
5552
5426
|
*/
|
|
5553
|
-
'
|
|
5427
|
+
'specialtiesSummerized'?: string | null;
|
|
5554
5428
|
/**
|
|
5555
5429
|
*
|
|
5556
5430
|
* @type {Array<HospitalAccreditationItemModel>}
|
|
@@ -5653,13 +5527,13 @@ export interface HospitalModel {
|
|
|
5653
5527
|
* @type {string}
|
|
5654
5528
|
* @memberof HospitalModel
|
|
5655
5529
|
*/
|
|
5656
|
-
'
|
|
5530
|
+
'countryId'?: string;
|
|
5657
5531
|
/**
|
|
5658
5532
|
*
|
|
5659
5533
|
* @type {string}
|
|
5660
5534
|
* @memberof HospitalModel
|
|
5661
5535
|
*/
|
|
5662
|
-
'
|
|
5536
|
+
'specialtiesSummerized'?: string | null;
|
|
5663
5537
|
/**
|
|
5664
5538
|
*
|
|
5665
5539
|
* @type {Array<HospitalAccreditationItemModel>}
|
|
@@ -5792,121 +5666,19 @@ export interface HospitalServiceItemModel {
|
|
|
5792
5666
|
* @type {string}
|
|
5793
5667
|
* @memberof HospitalServiceItemModel
|
|
5794
5668
|
*/
|
|
5795
|
-
'
|
|
5796
|
-
/**
|
|
5797
|
-
*
|
|
5798
|
-
* @type {string}
|
|
5799
|
-
* @memberof HospitalServiceItemModel
|
|
5800
|
-
*/
|
|
5801
|
-
'slug'?: string | null;
|
|
5802
|
-
/**
|
|
5803
|
-
*
|
|
5804
|
-
* @type {string}
|
|
5805
|
-
* @memberof HospitalServiceItemModel
|
|
5806
|
-
*/
|
|
5807
|
-
'description'?: string | null;
|
|
5808
|
-
/**
|
|
5809
|
-
*
|
|
5810
|
-
* @type {string}
|
|
5811
|
-
* @memberof HospitalServiceItemModel
|
|
5812
|
-
*/
|
|
5813
|
-
'hospitalId'?: string;
|
|
5814
|
-
/**
|
|
5815
|
-
*
|
|
5816
|
-
* @type {string}
|
|
5817
|
-
* @memberof HospitalServiceItemModel
|
|
5818
|
-
*/
|
|
5819
|
-
'hospitalName'?: string | null;
|
|
5820
|
-
/**
|
|
5821
|
-
*
|
|
5822
|
-
* @type {string}
|
|
5823
|
-
* @memberof HospitalServiceItemModel
|
|
5824
|
-
*/
|
|
5825
|
-
'hospitalSlug'?: string | null;
|
|
5826
|
-
/**
|
|
5827
|
-
*
|
|
5828
|
-
* @type {string}
|
|
5829
|
-
* @memberof HospitalServiceItemModel
|
|
5830
|
-
*/
|
|
5831
|
-
'specialtyTypeId'?: string | null;
|
|
5832
|
-
/**
|
|
5833
|
-
*
|
|
5834
|
-
* @type {string}
|
|
5835
|
-
* @memberof HospitalServiceItemModel
|
|
5836
|
-
*/
|
|
5837
|
-
'specialtyTypeName'?: string | null;
|
|
5838
|
-
/**
|
|
5839
|
-
*
|
|
5840
|
-
* @type {string}
|
|
5841
|
-
* @memberof HospitalServiceItemModel
|
|
5842
|
-
*/
|
|
5843
|
-
'specialtyId'?: string;
|
|
5844
|
-
/**
|
|
5845
|
-
*
|
|
5846
|
-
* @type {string}
|
|
5847
|
-
* @memberof HospitalServiceItemModel
|
|
5848
|
-
*/
|
|
5849
|
-
'specialtyName'?: string | null;
|
|
5850
|
-
/**
|
|
5851
|
-
*
|
|
5852
|
-
* @type {string}
|
|
5853
|
-
* @memberof HospitalServiceItemModel
|
|
5854
|
-
*/
|
|
5855
|
-
'hospitalSpecialtyName'?: string | null;
|
|
5856
|
-
/**
|
|
5857
|
-
*
|
|
5858
|
-
* @type {string}
|
|
5859
|
-
* @memberof HospitalServiceItemModel
|
|
5860
|
-
*/
|
|
5861
|
-
'hospitalSpecialtySlug'?: string | null;
|
|
5669
|
+
'languageCode'?: string | null;
|
|
5862
5670
|
/**
|
|
5863
5671
|
*
|
|
5864
5672
|
* @type {string}
|
|
5865
5673
|
* @memberof HospitalServiceItemModel
|
|
5866
5674
|
*/
|
|
5867
|
-
'
|
|
5675
|
+
'name'?: string | null;
|
|
5868
5676
|
/**
|
|
5869
5677
|
*
|
|
5870
5678
|
* @type {string}
|
|
5871
5679
|
* @memberof HospitalServiceItemModel
|
|
5872
5680
|
*/
|
|
5873
|
-
'
|
|
5874
|
-
/**
|
|
5875
|
-
*
|
|
5876
|
-
* @type {MarketingType}
|
|
5877
|
-
* @memberof HospitalServiceItemModel
|
|
5878
|
-
*/
|
|
5879
|
-
'marketingType'?: MarketingType;
|
|
5880
|
-
/**
|
|
5881
|
-
*
|
|
5882
|
-
* @type {Procedure}
|
|
5883
|
-
* @memberof HospitalServiceItemModel
|
|
5884
|
-
*/
|
|
5885
|
-
'procedure'?: Procedure;
|
|
5886
|
-
/**
|
|
5887
|
-
*
|
|
5888
|
-
* @type {number}
|
|
5889
|
-
* @memberof HospitalServiceItemModel
|
|
5890
|
-
*/
|
|
5891
|
-
'minPrice'?: number | null;
|
|
5892
|
-
/**
|
|
5893
|
-
*
|
|
5894
|
-
* @type {number}
|
|
5895
|
-
* @memberof HospitalServiceItemModel
|
|
5896
|
-
*/
|
|
5897
|
-
'maxPrice'?: number | null;
|
|
5898
|
-
/**
|
|
5899
|
-
*
|
|
5900
|
-
* @type {boolean}
|
|
5901
|
-
* @memberof HospitalServiceItemModel
|
|
5902
|
-
*/
|
|
5903
|
-
'priceReuqest'?: boolean;
|
|
5904
|
-
/**
|
|
5905
|
-
*
|
|
5906
|
-
* @type {number}
|
|
5907
|
-
* @memberof HospitalServiceItemModel
|
|
5908
|
-
*/
|
|
5909
|
-
'order'?: number;
|
|
5681
|
+
'slug'?: string | null;
|
|
5910
5682
|
/**
|
|
5911
5683
|
*
|
|
5912
5684
|
* @type {boolean}
|
|
@@ -5915,22 +5687,22 @@ export interface HospitalServiceItemModel {
|
|
|
5915
5687
|
'confirmed'?: boolean;
|
|
5916
5688
|
/**
|
|
5917
5689
|
*
|
|
5918
|
-
* @type {
|
|
5690
|
+
* @type {number}
|
|
5919
5691
|
* @memberof HospitalServiceItemModel
|
|
5920
5692
|
*/
|
|
5921
|
-
'
|
|
5693
|
+
'order'?: number;
|
|
5922
5694
|
/**
|
|
5923
5695
|
*
|
|
5924
5696
|
* @type {string}
|
|
5925
5697
|
* @memberof HospitalServiceItemModel
|
|
5926
5698
|
*/
|
|
5927
|
-
'
|
|
5699
|
+
'photo'?: string | null;
|
|
5928
5700
|
/**
|
|
5929
5701
|
*
|
|
5930
|
-
* @type {
|
|
5702
|
+
* @type {string}
|
|
5931
5703
|
* @memberof HospitalServiceItemModel
|
|
5932
5704
|
*/
|
|
5933
|
-
'
|
|
5705
|
+
'photoThumbnail'?: string | null;
|
|
5934
5706
|
/**
|
|
5935
5707
|
*
|
|
5936
5708
|
* @type {AuditableEntity}
|
|
@@ -5955,163 +5727,139 @@ export interface HospitalServiceModel {
|
|
|
5955
5727
|
* @type {string}
|
|
5956
5728
|
* @memberof HospitalServiceModel
|
|
5957
5729
|
*/
|
|
5958
|
-
'
|
|
5730
|
+
'languageCode'?: string | null;
|
|
5959
5731
|
/**
|
|
5960
5732
|
*
|
|
5961
5733
|
* @type {string}
|
|
5962
5734
|
* @memberof HospitalServiceModel
|
|
5963
5735
|
*/
|
|
5964
|
-
'
|
|
5736
|
+
'name'?: string | null;
|
|
5965
5737
|
/**
|
|
5966
5738
|
*
|
|
5967
5739
|
* @type {string}
|
|
5968
5740
|
* @memberof HospitalServiceModel
|
|
5969
5741
|
*/
|
|
5970
|
-
'
|
|
5742
|
+
'slug'?: string | null;
|
|
5971
5743
|
/**
|
|
5972
5744
|
*
|
|
5973
|
-
* @type {
|
|
5745
|
+
* @type {boolean}
|
|
5974
5746
|
* @memberof HospitalServiceModel
|
|
5975
5747
|
*/
|
|
5976
|
-
'
|
|
5748
|
+
'confirmed'?: boolean;
|
|
5977
5749
|
/**
|
|
5978
5750
|
*
|
|
5979
|
-
* @type {
|
|
5751
|
+
* @type {number}
|
|
5980
5752
|
* @memberof HospitalServiceModel
|
|
5981
5753
|
*/
|
|
5982
|
-
'
|
|
5754
|
+
'order'?: number;
|
|
5983
5755
|
/**
|
|
5984
5756
|
*
|
|
5985
5757
|
* @type {string}
|
|
5986
5758
|
* @memberof HospitalServiceModel
|
|
5987
5759
|
*/
|
|
5988
|
-
'
|
|
5760
|
+
'photo'?: string | null;
|
|
5989
5761
|
/**
|
|
5990
5762
|
*
|
|
5991
5763
|
* @type {string}
|
|
5992
5764
|
* @memberof HospitalServiceModel
|
|
5993
5765
|
*/
|
|
5994
|
-
'
|
|
5766
|
+
'photoThumbnail'?: string | null;
|
|
5995
5767
|
/**
|
|
5996
5768
|
*
|
|
5997
|
-
* @type {
|
|
5769
|
+
* @type {AuditableEntity}
|
|
5998
5770
|
* @memberof HospitalServiceModel
|
|
5999
5771
|
*/
|
|
6000
|
-
'
|
|
5772
|
+
'auditableEntity'?: AuditableEntity;
|
|
6001
5773
|
/**
|
|
6002
5774
|
*
|
|
6003
5775
|
* @type {string}
|
|
6004
5776
|
* @memberof HospitalServiceModel
|
|
6005
5777
|
*/
|
|
6006
|
-
'
|
|
5778
|
+
'description'?: string | null;
|
|
6007
5779
|
/**
|
|
6008
5780
|
*
|
|
6009
5781
|
* @type {string}
|
|
6010
5782
|
* @memberof HospitalServiceModel
|
|
6011
5783
|
*/
|
|
6012
|
-
'
|
|
5784
|
+
'overview'?: string | null;
|
|
6013
5785
|
/**
|
|
6014
5786
|
*
|
|
6015
5787
|
* @type {string}
|
|
6016
5788
|
* @memberof HospitalServiceModel
|
|
6017
5789
|
*/
|
|
6018
|
-
'
|
|
5790
|
+
'content'?: string | null;
|
|
6019
5791
|
/**
|
|
6020
5792
|
*
|
|
6021
5793
|
* @type {string}
|
|
6022
5794
|
* @memberof HospitalServiceModel
|
|
6023
5795
|
*/
|
|
6024
|
-
'
|
|
5796
|
+
'hospitalId'?: string;
|
|
6025
5797
|
/**
|
|
6026
5798
|
*
|
|
6027
5799
|
* @type {string}
|
|
6028
5800
|
* @memberof HospitalServiceModel
|
|
6029
5801
|
*/
|
|
6030
|
-
'
|
|
5802
|
+
'hospitalName'?: string | null;
|
|
6031
5803
|
/**
|
|
6032
5804
|
*
|
|
6033
5805
|
* @type {string}
|
|
6034
5806
|
* @memberof HospitalServiceModel
|
|
6035
5807
|
*/
|
|
6036
|
-
'
|
|
6037
|
-
/**
|
|
6038
|
-
*
|
|
6039
|
-
* @type {MarketingType}
|
|
6040
|
-
* @memberof HospitalServiceModel
|
|
6041
|
-
*/
|
|
6042
|
-
'marketingType'?: MarketingType;
|
|
6043
|
-
/**
|
|
6044
|
-
*
|
|
6045
|
-
* @type {Procedure}
|
|
6046
|
-
* @memberof HospitalServiceModel
|
|
6047
|
-
*/
|
|
6048
|
-
'procedure'?: Procedure;
|
|
6049
|
-
/**
|
|
6050
|
-
*
|
|
6051
|
-
* @type {number}
|
|
6052
|
-
* @memberof HospitalServiceModel
|
|
6053
|
-
*/
|
|
6054
|
-
'minPrice'?: number | null;
|
|
6055
|
-
/**
|
|
6056
|
-
*
|
|
6057
|
-
* @type {number}
|
|
6058
|
-
* @memberof HospitalServiceModel
|
|
6059
|
-
*/
|
|
6060
|
-
'maxPrice'?: number | null;
|
|
5808
|
+
'hospitalSlug'?: string | null;
|
|
6061
5809
|
/**
|
|
6062
5810
|
*
|
|
6063
|
-
* @type {
|
|
5811
|
+
* @type {string}
|
|
6064
5812
|
* @memberof HospitalServiceModel
|
|
6065
5813
|
*/
|
|
6066
|
-
'
|
|
5814
|
+
'specialtyName'?: string | null;
|
|
6067
5815
|
/**
|
|
6068
5816
|
*
|
|
6069
|
-
* @type {
|
|
5817
|
+
* @type {string}
|
|
6070
5818
|
* @memberof HospitalServiceModel
|
|
6071
5819
|
*/
|
|
6072
|
-
'
|
|
5820
|
+
'hospitalSpecialtyName'?: string | null;
|
|
6073
5821
|
/**
|
|
6074
5822
|
*
|
|
6075
|
-
* @type {
|
|
5823
|
+
* @type {string}
|
|
6076
5824
|
* @memberof HospitalServiceModel
|
|
6077
5825
|
*/
|
|
6078
|
-
'
|
|
5826
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
6079
5827
|
/**
|
|
6080
5828
|
*
|
|
6081
5829
|
* @type {string}
|
|
6082
5830
|
* @memberof HospitalServiceModel
|
|
6083
5831
|
*/
|
|
6084
|
-
'
|
|
5832
|
+
'serviceCategoryId'?: string | null;
|
|
6085
5833
|
/**
|
|
6086
5834
|
*
|
|
6087
5835
|
* @type {string}
|
|
6088
5836
|
* @memberof HospitalServiceModel
|
|
6089
5837
|
*/
|
|
6090
|
-
'
|
|
5838
|
+
'serviceCategoryName'?: string | null;
|
|
6091
5839
|
/**
|
|
6092
5840
|
*
|
|
6093
|
-
* @type {
|
|
5841
|
+
* @type {Procedure}
|
|
6094
5842
|
* @memberof HospitalServiceModel
|
|
6095
5843
|
*/
|
|
6096
|
-
'
|
|
5844
|
+
'procedure'?: Procedure;
|
|
6097
5845
|
/**
|
|
6098
5846
|
*
|
|
6099
|
-
* @type {
|
|
5847
|
+
* @type {number}
|
|
6100
5848
|
* @memberof HospitalServiceModel
|
|
6101
5849
|
*/
|
|
6102
|
-
'
|
|
5850
|
+
'minPrice'?: number | null;
|
|
6103
5851
|
/**
|
|
6104
5852
|
*
|
|
6105
|
-
* @type {
|
|
5853
|
+
* @type {number}
|
|
6106
5854
|
* @memberof HospitalServiceModel
|
|
6107
5855
|
*/
|
|
6108
|
-
'
|
|
5856
|
+
'maxPrice'?: number | null;
|
|
6109
5857
|
/**
|
|
6110
5858
|
*
|
|
6111
|
-
* @type {
|
|
5859
|
+
* @type {boolean}
|
|
6112
5860
|
* @memberof HospitalServiceModel
|
|
6113
5861
|
*/
|
|
6114
|
-
'
|
|
5862
|
+
'priceReuqest'?: boolean;
|
|
6115
5863
|
/**
|
|
6116
5864
|
*
|
|
6117
5865
|
* @type {string}
|
|
@@ -6120,10 +5868,10 @@ export interface HospitalServiceModel {
|
|
|
6120
5868
|
'customStyle'?: string | null;
|
|
6121
5869
|
/**
|
|
6122
5870
|
*
|
|
6123
|
-
* @type {Array<
|
|
5871
|
+
* @type {Array<MediaModel>}
|
|
6124
5872
|
* @memberof HospitalServiceModel
|
|
6125
5873
|
*/
|
|
6126
|
-
'
|
|
5874
|
+
'medias'?: Array<MediaModel> | null;
|
|
6127
5875
|
}
|
|
6128
5876
|
/**
|
|
6129
5877
|
*
|
|
@@ -6156,6 +5904,12 @@ export interface HospitalSimpleItemModel {
|
|
|
6156
5904
|
* @memberof HospitalSimpleItemModel
|
|
6157
5905
|
*/
|
|
6158
5906
|
'id'?: string;
|
|
5907
|
+
/**
|
|
5908
|
+
*
|
|
5909
|
+
* @type {string}
|
|
5910
|
+
* @memberof HospitalSimpleItemModel
|
|
5911
|
+
*/
|
|
5912
|
+
'languageCode'?: string | null;
|
|
6159
5913
|
/**
|
|
6160
5914
|
*
|
|
6161
5915
|
* @type {string}
|
|
@@ -6264,16 +6018,10 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6264
6018
|
'slug'?: string | null;
|
|
6265
6019
|
/**
|
|
6266
6020
|
*
|
|
6267
|
-
* @type {
|
|
6268
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6269
|
-
*/
|
|
6270
|
-
'description'?: string | null;
|
|
6271
|
-
/**
|
|
6272
|
-
*
|
|
6273
|
-
* @type {boolean}
|
|
6021
|
+
* @type {number}
|
|
6274
6022
|
* @memberof HospitalSpecialtyItemModel
|
|
6275
6023
|
*/
|
|
6276
|
-
'
|
|
6024
|
+
'order'?: number;
|
|
6277
6025
|
/**
|
|
6278
6026
|
*
|
|
6279
6027
|
* @type {string}
|
|
@@ -6298,12 +6046,6 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6298
6046
|
* @memberof HospitalSpecialtyItemModel
|
|
6299
6047
|
*/
|
|
6300
6048
|
'backgroundThumbnail'?: string | null;
|
|
6301
|
-
/**
|
|
6302
|
-
*
|
|
6303
|
-
* @type {number}
|
|
6304
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6305
|
-
*/
|
|
6306
|
-
'order'?: number;
|
|
6307
6049
|
/**
|
|
6308
6050
|
*
|
|
6309
6051
|
* @type {number}
|
|
@@ -6349,16 +6091,10 @@ export interface HospitalSpecialtyModel {
|
|
|
6349
6091
|
'slug'?: string | null;
|
|
6350
6092
|
/**
|
|
6351
6093
|
*
|
|
6352
|
-
* @type {
|
|
6353
|
-
* @memberof HospitalSpecialtyModel
|
|
6354
|
-
*/
|
|
6355
|
-
'description'?: string | null;
|
|
6356
|
-
/**
|
|
6357
|
-
*
|
|
6358
|
-
* @type {boolean}
|
|
6094
|
+
* @type {number}
|
|
6359
6095
|
* @memberof HospitalSpecialtyModel
|
|
6360
6096
|
*/
|
|
6361
|
-
'
|
|
6097
|
+
'order'?: number;
|
|
6362
6098
|
/**
|
|
6363
6099
|
*
|
|
6364
6100
|
* @type {string}
|
|
@@ -6388,37 +6124,37 @@ export interface HospitalSpecialtyModel {
|
|
|
6388
6124
|
* @type {number}
|
|
6389
6125
|
* @memberof HospitalSpecialtyModel
|
|
6390
6126
|
*/
|
|
6391
|
-
'
|
|
6127
|
+
'servicesCount'?: number;
|
|
6392
6128
|
/**
|
|
6393
6129
|
*
|
|
6394
|
-
* @type {
|
|
6130
|
+
* @type {string}
|
|
6395
6131
|
* @memberof HospitalSpecialtyModel
|
|
6396
6132
|
*/
|
|
6397
|
-
'
|
|
6133
|
+
'specialtyId'?: string;
|
|
6398
6134
|
/**
|
|
6399
6135
|
*
|
|
6400
6136
|
* @type {string}
|
|
6401
6137
|
* @memberof HospitalSpecialtyModel
|
|
6402
6138
|
*/
|
|
6403
|
-
'
|
|
6139
|
+
'description'?: string | null;
|
|
6404
6140
|
/**
|
|
6405
6141
|
*
|
|
6406
6142
|
* @type {string}
|
|
6407
6143
|
* @memberof HospitalSpecialtyModel
|
|
6408
6144
|
*/
|
|
6409
|
-
'
|
|
6145
|
+
'content'?: string | null;
|
|
6410
6146
|
/**
|
|
6411
6147
|
*
|
|
6412
|
-
* @type {
|
|
6148
|
+
* @type {boolean}
|
|
6413
6149
|
* @memberof HospitalSpecialtyModel
|
|
6414
6150
|
*/
|
|
6415
|
-
'
|
|
6151
|
+
'confirmed'?: boolean;
|
|
6416
6152
|
/**
|
|
6417
6153
|
*
|
|
6418
6154
|
* @type {string}
|
|
6419
6155
|
* @memberof HospitalSpecialtyModel
|
|
6420
6156
|
*/
|
|
6421
|
-
'
|
|
6157
|
+
'hospitalId'?: string;
|
|
6422
6158
|
/**
|
|
6423
6159
|
*
|
|
6424
6160
|
* @type {string}
|
|
@@ -6448,13 +6184,7 @@ export interface HospitalSpecialtyModel {
|
|
|
6448
6184
|
* @type {string}
|
|
6449
6185
|
* @memberof HospitalSpecialtyModel
|
|
6450
6186
|
*/
|
|
6451
|
-
'
|
|
6452
|
-
/**
|
|
6453
|
-
*
|
|
6454
|
-
* @type {MarketingType}
|
|
6455
|
-
* @memberof HospitalSpecialtyModel
|
|
6456
|
-
*/
|
|
6457
|
-
'marketingType'?: MarketingType;
|
|
6187
|
+
'customStyle'?: string | null;
|
|
6458
6188
|
/**
|
|
6459
6189
|
*
|
|
6460
6190
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -6485,55 +6215,25 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
6485
6215
|
* @type {string}
|
|
6486
6216
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6487
6217
|
*/
|
|
6488
|
-
'
|
|
6218
|
+
'languageCode'?: string | null;
|
|
6489
6219
|
/**
|
|
6490
6220
|
*
|
|
6491
6221
|
* @type {string}
|
|
6492
6222
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6493
6223
|
*/
|
|
6494
|
-
'
|
|
6224
|
+
'name'?: string | null;
|
|
6495
6225
|
/**
|
|
6496
6226
|
*
|
|
6497
6227
|
* @type {string}
|
|
6498
6228
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6499
6229
|
*/
|
|
6500
|
-
'
|
|
6230
|
+
'slug'?: string | null;
|
|
6501
6231
|
/**
|
|
6502
6232
|
*
|
|
6503
6233
|
* @type {number}
|
|
6504
6234
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6505
6235
|
*/
|
|
6506
6236
|
'order'?: number;
|
|
6507
|
-
/**
|
|
6508
|
-
*
|
|
6509
|
-
* @type {boolean}
|
|
6510
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6511
|
-
*/
|
|
6512
|
-
'confirmed'?: boolean;
|
|
6513
|
-
/**
|
|
6514
|
-
*
|
|
6515
|
-
* @type {number}
|
|
6516
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6517
|
-
*/
|
|
6518
|
-
'servicesCount'?: number;
|
|
6519
|
-
/**
|
|
6520
|
-
*
|
|
6521
|
-
* @type {string}
|
|
6522
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6523
|
-
*/
|
|
6524
|
-
'specialtyId'?: string;
|
|
6525
|
-
/**
|
|
6526
|
-
*
|
|
6527
|
-
* @type {string}
|
|
6528
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6529
|
-
*/
|
|
6530
|
-
'specialtyName'?: string | null;
|
|
6531
|
-
/**
|
|
6532
|
-
*
|
|
6533
|
-
* @type {string}
|
|
6534
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6535
|
-
*/
|
|
6536
|
-
'specialtySlug'?: string | null;
|
|
6537
6237
|
}
|
|
6538
6238
|
/**
|
|
6539
6239
|
*
|
|
@@ -7281,19 +6981,19 @@ export interface PatientModel {
|
|
|
7281
6981
|
* @type {string}
|
|
7282
6982
|
* @memberof PatientModel
|
|
7283
6983
|
*/
|
|
7284
|
-
'
|
|
6984
|
+
'languageCode'?: string | null;
|
|
7285
6985
|
/**
|
|
7286
6986
|
*
|
|
7287
6987
|
* @type {string}
|
|
7288
6988
|
* @memberof PatientModel
|
|
7289
6989
|
*/
|
|
7290
|
-
'
|
|
6990
|
+
'userName'?: string | null;
|
|
7291
6991
|
/**
|
|
7292
6992
|
*
|
|
7293
6993
|
* @type {string}
|
|
7294
6994
|
* @memberof PatientModel
|
|
7295
6995
|
*/
|
|
7296
|
-
'
|
|
6996
|
+
'firstName'?: string | null;
|
|
7297
6997
|
/**
|
|
7298
6998
|
*
|
|
7299
6999
|
* @type {string}
|
|
@@ -7311,31 +7011,37 @@ export interface PatientModel {
|
|
|
7311
7011
|
* @type {string}
|
|
7312
7012
|
* @memberof PatientModel
|
|
7313
7013
|
*/
|
|
7314
|
-
'
|
|
7014
|
+
'userType'?: string | null;
|
|
7315
7015
|
/**
|
|
7316
7016
|
*
|
|
7317
7017
|
* @type {string}
|
|
7318
7018
|
* @memberof PatientModel
|
|
7319
7019
|
*/
|
|
7320
|
-
'
|
|
7020
|
+
'photo'?: string | null;
|
|
7321
7021
|
/**
|
|
7322
7022
|
*
|
|
7323
7023
|
* @type {string}
|
|
7324
7024
|
* @memberof PatientModel
|
|
7325
7025
|
*/
|
|
7326
|
-
'
|
|
7026
|
+
'photoThumbnail'?: string | null;
|
|
7027
|
+
/**
|
|
7028
|
+
*
|
|
7029
|
+
* @type {AuditableEntity}
|
|
7030
|
+
* @memberof PatientModel
|
|
7031
|
+
*/
|
|
7032
|
+
'auditableEntity'?: AuditableEntity;
|
|
7327
7033
|
/**
|
|
7328
7034
|
*
|
|
7329
7035
|
* @type {string}
|
|
7330
7036
|
* @memberof PatientModel
|
|
7331
7037
|
*/
|
|
7332
|
-
'
|
|
7038
|
+
'phone'?: string | null;
|
|
7333
7039
|
/**
|
|
7334
7040
|
*
|
|
7335
7041
|
* @type {string}
|
|
7336
7042
|
* @memberof PatientModel
|
|
7337
7043
|
*/
|
|
7338
|
-
'
|
|
7044
|
+
'email'?: string | null;
|
|
7339
7045
|
/**
|
|
7340
7046
|
*
|
|
7341
7047
|
* @type {Gender}
|
|
@@ -7360,18 +7066,6 @@ export interface PatientModel {
|
|
|
7360
7066
|
* @memberof PatientModel
|
|
7361
7067
|
*/
|
|
7362
7068
|
'communicationUserId'?: string | null;
|
|
7363
|
-
/**
|
|
7364
|
-
*
|
|
7365
|
-
* @type {AuditableEntity}
|
|
7366
|
-
* @memberof PatientModel
|
|
7367
|
-
*/
|
|
7368
|
-
'auditableEntity'?: AuditableEntity;
|
|
7369
|
-
/**
|
|
7370
|
-
*
|
|
7371
|
-
* @type {string}
|
|
7372
|
-
* @memberof PatientModel
|
|
7373
|
-
*/
|
|
7374
|
-
'userType'?: string | null;
|
|
7375
7069
|
/**
|
|
7376
7070
|
*
|
|
7377
7071
|
* @type {Array<UserLanguageModel>}
|
|
@@ -8400,43 +8094,19 @@ export interface SpecialtyItemModel {
|
|
|
8400
8094
|
* @type {string}
|
|
8401
8095
|
* @memberof SpecialtyItemModel
|
|
8402
8096
|
*/
|
|
8403
|
-
'
|
|
8404
|
-
/**
|
|
8405
|
-
*
|
|
8406
|
-
* @type {string}
|
|
8407
|
-
* @memberof SpecialtyItemModel
|
|
8408
|
-
*/
|
|
8409
|
-
'slug'?: string | null;
|
|
8410
|
-
/**
|
|
8411
|
-
*
|
|
8412
|
-
* @type {string}
|
|
8413
|
-
* @memberof SpecialtyItemModel
|
|
8414
|
-
*/
|
|
8415
|
-
'description'?: string | null;
|
|
8416
|
-
/**
|
|
8417
|
-
*
|
|
8418
|
-
* @type {number}
|
|
8419
|
-
* @memberof SpecialtyItemModel
|
|
8420
|
-
*/
|
|
8421
|
-
'hospitalSpecialtyCount'?: number;
|
|
8422
|
-
/**
|
|
8423
|
-
*
|
|
8424
|
-
* @type {number}
|
|
8425
|
-
* @memberof SpecialtyItemModel
|
|
8426
|
-
*/
|
|
8427
|
-
'serviceCount'?: number;
|
|
8097
|
+
'languageCode'?: string | null;
|
|
8428
8098
|
/**
|
|
8429
8099
|
*
|
|
8430
8100
|
* @type {string}
|
|
8431
8101
|
* @memberof SpecialtyItemModel
|
|
8432
8102
|
*/
|
|
8433
|
-
'
|
|
8103
|
+
'name'?: string | null;
|
|
8434
8104
|
/**
|
|
8435
8105
|
*
|
|
8436
8106
|
* @type {string}
|
|
8437
8107
|
* @memberof SpecialtyItemModel
|
|
8438
8108
|
*/
|
|
8439
|
-
'
|
|
8109
|
+
'slug'?: string | null;
|
|
8440
8110
|
/**
|
|
8441
8111
|
*
|
|
8442
8112
|
* @type {boolean}
|
|
@@ -8445,22 +8115,28 @@ export interface SpecialtyItemModel {
|
|
|
8445
8115
|
'confirmed'?: boolean;
|
|
8446
8116
|
/**
|
|
8447
8117
|
*
|
|
8448
|
-
* @type {
|
|
8118
|
+
* @type {string}
|
|
8449
8119
|
* @memberof SpecialtyItemModel
|
|
8450
8120
|
*/
|
|
8451
|
-
'
|
|
8121
|
+
'specialtyTypeId'?: string;
|
|
8452
8122
|
/**
|
|
8453
8123
|
*
|
|
8454
|
-
* @type {
|
|
8124
|
+
* @type {string}
|
|
8455
8125
|
* @memberof SpecialtyItemModel
|
|
8456
8126
|
*/
|
|
8457
|
-
'
|
|
8127
|
+
'specialtyTypeName'?: string | null;
|
|
8458
8128
|
/**
|
|
8459
8129
|
*
|
|
8460
8130
|
* @type {Array<MediaModel>}
|
|
8461
8131
|
* @memberof SpecialtyItemModel
|
|
8462
8132
|
*/
|
|
8463
8133
|
'medias'?: Array<MediaModel> | null;
|
|
8134
|
+
/**
|
|
8135
|
+
*
|
|
8136
|
+
* @type {AuditableEntity}
|
|
8137
|
+
* @memberof SpecialtyItemModel
|
|
8138
|
+
*/
|
|
8139
|
+
'auditableEntity'?: AuditableEntity;
|
|
8464
8140
|
}
|
|
8465
8141
|
/**
|
|
8466
8142
|
*
|
|
@@ -8479,25 +8155,31 @@ export interface SpecialtyItemSimpleModel {
|
|
|
8479
8155
|
* @type {string}
|
|
8480
8156
|
* @memberof SpecialtyItemSimpleModel
|
|
8481
8157
|
*/
|
|
8482
|
-
'
|
|
8158
|
+
'languageCode'?: string | null;
|
|
8483
8159
|
/**
|
|
8484
8160
|
*
|
|
8485
8161
|
* @type {string}
|
|
8486
8162
|
* @memberof SpecialtyItemSimpleModel
|
|
8487
8163
|
*/
|
|
8488
|
-
'
|
|
8164
|
+
'name'?: string | null;
|
|
8489
8165
|
/**
|
|
8490
8166
|
*
|
|
8491
8167
|
* @type {string}
|
|
8492
8168
|
* @memberof SpecialtyItemSimpleModel
|
|
8493
8169
|
*/
|
|
8494
|
-
'
|
|
8170
|
+
'slug'?: string | null;
|
|
8495
8171
|
/**
|
|
8496
8172
|
*
|
|
8497
8173
|
* @type {boolean}
|
|
8498
8174
|
* @memberof SpecialtyItemSimpleModel
|
|
8499
8175
|
*/
|
|
8500
8176
|
'confirmed'?: boolean;
|
|
8177
|
+
/**
|
|
8178
|
+
*
|
|
8179
|
+
* @type {string}
|
|
8180
|
+
* @memberof SpecialtyItemSimpleModel
|
|
8181
|
+
*/
|
|
8182
|
+
'specialtyTypeId'?: string;
|
|
8501
8183
|
}
|
|
8502
8184
|
/**
|
|
8503
8185
|
*
|
|
@@ -8516,31 +8198,25 @@ export interface SpecialtyModel {
|
|
|
8516
8198
|
* @type {string}
|
|
8517
8199
|
* @memberof SpecialtyModel
|
|
8518
8200
|
*/
|
|
8519
|
-
'
|
|
8201
|
+
'languageCode'?: string | null;
|
|
8520
8202
|
/**
|
|
8521
8203
|
*
|
|
8522
8204
|
* @type {string}
|
|
8523
8205
|
* @memberof SpecialtyModel
|
|
8524
8206
|
*/
|
|
8525
|
-
'
|
|
8207
|
+
'name'?: string | null;
|
|
8526
8208
|
/**
|
|
8527
8209
|
*
|
|
8528
8210
|
* @type {string}
|
|
8529
8211
|
* @memberof SpecialtyModel
|
|
8530
8212
|
*/
|
|
8531
|
-
'
|
|
8532
|
-
/**
|
|
8533
|
-
*
|
|
8534
|
-
* @type {number}
|
|
8535
|
-
* @memberof SpecialtyModel
|
|
8536
|
-
*/
|
|
8537
|
-
'hospitalSpecialtyCount'?: number;
|
|
8213
|
+
'slug'?: string | null;
|
|
8538
8214
|
/**
|
|
8539
8215
|
*
|
|
8540
|
-
* @type {
|
|
8216
|
+
* @type {boolean}
|
|
8541
8217
|
* @memberof SpecialtyModel
|
|
8542
8218
|
*/
|
|
8543
|
-
'
|
|
8219
|
+
'confirmed'?: boolean;
|
|
8544
8220
|
/**
|
|
8545
8221
|
*
|
|
8546
8222
|
* @type {string}
|
|
@@ -8555,10 +8231,10 @@ export interface SpecialtyModel {
|
|
|
8555
8231
|
'specialtyTypeName'?: string | null;
|
|
8556
8232
|
/**
|
|
8557
8233
|
*
|
|
8558
|
-
* @type {
|
|
8234
|
+
* @type {Array<MediaModel>}
|
|
8559
8235
|
* @memberof SpecialtyModel
|
|
8560
8236
|
*/
|
|
8561
|
-
'
|
|
8237
|
+
'medias'?: Array<MediaModel> | null;
|
|
8562
8238
|
/**
|
|
8563
8239
|
*
|
|
8564
8240
|
* @type {AuditableEntity}
|
|
@@ -8567,22 +8243,16 @@ export interface SpecialtyModel {
|
|
|
8567
8243
|
'auditableEntity'?: AuditableEntity;
|
|
8568
8244
|
/**
|
|
8569
8245
|
*
|
|
8570
|
-
* @type {
|
|
8571
|
-
* @memberof SpecialtyModel
|
|
8572
|
-
*/
|
|
8573
|
-
'returnDefaultValue'?: boolean | null;
|
|
8574
|
-
/**
|
|
8575
|
-
*
|
|
8576
|
-
* @type {Array<MediaModel>}
|
|
8246
|
+
* @type {string}
|
|
8577
8247
|
* @memberof SpecialtyModel
|
|
8578
8248
|
*/
|
|
8579
|
-
'
|
|
8249
|
+
'description'?: string | null;
|
|
8580
8250
|
/**
|
|
8581
8251
|
*
|
|
8582
8252
|
* @type {string}
|
|
8583
8253
|
* @memberof SpecialtyModel
|
|
8584
8254
|
*/
|
|
8585
|
-
'
|
|
8255
|
+
'overview'?: string | null;
|
|
8586
8256
|
/**
|
|
8587
8257
|
*
|
|
8588
8258
|
* @type {string}
|
|
@@ -8613,55 +8283,43 @@ export interface SpecialtyTypeItemModel {
|
|
|
8613
8283
|
* @type {string}
|
|
8614
8284
|
* @memberof SpecialtyTypeItemModel
|
|
8615
8285
|
*/
|
|
8616
|
-
'
|
|
8286
|
+
'languageCode'?: string | null;
|
|
8617
8287
|
/**
|
|
8618
8288
|
*
|
|
8619
8289
|
* @type {string}
|
|
8620
8290
|
* @memberof SpecialtyTypeItemModel
|
|
8621
8291
|
*/
|
|
8622
|
-
'
|
|
8292
|
+
'name'?: string | null;
|
|
8623
8293
|
/**
|
|
8624
8294
|
*
|
|
8625
8295
|
* @type {string}
|
|
8626
8296
|
* @memberof SpecialtyTypeItemModel
|
|
8627
8297
|
*/
|
|
8628
|
-
'
|
|
8298
|
+
'slug'?: string | null;
|
|
8629
8299
|
/**
|
|
8630
8300
|
*
|
|
8631
|
-
* @type {
|
|
8301
|
+
* @type {boolean}
|
|
8632
8302
|
* @memberof SpecialtyTypeItemModel
|
|
8633
8303
|
*/
|
|
8634
|
-
'
|
|
8304
|
+
'confirmed'?: boolean;
|
|
8635
8305
|
/**
|
|
8636
8306
|
*
|
|
8637
|
-
* @type {
|
|
8307
|
+
* @type {string}
|
|
8638
8308
|
* @memberof SpecialtyTypeItemModel
|
|
8639
8309
|
*/
|
|
8640
|
-
'
|
|
8310
|
+
'description'?: string | null;
|
|
8641
8311
|
/**
|
|
8642
8312
|
*
|
|
8643
|
-
* @type {
|
|
8313
|
+
* @type {MarketingType}
|
|
8644
8314
|
* @memberof SpecialtyTypeItemModel
|
|
8645
8315
|
*/
|
|
8646
|
-
'
|
|
8316
|
+
'marketingType'?: MarketingType;
|
|
8647
8317
|
/**
|
|
8648
8318
|
*
|
|
8649
8319
|
* @type {number}
|
|
8650
8320
|
* @memberof SpecialtyTypeItemModel
|
|
8651
8321
|
*/
|
|
8652
|
-
'
|
|
8653
|
-
/**
|
|
8654
|
-
*
|
|
8655
|
-
* @type {Date}
|
|
8656
|
-
* @memberof SpecialtyTypeItemModel
|
|
8657
|
-
*/
|
|
8658
|
-
'created'?: Date;
|
|
8659
|
-
/**
|
|
8660
|
-
*
|
|
8661
|
-
* @type {boolean}
|
|
8662
|
-
* @memberof SpecialtyTypeItemModel
|
|
8663
|
-
*/
|
|
8664
|
-
'confirmed'?: boolean;
|
|
8322
|
+
'specialtiesCount'?: number;
|
|
8665
8323
|
/**
|
|
8666
8324
|
*
|
|
8667
8325
|
* @type {Array<MediaModel>}
|
|
@@ -8692,55 +8350,43 @@ export interface SpecialtyTypeModel {
|
|
|
8692
8350
|
* @type {string}
|
|
8693
8351
|
* @memberof SpecialtyTypeModel
|
|
8694
8352
|
*/
|
|
8695
|
-
'
|
|
8353
|
+
'languageCode'?: string | null;
|
|
8696
8354
|
/**
|
|
8697
8355
|
*
|
|
8698
8356
|
* @type {string}
|
|
8699
8357
|
* @memberof SpecialtyTypeModel
|
|
8700
8358
|
*/
|
|
8701
|
-
'
|
|
8359
|
+
'name'?: string | null;
|
|
8702
8360
|
/**
|
|
8703
8361
|
*
|
|
8704
8362
|
* @type {string}
|
|
8705
8363
|
* @memberof SpecialtyTypeModel
|
|
8706
8364
|
*/
|
|
8707
|
-
'
|
|
8365
|
+
'slug'?: string | null;
|
|
8708
8366
|
/**
|
|
8709
8367
|
*
|
|
8710
|
-
* @type {
|
|
8368
|
+
* @type {boolean}
|
|
8711
8369
|
* @memberof SpecialtyTypeModel
|
|
8712
8370
|
*/
|
|
8713
|
-
'
|
|
8371
|
+
'confirmed'?: boolean;
|
|
8714
8372
|
/**
|
|
8715
8373
|
*
|
|
8716
|
-
* @type {
|
|
8374
|
+
* @type {string}
|
|
8717
8375
|
* @memberof SpecialtyTypeModel
|
|
8718
8376
|
*/
|
|
8719
|
-
'
|
|
8377
|
+
'description'?: string | null;
|
|
8720
8378
|
/**
|
|
8721
8379
|
*
|
|
8722
|
-
* @type {
|
|
8380
|
+
* @type {MarketingType}
|
|
8723
8381
|
* @memberof SpecialtyTypeModel
|
|
8724
8382
|
*/
|
|
8725
|
-
'
|
|
8383
|
+
'marketingType'?: MarketingType;
|
|
8726
8384
|
/**
|
|
8727
8385
|
*
|
|
8728
8386
|
* @type {number}
|
|
8729
8387
|
* @memberof SpecialtyTypeModel
|
|
8730
8388
|
*/
|
|
8731
|
-
'
|
|
8732
|
-
/**
|
|
8733
|
-
*
|
|
8734
|
-
* @type {Date}
|
|
8735
|
-
* @memberof SpecialtyTypeModel
|
|
8736
|
-
*/
|
|
8737
|
-
'created'?: Date;
|
|
8738
|
-
/**
|
|
8739
|
-
*
|
|
8740
|
-
* @type {boolean}
|
|
8741
|
-
* @memberof SpecialtyTypeModel
|
|
8742
|
-
*/
|
|
8743
|
-
'confirmed'?: boolean;
|
|
8389
|
+
'specialtiesCount'?: number;
|
|
8744
8390
|
/**
|
|
8745
8391
|
*
|
|
8746
8392
|
* @type {Array<MediaModel>}
|
|
@@ -8753,12 +8399,6 @@ export interface SpecialtyTypeModel {
|
|
|
8753
8399
|
* @memberof SpecialtyTypeModel
|
|
8754
8400
|
*/
|
|
8755
8401
|
'auditableEntity'?: AuditableEntity;
|
|
8756
|
-
/**
|
|
8757
|
-
*
|
|
8758
|
-
* @type {string}
|
|
8759
|
-
* @memberof SpecialtyTypeModel
|
|
8760
|
-
*/
|
|
8761
|
-
'languageCode'?: string | null;
|
|
8762
8402
|
/**
|
|
8763
8403
|
*
|
|
8764
8404
|
* @type {string}
|
|
@@ -8784,6 +8424,12 @@ export interface SpecialtyTypeSimpleItemModel {
|
|
|
8784
8424
|
* @memberof SpecialtyTypeSimpleItemModel
|
|
8785
8425
|
*/
|
|
8786
8426
|
'id'?: string;
|
|
8427
|
+
/**
|
|
8428
|
+
*
|
|
8429
|
+
* @type {string}
|
|
8430
|
+
* @memberof SpecialtyTypeSimpleItemModel
|
|
8431
|
+
*/
|
|
8432
|
+
'languageCode'?: string | null;
|
|
8787
8433
|
/**
|
|
8788
8434
|
*
|
|
8789
8435
|
* @type {string}
|
|
@@ -9456,19 +9102,19 @@ export interface UserModel {
|
|
|
9456
9102
|
* @type {string}
|
|
9457
9103
|
* @memberof UserModel
|
|
9458
9104
|
*/
|
|
9459
|
-
'
|
|
9105
|
+
'languageCode'?: string | null;
|
|
9460
9106
|
/**
|
|
9461
9107
|
*
|
|
9462
9108
|
* @type {string}
|
|
9463
9109
|
* @memberof UserModel
|
|
9464
9110
|
*/
|
|
9465
|
-
'
|
|
9111
|
+
'userName'?: string | null;
|
|
9466
9112
|
/**
|
|
9467
9113
|
*
|
|
9468
9114
|
* @type {string}
|
|
9469
9115
|
* @memberof UserModel
|
|
9470
9116
|
*/
|
|
9471
|
-
'
|
|
9117
|
+
'firstName'?: string | null;
|
|
9472
9118
|
/**
|
|
9473
9119
|
*
|
|
9474
9120
|
* @type {string}
|
|
@@ -9486,31 +9132,37 @@ export interface UserModel {
|
|
|
9486
9132
|
* @type {string}
|
|
9487
9133
|
* @memberof UserModel
|
|
9488
9134
|
*/
|
|
9489
|
-
'
|
|
9135
|
+
'userType'?: string | null;
|
|
9490
9136
|
/**
|
|
9491
9137
|
*
|
|
9492
9138
|
* @type {string}
|
|
9493
9139
|
* @memberof UserModel
|
|
9494
9140
|
*/
|
|
9495
|
-
'
|
|
9141
|
+
'photo'?: string | null;
|
|
9496
9142
|
/**
|
|
9497
9143
|
*
|
|
9498
9144
|
* @type {string}
|
|
9499
9145
|
* @memberof UserModel
|
|
9500
9146
|
*/
|
|
9501
|
-
'
|
|
9147
|
+
'photoThumbnail'?: string | null;
|
|
9148
|
+
/**
|
|
9149
|
+
*
|
|
9150
|
+
* @type {AuditableEntity}
|
|
9151
|
+
* @memberof UserModel
|
|
9152
|
+
*/
|
|
9153
|
+
'auditableEntity'?: AuditableEntity;
|
|
9502
9154
|
/**
|
|
9503
9155
|
*
|
|
9504
9156
|
* @type {string}
|
|
9505
9157
|
* @memberof UserModel
|
|
9506
9158
|
*/
|
|
9507
|
-
'
|
|
9159
|
+
'phone'?: string | null;
|
|
9508
9160
|
/**
|
|
9509
9161
|
*
|
|
9510
9162
|
* @type {string}
|
|
9511
9163
|
* @memberof UserModel
|
|
9512
9164
|
*/
|
|
9513
|
-
'
|
|
9165
|
+
'email'?: string | null;
|
|
9514
9166
|
/**
|
|
9515
9167
|
*
|
|
9516
9168
|
* @type {Gender}
|
|
@@ -9535,18 +9187,6 @@ export interface UserModel {
|
|
|
9535
9187
|
* @memberof UserModel
|
|
9536
9188
|
*/
|
|
9537
9189
|
'communicationUserId'?: string | null;
|
|
9538
|
-
/**
|
|
9539
|
-
*
|
|
9540
|
-
* @type {AuditableEntity}
|
|
9541
|
-
* @memberof UserModel
|
|
9542
|
-
*/
|
|
9543
|
-
'auditableEntity'?: AuditableEntity;
|
|
9544
|
-
/**
|
|
9545
|
-
*
|
|
9546
|
-
* @type {string}
|
|
9547
|
-
* @memberof UserModel
|
|
9548
|
-
*/
|
|
9549
|
-
'userType'?: string | null;
|
|
9550
9190
|
/**
|
|
9551
9191
|
*
|
|
9552
9192
|
* @type {Array<UserLanguageModel>}
|
|
@@ -9560,79 +9200,6 @@ export interface UserModel {
|
|
|
9560
9200
|
*/
|
|
9561
9201
|
'locations'?: Array<UserLocationModel> | null;
|
|
9562
9202
|
}
|
|
9563
|
-
/**
|
|
9564
|
-
*
|
|
9565
|
-
* @export
|
|
9566
|
-
* @interface UserTranslationModel
|
|
9567
|
-
*/
|
|
9568
|
-
export interface UserTranslationModel {
|
|
9569
|
-
/**
|
|
9570
|
-
*
|
|
9571
|
-
* @type {string}
|
|
9572
|
-
* @memberof UserTranslationModel
|
|
9573
|
-
*/
|
|
9574
|
-
'userId'?: string;
|
|
9575
|
-
/**
|
|
9576
|
-
*
|
|
9577
|
-
* @type {string}
|
|
9578
|
-
* @memberof UserTranslationModel
|
|
9579
|
-
*/
|
|
9580
|
-
'languageCode'?: string | null;
|
|
9581
|
-
/**
|
|
9582
|
-
*
|
|
9583
|
-
* @type {string}
|
|
9584
|
-
* @memberof UserTranslationModel
|
|
9585
|
-
*/
|
|
9586
|
-
'firstName'?: string | null;
|
|
9587
|
-
/**
|
|
9588
|
-
*
|
|
9589
|
-
* @type {string}
|
|
9590
|
-
* @memberof UserTranslationModel
|
|
9591
|
-
*/
|
|
9592
|
-
'middleName'?: string | null;
|
|
9593
|
-
/**
|
|
9594
|
-
*
|
|
9595
|
-
* @type {string}
|
|
9596
|
-
* @memberof UserTranslationModel
|
|
9597
|
-
*/
|
|
9598
|
-
'lastName'?: string | null;
|
|
9599
|
-
/**
|
|
9600
|
-
*
|
|
9601
|
-
* @type {string}
|
|
9602
|
-
* @memberof UserTranslationModel
|
|
9603
|
-
*/
|
|
9604
|
-
'slug'?: string | null;
|
|
9605
|
-
/**
|
|
9606
|
-
*
|
|
9607
|
-
* @type {string}
|
|
9608
|
-
* @memberof UserTranslationModel
|
|
9609
|
-
*/
|
|
9610
|
-
'overview'?: string | null;
|
|
9611
|
-
/**
|
|
9612
|
-
*
|
|
9613
|
-
* @type {string}
|
|
9614
|
-
* @memberof UserTranslationModel
|
|
9615
|
-
*/
|
|
9616
|
-
'description'?: string | null;
|
|
9617
|
-
/**
|
|
9618
|
-
*
|
|
9619
|
-
* @type {string}
|
|
9620
|
-
* @memberof UserTranslationModel
|
|
9621
|
-
*/
|
|
9622
|
-
'content'?: string | null;
|
|
9623
|
-
/**
|
|
9624
|
-
*
|
|
9625
|
-
* @type {boolean}
|
|
9626
|
-
* @memberof UserTranslationModel
|
|
9627
|
-
*/
|
|
9628
|
-
'confirmed'?: boolean;
|
|
9629
|
-
/**
|
|
9630
|
-
*
|
|
9631
|
-
* @type {AuditableEntity}
|
|
9632
|
-
* @memberof UserTranslationModel
|
|
9633
|
-
*/
|
|
9634
|
-
'auditableEntity'?: AuditableEntity;
|
|
9635
|
-
}
|
|
9636
9203
|
/**
|
|
9637
9204
|
*
|
|
9638
9205
|
* @export
|
|
@@ -12526,13 +12093,14 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12526
12093
|
* @summary Get all doctor affiliations.
|
|
12527
12094
|
* @param {string} doctorId
|
|
12528
12095
|
* @param {string} [hospitalName]
|
|
12096
|
+
* @param {string} [languageCode]
|
|
12529
12097
|
* @param {number} [page]
|
|
12530
12098
|
* @param {number} [limit]
|
|
12531
12099
|
* @param {Date} [lastRetrieved]
|
|
12532
12100
|
* @param {*} [options] Override http request option.
|
|
12533
12101
|
* @throws {RequiredError}
|
|
12534
12102
|
*/
|
|
12535
|
-
apiV2DoctorsDoctorIdAffiliationsGet: (doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12103
|
+
apiV2DoctorsDoctorIdAffiliationsGet: (doctorId: string, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12536
12104
|
/**
|
|
12537
12105
|
*
|
|
12538
12106
|
* @summary Get doctor affiliation.
|
|
@@ -12674,22 +12242,25 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12674
12242
|
* @param {string} [doctorName]
|
|
12675
12243
|
* @param {string} [specialtyId]
|
|
12676
12244
|
* @param {string} [specialtyName]
|
|
12245
|
+
* @param {string} [languageCode]
|
|
12246
|
+
* @param {boolean} [showHidden]
|
|
12677
12247
|
* @param {number} [page]
|
|
12678
12248
|
* @param {number} [limit]
|
|
12679
12249
|
* @param {Date} [lastRetrieved]
|
|
12680
12250
|
* @param {*} [options] Override http request option.
|
|
12681
12251
|
* @throws {RequiredError}
|
|
12682
12252
|
*/
|
|
12683
|
-
apiV2DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12253
|
+
apiV2DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12684
12254
|
/**
|
|
12685
12255
|
*
|
|
12686
12256
|
* @summary Get DoctorSpecialty
|
|
12687
12257
|
* @param {string} doctorId
|
|
12688
12258
|
* @param {string} specialtyId
|
|
12259
|
+
* @param {string} [languageCode]
|
|
12689
12260
|
* @param {*} [options] Override http request option.
|
|
12690
12261
|
* @throws {RequiredError}
|
|
12691
12262
|
*/
|
|
12692
|
-
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12263
|
+
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: (doctorId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12693
12264
|
/**
|
|
12694
12265
|
*
|
|
12695
12266
|
* @summary Get all Doctors.
|
|
@@ -12758,13 +12329,14 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
12758
12329
|
* @summary Get all doctor affiliations.
|
|
12759
12330
|
* @param {string} doctorId
|
|
12760
12331
|
* @param {string} [hospitalName]
|
|
12332
|
+
* @param {string} [languageCode]
|
|
12761
12333
|
* @param {number} [page]
|
|
12762
12334
|
* @param {number} [limit]
|
|
12763
12335
|
* @param {Date} [lastRetrieved]
|
|
12764
12336
|
* @param {*} [options] Override http request option.
|
|
12765
12337
|
* @throws {RequiredError}
|
|
12766
12338
|
*/
|
|
12767
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
12339
|
+
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
12768
12340
|
/**
|
|
12769
12341
|
*
|
|
12770
12342
|
* @summary Get doctor affiliation.
|
|
@@ -12906,22 +12478,25 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
12906
12478
|
* @param {string} [doctorName]
|
|
12907
12479
|
* @param {string} [specialtyId]
|
|
12908
12480
|
* @param {string} [specialtyName]
|
|
12481
|
+
* @param {string} [languageCode]
|
|
12482
|
+
* @param {boolean} [showHidden]
|
|
12909
12483
|
* @param {number} [page]
|
|
12910
12484
|
* @param {number} [limit]
|
|
12911
12485
|
* @param {Date} [lastRetrieved]
|
|
12912
12486
|
* @param {*} [options] Override http request option.
|
|
12913
12487
|
* @throws {RequiredError}
|
|
12914
12488
|
*/
|
|
12915
|
-
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
|
|
12489
|
+
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
|
|
12916
12490
|
/**
|
|
12917
12491
|
*
|
|
12918
12492
|
* @summary Get DoctorSpecialty
|
|
12919
12493
|
* @param {string} doctorId
|
|
12920
12494
|
* @param {string} specialtyId
|
|
12495
|
+
* @param {string} [languageCode]
|
|
12921
12496
|
* @param {*} [options] Override http request option.
|
|
12922
12497
|
* @throws {RequiredError}
|
|
12923
12498
|
*/
|
|
12924
|
-
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
12499
|
+
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
12925
12500
|
/**
|
|
12926
12501
|
*
|
|
12927
12502
|
* @summary Get all Doctors.
|
|
@@ -12990,13 +12565,14 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
12990
12565
|
* @summary Get all doctor affiliations.
|
|
12991
12566
|
* @param {string} doctorId
|
|
12992
12567
|
* @param {string} [hospitalName]
|
|
12568
|
+
* @param {string} [languageCode]
|
|
12993
12569
|
* @param {number} [page]
|
|
12994
12570
|
* @param {number} [limit]
|
|
12995
12571
|
* @param {Date} [lastRetrieved]
|
|
12996
12572
|
* @param {*} [options] Override http request option.
|
|
12997
12573
|
* @throws {RequiredError}
|
|
12998
12574
|
*/
|
|
12999
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
12575
|
+
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
13000
12576
|
/**
|
|
13001
12577
|
*
|
|
13002
12578
|
* @summary Get doctor affiliation.
|
|
@@ -13138,22 +12714,25 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
13138
12714
|
* @param {string} [doctorName]
|
|
13139
12715
|
* @param {string} [specialtyId]
|
|
13140
12716
|
* @param {string} [specialtyName]
|
|
12717
|
+
* @param {string} [languageCode]
|
|
12718
|
+
* @param {boolean} [showHidden]
|
|
13141
12719
|
* @param {number} [page]
|
|
13142
12720
|
* @param {number} [limit]
|
|
13143
12721
|
* @param {Date} [lastRetrieved]
|
|
13144
12722
|
* @param {*} [options] Override http request option.
|
|
13145
12723
|
* @throws {RequiredError}
|
|
13146
12724
|
*/
|
|
13147
|
-
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
|
|
12725
|
+
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
|
|
13148
12726
|
/**
|
|
13149
12727
|
*
|
|
13150
12728
|
* @summary Get DoctorSpecialty
|
|
13151
12729
|
* @param {string} doctorId
|
|
13152
12730
|
* @param {string} specialtyId
|
|
12731
|
+
* @param {string} [languageCode]
|
|
13153
12732
|
* @param {*} [options] Override http request option.
|
|
13154
12733
|
* @throws {RequiredError}
|
|
13155
12734
|
*/
|
|
13156
|
-
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
12735
|
+
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
13157
12736
|
/**
|
|
13158
12737
|
*
|
|
13159
12738
|
* @summary Get all Doctors.
|
|
@@ -13224,6 +12803,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13224
12803
|
* @summary Get all doctor affiliations.
|
|
13225
12804
|
* @param {string} doctorId
|
|
13226
12805
|
* @param {string} [hospitalName]
|
|
12806
|
+
* @param {string} [languageCode]
|
|
13227
12807
|
* @param {number} [page]
|
|
13228
12808
|
* @param {number} [limit]
|
|
13229
12809
|
* @param {Date} [lastRetrieved]
|
|
@@ -13231,7 +12811,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13231
12811
|
* @throws {RequiredError}
|
|
13232
12812
|
* @memberof DoctorsApi
|
|
13233
12813
|
*/
|
|
13234
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel, any>>;
|
|
12814
|
+
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel, any>>;
|
|
13235
12815
|
/**
|
|
13236
12816
|
*
|
|
13237
12817
|
* @summary Get doctor affiliation.
|
|
@@ -13385,6 +12965,8 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13385
12965
|
* @param {string} [doctorName]
|
|
13386
12966
|
* @param {string} [specialtyId]
|
|
13387
12967
|
* @param {string} [specialtyName]
|
|
12968
|
+
* @param {string} [languageCode]
|
|
12969
|
+
* @param {boolean} [showHidden]
|
|
13388
12970
|
* @param {number} [page]
|
|
13389
12971
|
* @param {number} [limit]
|
|
13390
12972
|
* @param {Date} [lastRetrieved]
|
|
@@ -13392,17 +12974,18 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13392
12974
|
* @throws {RequiredError}
|
|
13393
12975
|
* @memberof DoctorsApi
|
|
13394
12976
|
*/
|
|
13395
|
-
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel, any>>;
|
|
12977
|
+
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel, any>>;
|
|
13396
12978
|
/**
|
|
13397
12979
|
*
|
|
13398
12980
|
* @summary Get DoctorSpecialty
|
|
13399
12981
|
* @param {string} doctorId
|
|
13400
12982
|
* @param {string} specialtyId
|
|
12983
|
+
* @param {string} [languageCode]
|
|
13401
12984
|
* @param {*} [options] Override http request option.
|
|
13402
12985
|
* @throws {RequiredError}
|
|
13403
12986
|
* @memberof DoctorsApi
|
|
13404
12987
|
*/
|
|
13405
|
-
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel, any>>;
|
|
12988
|
+
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel, any>>;
|
|
13406
12989
|
/**
|
|
13407
12990
|
*
|
|
13408
12991
|
* @summary Get all Doctors.
|
|
@@ -14371,17 +13954,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14371
13954
|
* @param {string} [name]
|
|
14372
13955
|
* @param {string} [slug]
|
|
14373
13956
|
* @param {MarketingType} [marketingType]
|
|
14374
|
-
* @param {boolean} [returnDefaultValue]
|
|
14375
|
-
* @param {boolean} [includeServices]
|
|
14376
13957
|
* @param {string} [languageCode]
|
|
14377
|
-
* @param {boolean} [showHidden]
|
|
14378
13958
|
* @param {number} [page]
|
|
14379
13959
|
* @param {number} [limit]
|
|
14380
13960
|
* @param {Date} [lastRetrieved]
|
|
14381
13961
|
* @param {*} [options] Override http request option.
|
|
14382
13962
|
* @throws {RequiredError}
|
|
14383
13963
|
*/
|
|
14384
|
-
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined,
|
|
13964
|
+
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14385
13965
|
/**
|
|
14386
13966
|
*
|
|
14387
13967
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -14418,41 +13998,34 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14418
13998
|
* @param {string} [name]
|
|
14419
13999
|
* @param {string} [slug]
|
|
14420
14000
|
* @param {MarketingType} [marketingType]
|
|
14421
|
-
* @param {boolean} [returnDefaultValue]
|
|
14422
|
-
* @param {boolean} [includeServices]
|
|
14423
14001
|
* @param {string} [languageCode]
|
|
14424
|
-
* @param {boolean} [showHidden]
|
|
14425
14002
|
* @param {number} [page]
|
|
14426
14003
|
* @param {number} [limit]
|
|
14427
14004
|
* @param {Date} [lastRetrieved]
|
|
14428
14005
|
* @param {*} [options] Override http request option.
|
|
14429
14006
|
* @throws {RequiredError}
|
|
14430
14007
|
*/
|
|
14431
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined,
|
|
14008
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14432
14009
|
/**
|
|
14433
14010
|
*
|
|
14434
14011
|
* @summary Get HospitalSpecialty by slug.
|
|
14435
14012
|
* @param {string} hospitalId
|
|
14436
14013
|
* @param {string} slug
|
|
14437
14014
|
* @param {string} [languageCode]
|
|
14438
|
-
* @param {boolean} [returnDefaultValue]
|
|
14439
|
-
* @param {boolean} [includeServices]
|
|
14440
14015
|
* @param {*} [options] Override http request option.
|
|
14441
14016
|
* @throws {RequiredError}
|
|
14442
14017
|
*/
|
|
14443
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet: (hospitalId: string, slug: string, languageCode?: string | undefined,
|
|
14018
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet: (hospitalId: string, slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14444
14019
|
/**
|
|
14445
14020
|
*
|
|
14446
14021
|
* @summary Get HospitalSpecialty.
|
|
14447
14022
|
* @param {string} hospitalId
|
|
14448
14023
|
* @param {string} specialtyId
|
|
14449
14024
|
* @param {string} [languageCode]
|
|
14450
|
-
* @param {boolean} [returnDefaultValue]
|
|
14451
|
-
* @param {boolean} [includeServices]
|
|
14452
14025
|
* @param {*} [options] Override http request option.
|
|
14453
14026
|
* @throws {RequiredError}
|
|
14454
14027
|
*/
|
|
14455
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined,
|
|
14028
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14456
14029
|
/**
|
|
14457
14030
|
*
|
|
14458
14031
|
* @summary Get all HospitalServices.
|
|
@@ -14760,17 +14333,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14760
14333
|
* @param {string} [name]
|
|
14761
14334
|
* @param {string} [slug]
|
|
14762
14335
|
* @param {MarketingType} [marketingType]
|
|
14763
|
-
* @param {boolean} [returnDefaultValue]
|
|
14764
|
-
* @param {boolean} [includeServices]
|
|
14765
14336
|
* @param {string} [languageCode]
|
|
14766
|
-
* @param {boolean} [showHidden]
|
|
14767
14337
|
* @param {number} [page]
|
|
14768
14338
|
* @param {number} [limit]
|
|
14769
14339
|
* @param {Date} [lastRetrieved]
|
|
14770
14340
|
* @param {*} [options] Override http request option.
|
|
14771
14341
|
* @throws {RequiredError}
|
|
14772
14342
|
*/
|
|
14773
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined,
|
|
14343
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
14774
14344
|
/**
|
|
14775
14345
|
*
|
|
14776
14346
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -14807,41 +14377,34 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14807
14377
|
* @param {string} [name]
|
|
14808
14378
|
* @param {string} [slug]
|
|
14809
14379
|
* @param {MarketingType} [marketingType]
|
|
14810
|
-
* @param {boolean} [returnDefaultValue]
|
|
14811
|
-
* @param {boolean} [includeServices]
|
|
14812
14380
|
* @param {string} [languageCode]
|
|
14813
|
-
* @param {boolean} [showHidden]
|
|
14814
14381
|
* @param {number} [page]
|
|
14815
14382
|
* @param {number} [limit]
|
|
14816
14383
|
* @param {Date} [lastRetrieved]
|
|
14817
14384
|
* @param {*} [options] Override http request option.
|
|
14818
14385
|
* @throws {RequiredError}
|
|
14819
14386
|
*/
|
|
14820
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined,
|
|
14387
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
|
|
14821
14388
|
/**
|
|
14822
14389
|
*
|
|
14823
14390
|
* @summary Get HospitalSpecialty by slug.
|
|
14824
14391
|
* @param {string} hospitalId
|
|
14825
14392
|
* @param {string} slug
|
|
14826
14393
|
* @param {string} [languageCode]
|
|
14827
|
-
* @param {boolean} [returnDefaultValue]
|
|
14828
|
-
* @param {boolean} [includeServices]
|
|
14829
14394
|
* @param {*} [options] Override http request option.
|
|
14830
14395
|
* @throws {RequiredError}
|
|
14831
14396
|
*/
|
|
14832
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined,
|
|
14397
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
14833
14398
|
/**
|
|
14834
14399
|
*
|
|
14835
14400
|
* @summary Get HospitalSpecialty.
|
|
14836
14401
|
* @param {string} hospitalId
|
|
14837
14402
|
* @param {string} specialtyId
|
|
14838
14403
|
* @param {string} [languageCode]
|
|
14839
|
-
* @param {boolean} [returnDefaultValue]
|
|
14840
|
-
* @param {boolean} [includeServices]
|
|
14841
14404
|
* @param {*} [options] Override http request option.
|
|
14842
14405
|
* @throws {RequiredError}
|
|
14843
14406
|
*/
|
|
14844
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined,
|
|
14407
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
14845
14408
|
/**
|
|
14846
14409
|
*
|
|
14847
14410
|
* @summary Get all HospitalServices.
|
|
@@ -15149,17 +14712,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15149
14712
|
* @param {string} [name]
|
|
15150
14713
|
* @param {string} [slug]
|
|
15151
14714
|
* @param {MarketingType} [marketingType]
|
|
15152
|
-
* @param {boolean} [returnDefaultValue]
|
|
15153
|
-
* @param {boolean} [includeServices]
|
|
15154
14715
|
* @param {string} [languageCode]
|
|
15155
|
-
* @param {boolean} [showHidden]
|
|
15156
14716
|
* @param {number} [page]
|
|
15157
14717
|
* @param {number} [limit]
|
|
15158
14718
|
* @param {Date} [lastRetrieved]
|
|
15159
14719
|
* @param {*} [options] Override http request option.
|
|
15160
14720
|
* @throws {RequiredError}
|
|
15161
14721
|
*/
|
|
15162
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined,
|
|
14722
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
15163
14723
|
/**
|
|
15164
14724
|
*
|
|
15165
14725
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -15196,41 +14756,34 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15196
14756
|
* @param {string} [name]
|
|
15197
14757
|
* @param {string} [slug]
|
|
15198
14758
|
* @param {MarketingType} [marketingType]
|
|
15199
|
-
* @param {boolean} [returnDefaultValue]
|
|
15200
|
-
* @param {boolean} [includeServices]
|
|
15201
14759
|
* @param {string} [languageCode]
|
|
15202
|
-
* @param {boolean} [showHidden]
|
|
15203
14760
|
* @param {number} [page]
|
|
15204
14761
|
* @param {number} [limit]
|
|
15205
14762
|
* @param {Date} [lastRetrieved]
|
|
15206
14763
|
* @param {*} [options] Override http request option.
|
|
15207
14764
|
* @throws {RequiredError}
|
|
15208
14765
|
*/
|
|
15209
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined,
|
|
14766
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
|
|
15210
14767
|
/**
|
|
15211
14768
|
*
|
|
15212
14769
|
* @summary Get HospitalSpecialty by slug.
|
|
15213
14770
|
* @param {string} hospitalId
|
|
15214
14771
|
* @param {string} slug
|
|
15215
14772
|
* @param {string} [languageCode]
|
|
15216
|
-
* @param {boolean} [returnDefaultValue]
|
|
15217
|
-
* @param {boolean} [includeServices]
|
|
15218
14773
|
* @param {*} [options] Override http request option.
|
|
15219
14774
|
* @throws {RequiredError}
|
|
15220
14775
|
*/
|
|
15221
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined,
|
|
14776
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
15222
14777
|
/**
|
|
15223
14778
|
*
|
|
15224
14779
|
* @summary Get HospitalSpecialty.
|
|
15225
14780
|
* @param {string} hospitalId
|
|
15226
14781
|
* @param {string} specialtyId
|
|
15227
14782
|
* @param {string} [languageCode]
|
|
15228
|
-
* @param {boolean} [returnDefaultValue]
|
|
15229
|
-
* @param {boolean} [includeServices]
|
|
15230
14783
|
* @param {*} [options] Override http request option.
|
|
15231
14784
|
* @throws {RequiredError}
|
|
15232
14785
|
*/
|
|
15233
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined,
|
|
14786
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
15234
14787
|
/**
|
|
15235
14788
|
*
|
|
15236
14789
|
* @summary Get all HospitalServices.
|
|
@@ -15554,10 +15107,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15554
15107
|
* @param {string} [name]
|
|
15555
15108
|
* @param {string} [slug]
|
|
15556
15109
|
* @param {MarketingType} [marketingType]
|
|
15557
|
-
* @param {boolean} [returnDefaultValue]
|
|
15558
|
-
* @param {boolean} [includeServices]
|
|
15559
15110
|
* @param {string} [languageCode]
|
|
15560
|
-
* @param {boolean} [showHidden]
|
|
15561
15111
|
* @param {number} [page]
|
|
15562
15112
|
* @param {number} [limit]
|
|
15563
15113
|
* @param {Date} [lastRetrieved]
|
|
@@ -15565,7 +15115,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15565
15115
|
* @throws {RequiredError}
|
|
15566
15116
|
* @memberof HospitalsApi
|
|
15567
15117
|
*/
|
|
15568
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
15118
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
|
|
15569
15119
|
/**
|
|
15570
15120
|
*
|
|
15571
15121
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -15604,10 +15154,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15604
15154
|
* @param {string} [name]
|
|
15605
15155
|
* @param {string} [slug]
|
|
15606
15156
|
* @param {MarketingType} [marketingType]
|
|
15607
|
-
* @param {boolean} [returnDefaultValue]
|
|
15608
|
-
* @param {boolean} [includeServices]
|
|
15609
15157
|
* @param {string} [languageCode]
|
|
15610
|
-
* @param {boolean} [showHidden]
|
|
15611
15158
|
* @param {number} [page]
|
|
15612
15159
|
* @param {number} [limit]
|
|
15613
15160
|
* @param {Date} [lastRetrieved]
|
|
@@ -15615,33 +15162,29 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15615
15162
|
* @throws {RequiredError}
|
|
15616
15163
|
* @memberof HospitalsApi
|
|
15617
15164
|
*/
|
|
15618
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
15165
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel, any>>;
|
|
15619
15166
|
/**
|
|
15620
15167
|
*
|
|
15621
15168
|
* @summary Get HospitalSpecialty by slug.
|
|
15622
15169
|
* @param {string} hospitalId
|
|
15623
15170
|
* @param {string} slug
|
|
15624
15171
|
* @param {string} [languageCode]
|
|
15625
|
-
* @param {boolean} [returnDefaultValue]
|
|
15626
|
-
* @param {boolean} [includeServices]
|
|
15627
15172
|
* @param {*} [options] Override http request option.
|
|
15628
15173
|
* @throws {RequiredError}
|
|
15629
15174
|
* @memberof HospitalsApi
|
|
15630
15175
|
*/
|
|
15631
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string,
|
|
15176
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
|
|
15632
15177
|
/**
|
|
15633
15178
|
*
|
|
15634
15179
|
* @summary Get HospitalSpecialty.
|
|
15635
15180
|
* @param {string} hospitalId
|
|
15636
15181
|
* @param {string} specialtyId
|
|
15637
15182
|
* @param {string} [languageCode]
|
|
15638
|
-
* @param {boolean} [returnDefaultValue]
|
|
15639
|
-
* @param {boolean} [includeServices]
|
|
15640
15183
|
* @param {*} [options] Override http request option.
|
|
15641
15184
|
* @throws {RequiredError}
|
|
15642
15185
|
* @memberof HospitalsApi
|
|
15643
15186
|
*/
|
|
15644
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string,
|
|
15187
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
|
|
15645
15188
|
/**
|
|
15646
15189
|
*
|
|
15647
15190
|
* @summary Get all HospitalServices.
|