ch-api-client-typescript2 3.3.6 → 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 +346 -774
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +21 -77
- package/package.json +1 -1
- package/src/api.ts +332 -792
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>}
|
|
@@ -4156,12 +3904,6 @@ export interface DoctorItemModel {
|
|
|
4156
3904
|
* @memberof DoctorItemModel
|
|
4157
3905
|
*/
|
|
4158
3906
|
'firstName'?: string | null;
|
|
4159
|
-
/**
|
|
4160
|
-
*
|
|
4161
|
-
* @type {string}
|
|
4162
|
-
* @memberof DoctorItemModel
|
|
4163
|
-
*/
|
|
4164
|
-
'middleName'?: string | null;
|
|
4165
3907
|
/**
|
|
4166
3908
|
*
|
|
4167
3909
|
* @type {string}
|
|
@@ -4174,18 +3916,6 @@ export interface DoctorItemModel {
|
|
|
4174
3916
|
* @memberof DoctorItemModel
|
|
4175
3917
|
*/
|
|
4176
3918
|
'fullName'?: string | null;
|
|
4177
|
-
/**
|
|
4178
|
-
*
|
|
4179
|
-
* @type {string}
|
|
4180
|
-
* @memberof DoctorItemModel
|
|
4181
|
-
*/
|
|
4182
|
-
'slug'?: string | null;
|
|
4183
|
-
/**
|
|
4184
|
-
*
|
|
4185
|
-
* @type {boolean}
|
|
4186
|
-
* @memberof DoctorItemModel
|
|
4187
|
-
*/
|
|
4188
|
-
'confirmed'?: boolean;
|
|
4189
3919
|
/**
|
|
4190
3920
|
*
|
|
4191
3921
|
* @type {string}
|
|
@@ -4334,12 +4064,6 @@ export interface DoctorModel {
|
|
|
4334
4064
|
* @memberof DoctorModel
|
|
4335
4065
|
*/
|
|
4336
4066
|
'firstName'?: string | null;
|
|
4337
|
-
/**
|
|
4338
|
-
*
|
|
4339
|
-
* @type {string}
|
|
4340
|
-
* @memberof DoctorModel
|
|
4341
|
-
*/
|
|
4342
|
-
'middleName'?: string | null;
|
|
4343
4067
|
/**
|
|
4344
4068
|
*
|
|
4345
4069
|
* @type {string}
|
|
@@ -4357,31 +4081,19 @@ export interface DoctorModel {
|
|
|
4357
4081
|
* @type {string}
|
|
4358
4082
|
* @memberof DoctorModel
|
|
4359
4083
|
*/
|
|
4360
|
-
'
|
|
4084
|
+
'userType'?: string | null;
|
|
4361
4085
|
/**
|
|
4362
4086
|
*
|
|
4363
|
-
* @type {
|
|
4087
|
+
* @type {string}
|
|
4364
4088
|
* @memberof DoctorModel
|
|
4365
4089
|
*/
|
|
4366
|
-
'
|
|
4090
|
+
'photo'?: string | null;
|
|
4367
4091
|
/**
|
|
4368
4092
|
*
|
|
4369
4093
|
* @type {string}
|
|
4370
4094
|
* @memberof DoctorModel
|
|
4371
4095
|
*/
|
|
4372
|
-
'
|
|
4373
|
-
/**
|
|
4374
|
-
*
|
|
4375
|
-
* @type {string}
|
|
4376
|
-
* @memberof DoctorModel
|
|
4377
|
-
*/
|
|
4378
|
-
'photo'?: string | null;
|
|
4379
|
-
/**
|
|
4380
|
-
*
|
|
4381
|
-
* @type {string}
|
|
4382
|
-
* @memberof DoctorModel
|
|
4383
|
-
*/
|
|
4384
|
-
'photoThumbnail'?: string | null;
|
|
4096
|
+
'photoThumbnail'?: string | null;
|
|
4385
4097
|
/**
|
|
4386
4098
|
*
|
|
4387
4099
|
* @type {AuditableEntity}
|
|
@@ -4620,42 +4332,18 @@ export interface DoctorSimpleItemModel {
|
|
|
4620
4332
|
* @memberof DoctorSimpleItemModel
|
|
4621
4333
|
*/
|
|
4622
4334
|
'id'?: string;
|
|
4623
|
-
/**
|
|
4624
|
-
*
|
|
4625
|
-
* @type {string}
|
|
4626
|
-
* @memberof DoctorSimpleItemModel
|
|
4627
|
-
*/
|
|
4628
|
-
'languageCode'?: string | null;
|
|
4629
4335
|
/**
|
|
4630
4336
|
*
|
|
4631
4337
|
* @type {string}
|
|
4632
4338
|
* @memberof DoctorSimpleItemModel
|
|
4633
4339
|
*/
|
|
4634
4340
|
'firstName'?: string | null;
|
|
4635
|
-
/**
|
|
4636
|
-
*
|
|
4637
|
-
* @type {string}
|
|
4638
|
-
* @memberof DoctorSimpleItemModel
|
|
4639
|
-
*/
|
|
4640
|
-
'middleName'?: string | null;
|
|
4641
4341
|
/**
|
|
4642
4342
|
*
|
|
4643
4343
|
* @type {string}
|
|
4644
4344
|
* @memberof DoctorSimpleItemModel
|
|
4645
4345
|
*/
|
|
4646
4346
|
'lastName'?: string | null;
|
|
4647
|
-
/**
|
|
4648
|
-
*
|
|
4649
|
-
* @type {string}
|
|
4650
|
-
* @memberof DoctorSimpleItemModel
|
|
4651
|
-
*/
|
|
4652
|
-
'fullName'?: string | null;
|
|
4653
|
-
/**
|
|
4654
|
-
*
|
|
4655
|
-
* @type {string}
|
|
4656
|
-
* @memberof DoctorSimpleItemModel
|
|
4657
|
-
*/
|
|
4658
|
-
'slug'?: string | null;
|
|
4659
4347
|
}
|
|
4660
4348
|
/**
|
|
4661
4349
|
*
|
|
@@ -4873,7 +4561,7 @@ export interface FaqCategoryItemModel {
|
|
|
4873
4561
|
* @type {string}
|
|
4874
4562
|
* @memberof FaqCategoryItemModel
|
|
4875
4563
|
*/
|
|
4876
|
-
'
|
|
4564
|
+
'languageCode'?: string | null;
|
|
4877
4565
|
/**
|
|
4878
4566
|
*
|
|
4879
4567
|
* @type {string}
|
|
@@ -4886,12 +4574,18 @@ export interface FaqCategoryItemModel {
|
|
|
4886
4574
|
* @memberof FaqCategoryItemModel
|
|
4887
4575
|
*/
|
|
4888
4576
|
'slug'?: string | null;
|
|
4577
|
+
/**
|
|
4578
|
+
*
|
|
4579
|
+
* @type {boolean}
|
|
4580
|
+
* @memberof FaqCategoryItemModel
|
|
4581
|
+
*/
|
|
4582
|
+
'confirmed'?: boolean;
|
|
4889
4583
|
/**
|
|
4890
4584
|
*
|
|
4891
4585
|
* @type {string}
|
|
4892
4586
|
* @memberof FaqCategoryItemModel
|
|
4893
4587
|
*/
|
|
4894
|
-
'
|
|
4588
|
+
'parentId'?: string | null;
|
|
4895
4589
|
/**
|
|
4896
4590
|
*
|
|
4897
4591
|
* @type {number}
|
|
@@ -4912,10 +4606,22 @@ export interface FaqCategoryItemModel {
|
|
|
4912
4606
|
'hospitalName'?: string | null;
|
|
4913
4607
|
/**
|
|
4914
4608
|
*
|
|
4915
|
-
* @type {
|
|
4609
|
+
* @type {string}
|
|
4916
4610
|
* @memberof FaqCategoryItemModel
|
|
4917
4611
|
*/
|
|
4918
|
-
'
|
|
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;
|
|
4919
4625
|
/**
|
|
4920
4626
|
*
|
|
4921
4627
|
* @type {AuditableEntity}
|
|
@@ -4940,7 +4646,7 @@ export interface FaqCategoryModel {
|
|
|
4940
4646
|
* @type {string}
|
|
4941
4647
|
* @memberof FaqCategoryModel
|
|
4942
4648
|
*/
|
|
4943
|
-
'
|
|
4649
|
+
'languageCode'?: string | null;
|
|
4944
4650
|
/**
|
|
4945
4651
|
*
|
|
4946
4652
|
* @type {string}
|
|
@@ -4953,12 +4659,18 @@ export interface FaqCategoryModel {
|
|
|
4953
4659
|
* @memberof FaqCategoryModel
|
|
4954
4660
|
*/
|
|
4955
4661
|
'slug'?: string | null;
|
|
4662
|
+
/**
|
|
4663
|
+
*
|
|
4664
|
+
* @type {boolean}
|
|
4665
|
+
* @memberof FaqCategoryModel
|
|
4666
|
+
*/
|
|
4667
|
+
'confirmed'?: boolean;
|
|
4956
4668
|
/**
|
|
4957
4669
|
*
|
|
4958
4670
|
* @type {string}
|
|
4959
4671
|
* @memberof FaqCategoryModel
|
|
4960
4672
|
*/
|
|
4961
|
-
'
|
|
4673
|
+
'parentId'?: string | null;
|
|
4962
4674
|
/**
|
|
4963
4675
|
*
|
|
4964
4676
|
* @type {number}
|
|
@@ -4979,10 +4691,22 @@ export interface FaqCategoryModel {
|
|
|
4979
4691
|
'hospitalName'?: string | null;
|
|
4980
4692
|
/**
|
|
4981
4693
|
*
|
|
4982
|
-
* @type {
|
|
4694
|
+
* @type {string}
|
|
4983
4695
|
* @memberof FaqCategoryModel
|
|
4984
4696
|
*/
|
|
4985
|
-
'
|
|
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;
|
|
4986
4710
|
/**
|
|
4987
4711
|
*
|
|
4988
4712
|
* @type {AuditableEntity}
|
|
@@ -4994,7 +4718,19 @@ export interface FaqCategoryModel {
|
|
|
4994
4718
|
* @type {string}
|
|
4995
4719
|
* @memberof FaqCategoryModel
|
|
4996
4720
|
*/
|
|
4997
|
-
'
|
|
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;
|
|
4998
4734
|
/**
|
|
4999
4735
|
*
|
|
5000
4736
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -5014,6 +4750,12 @@ export interface FaqItemModel {
|
|
|
5014
4750
|
* @memberof FaqItemModel
|
|
5015
4751
|
*/
|
|
5016
4752
|
'id'?: string;
|
|
4753
|
+
/**
|
|
4754
|
+
*
|
|
4755
|
+
* @type {string}
|
|
4756
|
+
* @memberof FaqItemModel
|
|
4757
|
+
*/
|
|
4758
|
+
'languageCode'?: string | null;
|
|
5017
4759
|
/**
|
|
5018
4760
|
*
|
|
5019
4761
|
* @type {string}
|
|
@@ -5026,12 +4768,18 @@ export interface FaqItemModel {
|
|
|
5026
4768
|
* @memberof FaqItemModel
|
|
5027
4769
|
*/
|
|
5028
4770
|
'slug'?: string | null;
|
|
4771
|
+
/**
|
|
4772
|
+
*
|
|
4773
|
+
* @type {boolean}
|
|
4774
|
+
* @memberof FaqItemModel
|
|
4775
|
+
*/
|
|
4776
|
+
'confirmed'?: boolean;
|
|
5029
4777
|
/**
|
|
5030
4778
|
*
|
|
5031
4779
|
* @type {string}
|
|
5032
4780
|
* @memberof FaqItemModel
|
|
5033
4781
|
*/
|
|
5034
|
-
'
|
|
4782
|
+
'parentId'?: string | null;
|
|
5035
4783
|
/**
|
|
5036
4784
|
*
|
|
5037
4785
|
* @type {number}
|
|
@@ -5055,19 +4803,25 @@ export interface FaqItemModel {
|
|
|
5055
4803
|
* @type {string}
|
|
5056
4804
|
* @memberof FaqItemModel
|
|
5057
4805
|
*/
|
|
5058
|
-
'
|
|
4806
|
+
'hospitalSlug'?: string | null;
|
|
5059
4807
|
/**
|
|
5060
4808
|
*
|
|
5061
4809
|
* @type {string}
|
|
5062
4810
|
* @memberof FaqItemModel
|
|
5063
4811
|
*/
|
|
5064
|
-
'
|
|
4812
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
5065
4813
|
/**
|
|
5066
4814
|
*
|
|
5067
|
-
* @type {
|
|
4815
|
+
* @type {string}
|
|
5068
4816
|
* @memberof FaqItemModel
|
|
5069
4817
|
*/
|
|
5070
|
-
'
|
|
4818
|
+
'faqCategoryId'?: string;
|
|
4819
|
+
/**
|
|
4820
|
+
*
|
|
4821
|
+
* @type {string}
|
|
4822
|
+
* @memberof FaqItemModel
|
|
4823
|
+
*/
|
|
4824
|
+
'faqCategoryName'?: string | null;
|
|
5071
4825
|
/**
|
|
5072
4826
|
*
|
|
5073
4827
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -5099,6 +4853,12 @@ export interface FaqModel {
|
|
|
5099
4853
|
* @memberof FaqModel
|
|
5100
4854
|
*/
|
|
5101
4855
|
'id'?: string;
|
|
4856
|
+
/**
|
|
4857
|
+
*
|
|
4858
|
+
* @type {string}
|
|
4859
|
+
* @memberof FaqModel
|
|
4860
|
+
*/
|
|
4861
|
+
'languageCode'?: string | null;
|
|
5102
4862
|
/**
|
|
5103
4863
|
*
|
|
5104
4864
|
* @type {string}
|
|
@@ -5111,12 +4871,18 @@ export interface FaqModel {
|
|
|
5111
4871
|
* @memberof FaqModel
|
|
5112
4872
|
*/
|
|
5113
4873
|
'slug'?: string | null;
|
|
4874
|
+
/**
|
|
4875
|
+
*
|
|
4876
|
+
* @type {boolean}
|
|
4877
|
+
* @memberof FaqModel
|
|
4878
|
+
*/
|
|
4879
|
+
'confirmed'?: boolean;
|
|
5114
4880
|
/**
|
|
5115
4881
|
*
|
|
5116
4882
|
* @type {string}
|
|
5117
4883
|
* @memberof FaqModel
|
|
5118
4884
|
*/
|
|
5119
|
-
'
|
|
4885
|
+
'parentId'?: string | null;
|
|
5120
4886
|
/**
|
|
5121
4887
|
*
|
|
5122
4888
|
* @type {number}
|
|
@@ -5140,19 +4906,25 @@ export interface FaqModel {
|
|
|
5140
4906
|
* @type {string}
|
|
5141
4907
|
* @memberof FaqModel
|
|
5142
4908
|
*/
|
|
5143
|
-
'
|
|
4909
|
+
'hospitalSlug'?: string | null;
|
|
5144
4910
|
/**
|
|
5145
4911
|
*
|
|
5146
4912
|
* @type {string}
|
|
5147
4913
|
* @memberof FaqModel
|
|
5148
4914
|
*/
|
|
5149
|
-
'
|
|
4915
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
5150
4916
|
/**
|
|
5151
4917
|
*
|
|
5152
|
-
* @type {
|
|
4918
|
+
* @type {string}
|
|
5153
4919
|
* @memberof FaqModel
|
|
5154
4920
|
*/
|
|
5155
|
-
'
|
|
4921
|
+
'faqCategoryId'?: string;
|
|
4922
|
+
/**
|
|
4923
|
+
*
|
|
4924
|
+
* @type {string}
|
|
4925
|
+
* @memberof FaqModel
|
|
4926
|
+
*/
|
|
4927
|
+
'faqCategoryName'?: string | null;
|
|
5156
4928
|
/**
|
|
5157
4929
|
*
|
|
5158
4930
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -5176,7 +4948,13 @@ export interface FaqModel {
|
|
|
5176
4948
|
* @type {string}
|
|
5177
4949
|
* @memberof FaqModel
|
|
5178
4950
|
*/
|
|
5179
|
-
'
|
|
4951
|
+
'description'?: string | null;
|
|
4952
|
+
/**
|
|
4953
|
+
*
|
|
4954
|
+
* @type {string}
|
|
4955
|
+
* @memberof FaqModel
|
|
4956
|
+
*/
|
|
4957
|
+
'overview'?: string | null;
|
|
5180
4958
|
/**
|
|
5181
4959
|
*
|
|
5182
4960
|
* @type {string}
|
|
@@ -5827,182 +5605,80 @@ export interface HospitalModel {
|
|
|
5827
5605
|
* @type {number}
|
|
5828
5606
|
* @memberof HospitalModel
|
|
5829
5607
|
*/
|
|
5830
|
-
'doctorCount'?: number | null;
|
|
5831
|
-
/**
|
|
5832
|
-
*
|
|
5833
|
-
* @type {string}
|
|
5834
|
-
* @memberof HospitalModel
|
|
5835
|
-
*/
|
|
5836
|
-
'contactTel'?: string | null;
|
|
5837
|
-
/**
|
|
5838
|
-
*
|
|
5839
|
-
* @type {string}
|
|
5840
|
-
* @memberof HospitalModel
|
|
5841
|
-
*/
|
|
5842
|
-
'contactEmail'?: string | null;
|
|
5843
|
-
/**
|
|
5844
|
-
*
|
|
5845
|
-
* @type {string}
|
|
5846
|
-
* @memberof HospitalModel
|
|
5847
|
-
*/
|
|
5848
|
-
'customStyle'?: string | null;
|
|
5849
|
-
/**
|
|
5850
|
-
*
|
|
5851
|
-
* @type {Array<HospitalEvaluationItemModel>}
|
|
5852
|
-
* @memberof HospitalModel
|
|
5853
|
-
*/
|
|
5854
|
-
'evaluations'?: Array<HospitalEvaluationItemModel> | null;
|
|
5855
|
-
/**
|
|
5856
|
-
*
|
|
5857
|
-
* @type {Array<WorkingDay>}
|
|
5858
|
-
* @memberof HospitalModel
|
|
5859
|
-
*/
|
|
5860
|
-
'hospitalWorkingDays'?: Array<WorkingDay> | null;
|
|
5861
|
-
/**
|
|
5862
|
-
*
|
|
5863
|
-
* @type {Array<SnsHandle>}
|
|
5864
|
-
* @memberof HospitalModel
|
|
5865
|
-
*/
|
|
5866
|
-
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
5867
|
-
/**
|
|
5868
|
-
*
|
|
5869
|
-
* @type {Array<AwardModel>}
|
|
5870
|
-
* @memberof HospitalModel
|
|
5871
|
-
*/
|
|
5872
|
-
'awards'?: Array<AwardModel> | null;
|
|
5873
|
-
}
|
|
5874
|
-
/**
|
|
5875
|
-
*
|
|
5876
|
-
* @export
|
|
5877
|
-
* @interface HospitalServiceItemModel
|
|
5878
|
-
*/
|
|
5879
|
-
export interface HospitalServiceItemModel {
|
|
5880
|
-
/**
|
|
5881
|
-
*
|
|
5882
|
-
* @type {string}
|
|
5883
|
-
* @memberof HospitalServiceItemModel
|
|
5884
|
-
*/
|
|
5885
|
-
'id'?: string;
|
|
5886
|
-
/**
|
|
5887
|
-
*
|
|
5888
|
-
* @type {string}
|
|
5889
|
-
* @memberof HospitalServiceItemModel
|
|
5890
|
-
*/
|
|
5891
|
-
'name'?: string | null;
|
|
5892
|
-
/**
|
|
5893
|
-
*
|
|
5894
|
-
* @type {string}
|
|
5895
|
-
* @memberof HospitalServiceItemModel
|
|
5896
|
-
*/
|
|
5897
|
-
'slug'?: string | null;
|
|
5898
|
-
/**
|
|
5899
|
-
*
|
|
5900
|
-
* @type {string}
|
|
5901
|
-
* @memberof HospitalServiceItemModel
|
|
5902
|
-
*/
|
|
5903
|
-
'description'?: string | null;
|
|
5904
|
-
/**
|
|
5905
|
-
*
|
|
5906
|
-
* @type {string}
|
|
5907
|
-
* @memberof HospitalServiceItemModel
|
|
5908
|
-
*/
|
|
5909
|
-
'hospitalId'?: string;
|
|
5910
|
-
/**
|
|
5911
|
-
*
|
|
5912
|
-
* @type {string}
|
|
5913
|
-
* @memberof HospitalServiceItemModel
|
|
5914
|
-
*/
|
|
5915
|
-
'hospitalName'?: string | null;
|
|
5916
|
-
/**
|
|
5917
|
-
*
|
|
5918
|
-
* @type {string}
|
|
5919
|
-
* @memberof HospitalServiceItemModel
|
|
5920
|
-
*/
|
|
5921
|
-
'hospitalSlug'?: string | null;
|
|
5922
|
-
/**
|
|
5923
|
-
*
|
|
5924
|
-
* @type {string}
|
|
5925
|
-
* @memberof HospitalServiceItemModel
|
|
5926
|
-
*/
|
|
5927
|
-
'specialtyTypeId'?: string | null;
|
|
5928
|
-
/**
|
|
5929
|
-
*
|
|
5930
|
-
* @type {string}
|
|
5931
|
-
* @memberof HospitalServiceItemModel
|
|
5932
|
-
*/
|
|
5933
|
-
'specialtyTypeName'?: string | null;
|
|
5934
|
-
/**
|
|
5935
|
-
*
|
|
5936
|
-
* @type {string}
|
|
5937
|
-
* @memberof HospitalServiceItemModel
|
|
5938
|
-
*/
|
|
5939
|
-
'specialtyId'?: string;
|
|
5608
|
+
'doctorCount'?: number | null;
|
|
5940
5609
|
/**
|
|
5941
5610
|
*
|
|
5942
5611
|
* @type {string}
|
|
5943
|
-
* @memberof
|
|
5612
|
+
* @memberof HospitalModel
|
|
5944
5613
|
*/
|
|
5945
|
-
'
|
|
5614
|
+
'contactTel'?: string | null;
|
|
5946
5615
|
/**
|
|
5947
5616
|
*
|
|
5948
5617
|
* @type {string}
|
|
5949
|
-
* @memberof
|
|
5618
|
+
* @memberof HospitalModel
|
|
5950
5619
|
*/
|
|
5951
|
-
'
|
|
5620
|
+
'contactEmail'?: string | null;
|
|
5952
5621
|
/**
|
|
5953
5622
|
*
|
|
5954
5623
|
* @type {string}
|
|
5955
|
-
* @memberof
|
|
5624
|
+
* @memberof HospitalModel
|
|
5956
5625
|
*/
|
|
5957
|
-
'
|
|
5626
|
+
'customStyle'?: string | null;
|
|
5958
5627
|
/**
|
|
5959
5628
|
*
|
|
5960
|
-
* @type {
|
|
5961
|
-
* @memberof
|
|
5629
|
+
* @type {Array<HospitalEvaluationItemModel>}
|
|
5630
|
+
* @memberof HospitalModel
|
|
5962
5631
|
*/
|
|
5963
|
-
'
|
|
5632
|
+
'evaluations'?: Array<HospitalEvaluationItemModel> | null;
|
|
5964
5633
|
/**
|
|
5965
5634
|
*
|
|
5966
|
-
* @type {
|
|
5967
|
-
* @memberof
|
|
5635
|
+
* @type {Array<WorkingDay>}
|
|
5636
|
+
* @memberof HospitalModel
|
|
5968
5637
|
*/
|
|
5969
|
-
'
|
|
5638
|
+
'hospitalWorkingDays'?: Array<WorkingDay> | null;
|
|
5970
5639
|
/**
|
|
5971
5640
|
*
|
|
5972
|
-
* @type {
|
|
5973
|
-
* @memberof
|
|
5641
|
+
* @type {Array<SnsHandle>}
|
|
5642
|
+
* @memberof HospitalModel
|
|
5974
5643
|
*/
|
|
5975
|
-
'
|
|
5644
|
+
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
5976
5645
|
/**
|
|
5977
5646
|
*
|
|
5978
|
-
* @type {
|
|
5979
|
-
* @memberof
|
|
5647
|
+
* @type {Array<AwardModel>}
|
|
5648
|
+
* @memberof HospitalModel
|
|
5980
5649
|
*/
|
|
5981
|
-
'
|
|
5650
|
+
'awards'?: Array<AwardModel> | null;
|
|
5651
|
+
}
|
|
5652
|
+
/**
|
|
5653
|
+
*
|
|
5654
|
+
* @export
|
|
5655
|
+
* @interface HospitalServiceItemModel
|
|
5656
|
+
*/
|
|
5657
|
+
export interface HospitalServiceItemModel {
|
|
5982
5658
|
/**
|
|
5983
5659
|
*
|
|
5984
|
-
* @type {
|
|
5660
|
+
* @type {string}
|
|
5985
5661
|
* @memberof HospitalServiceItemModel
|
|
5986
5662
|
*/
|
|
5987
|
-
'
|
|
5663
|
+
'id'?: string;
|
|
5988
5664
|
/**
|
|
5989
5665
|
*
|
|
5990
|
-
* @type {
|
|
5666
|
+
* @type {string}
|
|
5991
5667
|
* @memberof HospitalServiceItemModel
|
|
5992
5668
|
*/
|
|
5993
|
-
'
|
|
5669
|
+
'languageCode'?: string | null;
|
|
5994
5670
|
/**
|
|
5995
5671
|
*
|
|
5996
|
-
* @type {
|
|
5672
|
+
* @type {string}
|
|
5997
5673
|
* @memberof HospitalServiceItemModel
|
|
5998
5674
|
*/
|
|
5999
|
-
'
|
|
5675
|
+
'name'?: string | null;
|
|
6000
5676
|
/**
|
|
6001
5677
|
*
|
|
6002
|
-
* @type {
|
|
5678
|
+
* @type {string}
|
|
6003
5679
|
* @memberof HospitalServiceItemModel
|
|
6004
5680
|
*/
|
|
6005
|
-
'
|
|
5681
|
+
'slug'?: string | null;
|
|
6006
5682
|
/**
|
|
6007
5683
|
*
|
|
6008
5684
|
* @type {boolean}
|
|
@@ -6011,22 +5687,22 @@ export interface HospitalServiceItemModel {
|
|
|
6011
5687
|
'confirmed'?: boolean;
|
|
6012
5688
|
/**
|
|
6013
5689
|
*
|
|
6014
|
-
* @type {
|
|
5690
|
+
* @type {number}
|
|
6015
5691
|
* @memberof HospitalServiceItemModel
|
|
6016
5692
|
*/
|
|
6017
|
-
'
|
|
5693
|
+
'order'?: number;
|
|
6018
5694
|
/**
|
|
6019
5695
|
*
|
|
6020
5696
|
* @type {string}
|
|
6021
5697
|
* @memberof HospitalServiceItemModel
|
|
6022
5698
|
*/
|
|
6023
|
-
'
|
|
5699
|
+
'photo'?: string | null;
|
|
6024
5700
|
/**
|
|
6025
5701
|
*
|
|
6026
|
-
* @type {
|
|
5702
|
+
* @type {string}
|
|
6027
5703
|
* @memberof HospitalServiceItemModel
|
|
6028
5704
|
*/
|
|
6029
|
-
'
|
|
5705
|
+
'photoThumbnail'?: string | null;
|
|
6030
5706
|
/**
|
|
6031
5707
|
*
|
|
6032
5708
|
* @type {AuditableEntity}
|
|
@@ -6051,163 +5727,139 @@ export interface HospitalServiceModel {
|
|
|
6051
5727
|
* @type {string}
|
|
6052
5728
|
* @memberof HospitalServiceModel
|
|
6053
5729
|
*/
|
|
6054
|
-
'
|
|
5730
|
+
'languageCode'?: string | null;
|
|
6055
5731
|
/**
|
|
6056
5732
|
*
|
|
6057
5733
|
* @type {string}
|
|
6058
5734
|
* @memberof HospitalServiceModel
|
|
6059
5735
|
*/
|
|
6060
|
-
'
|
|
5736
|
+
'name'?: string | null;
|
|
6061
5737
|
/**
|
|
6062
5738
|
*
|
|
6063
5739
|
* @type {string}
|
|
6064
5740
|
* @memberof HospitalServiceModel
|
|
6065
5741
|
*/
|
|
6066
|
-
'
|
|
5742
|
+
'slug'?: string | null;
|
|
6067
5743
|
/**
|
|
6068
5744
|
*
|
|
6069
|
-
* @type {
|
|
5745
|
+
* @type {boolean}
|
|
6070
5746
|
* @memberof HospitalServiceModel
|
|
6071
5747
|
*/
|
|
6072
|
-
'
|
|
5748
|
+
'confirmed'?: boolean;
|
|
6073
5749
|
/**
|
|
6074
5750
|
*
|
|
6075
|
-
* @type {
|
|
5751
|
+
* @type {number}
|
|
6076
5752
|
* @memberof HospitalServiceModel
|
|
6077
5753
|
*/
|
|
6078
|
-
'
|
|
5754
|
+
'order'?: number;
|
|
6079
5755
|
/**
|
|
6080
5756
|
*
|
|
6081
5757
|
* @type {string}
|
|
6082
5758
|
* @memberof HospitalServiceModel
|
|
6083
5759
|
*/
|
|
6084
|
-
'
|
|
5760
|
+
'photo'?: string | null;
|
|
6085
5761
|
/**
|
|
6086
5762
|
*
|
|
6087
5763
|
* @type {string}
|
|
6088
5764
|
* @memberof HospitalServiceModel
|
|
6089
5765
|
*/
|
|
6090
|
-
'
|
|
5766
|
+
'photoThumbnail'?: string | null;
|
|
6091
5767
|
/**
|
|
6092
5768
|
*
|
|
6093
|
-
* @type {
|
|
5769
|
+
* @type {AuditableEntity}
|
|
6094
5770
|
* @memberof HospitalServiceModel
|
|
6095
5771
|
*/
|
|
6096
|
-
'
|
|
5772
|
+
'auditableEntity'?: AuditableEntity;
|
|
6097
5773
|
/**
|
|
6098
5774
|
*
|
|
6099
5775
|
* @type {string}
|
|
6100
5776
|
* @memberof HospitalServiceModel
|
|
6101
5777
|
*/
|
|
6102
|
-
'
|
|
5778
|
+
'description'?: string | null;
|
|
6103
5779
|
/**
|
|
6104
5780
|
*
|
|
6105
5781
|
* @type {string}
|
|
6106
5782
|
* @memberof HospitalServiceModel
|
|
6107
5783
|
*/
|
|
6108
|
-
'
|
|
5784
|
+
'overview'?: string | null;
|
|
6109
5785
|
/**
|
|
6110
5786
|
*
|
|
6111
5787
|
* @type {string}
|
|
6112
5788
|
* @memberof HospitalServiceModel
|
|
6113
5789
|
*/
|
|
6114
|
-
'
|
|
5790
|
+
'content'?: string | null;
|
|
6115
5791
|
/**
|
|
6116
5792
|
*
|
|
6117
5793
|
* @type {string}
|
|
6118
5794
|
* @memberof HospitalServiceModel
|
|
6119
5795
|
*/
|
|
6120
|
-
'
|
|
5796
|
+
'hospitalId'?: string;
|
|
6121
5797
|
/**
|
|
6122
5798
|
*
|
|
6123
5799
|
* @type {string}
|
|
6124
5800
|
* @memberof HospitalServiceModel
|
|
6125
5801
|
*/
|
|
6126
|
-
'
|
|
5802
|
+
'hospitalName'?: string | null;
|
|
6127
5803
|
/**
|
|
6128
5804
|
*
|
|
6129
5805
|
* @type {string}
|
|
6130
5806
|
* @memberof HospitalServiceModel
|
|
6131
5807
|
*/
|
|
6132
|
-
'
|
|
6133
|
-
/**
|
|
6134
|
-
*
|
|
6135
|
-
* @type {MarketingType}
|
|
6136
|
-
* @memberof HospitalServiceModel
|
|
6137
|
-
*/
|
|
6138
|
-
'marketingType'?: MarketingType;
|
|
6139
|
-
/**
|
|
6140
|
-
*
|
|
6141
|
-
* @type {Procedure}
|
|
6142
|
-
* @memberof HospitalServiceModel
|
|
6143
|
-
*/
|
|
6144
|
-
'procedure'?: Procedure;
|
|
6145
|
-
/**
|
|
6146
|
-
*
|
|
6147
|
-
* @type {number}
|
|
6148
|
-
* @memberof HospitalServiceModel
|
|
6149
|
-
*/
|
|
6150
|
-
'minPrice'?: number | null;
|
|
6151
|
-
/**
|
|
6152
|
-
*
|
|
6153
|
-
* @type {number}
|
|
6154
|
-
* @memberof HospitalServiceModel
|
|
6155
|
-
*/
|
|
6156
|
-
'maxPrice'?: number | null;
|
|
5808
|
+
'hospitalSlug'?: string | null;
|
|
6157
5809
|
/**
|
|
6158
5810
|
*
|
|
6159
|
-
* @type {
|
|
5811
|
+
* @type {string}
|
|
6160
5812
|
* @memberof HospitalServiceModel
|
|
6161
5813
|
*/
|
|
6162
|
-
'
|
|
5814
|
+
'specialtyName'?: string | null;
|
|
6163
5815
|
/**
|
|
6164
5816
|
*
|
|
6165
|
-
* @type {
|
|
5817
|
+
* @type {string}
|
|
6166
5818
|
* @memberof HospitalServiceModel
|
|
6167
5819
|
*/
|
|
6168
|
-
'
|
|
5820
|
+
'hospitalSpecialtyName'?: string | null;
|
|
6169
5821
|
/**
|
|
6170
5822
|
*
|
|
6171
|
-
* @type {
|
|
5823
|
+
* @type {string}
|
|
6172
5824
|
* @memberof HospitalServiceModel
|
|
6173
5825
|
*/
|
|
6174
|
-
'
|
|
5826
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
6175
5827
|
/**
|
|
6176
5828
|
*
|
|
6177
5829
|
* @type {string}
|
|
6178
5830
|
* @memberof HospitalServiceModel
|
|
6179
5831
|
*/
|
|
6180
|
-
'
|
|
5832
|
+
'serviceCategoryId'?: string | null;
|
|
6181
5833
|
/**
|
|
6182
5834
|
*
|
|
6183
5835
|
* @type {string}
|
|
6184
5836
|
* @memberof HospitalServiceModel
|
|
6185
5837
|
*/
|
|
6186
|
-
'
|
|
5838
|
+
'serviceCategoryName'?: string | null;
|
|
6187
5839
|
/**
|
|
6188
5840
|
*
|
|
6189
|
-
* @type {
|
|
5841
|
+
* @type {Procedure}
|
|
6190
5842
|
* @memberof HospitalServiceModel
|
|
6191
5843
|
*/
|
|
6192
|
-
'
|
|
5844
|
+
'procedure'?: Procedure;
|
|
6193
5845
|
/**
|
|
6194
5846
|
*
|
|
6195
|
-
* @type {
|
|
5847
|
+
* @type {number}
|
|
6196
5848
|
* @memberof HospitalServiceModel
|
|
6197
5849
|
*/
|
|
6198
|
-
'
|
|
5850
|
+
'minPrice'?: number | null;
|
|
6199
5851
|
/**
|
|
6200
5852
|
*
|
|
6201
|
-
* @type {
|
|
5853
|
+
* @type {number}
|
|
6202
5854
|
* @memberof HospitalServiceModel
|
|
6203
5855
|
*/
|
|
6204
|
-
'
|
|
5856
|
+
'maxPrice'?: number | null;
|
|
6205
5857
|
/**
|
|
6206
5858
|
*
|
|
6207
|
-
* @type {
|
|
5859
|
+
* @type {boolean}
|
|
6208
5860
|
* @memberof HospitalServiceModel
|
|
6209
5861
|
*/
|
|
6210
|
-
'
|
|
5862
|
+
'priceReuqest'?: boolean;
|
|
6211
5863
|
/**
|
|
6212
5864
|
*
|
|
6213
5865
|
* @type {string}
|
|
@@ -6216,10 +5868,10 @@ export interface HospitalServiceModel {
|
|
|
6216
5868
|
'customStyle'?: string | null;
|
|
6217
5869
|
/**
|
|
6218
5870
|
*
|
|
6219
|
-
* @type {Array<
|
|
5871
|
+
* @type {Array<MediaModel>}
|
|
6220
5872
|
* @memberof HospitalServiceModel
|
|
6221
5873
|
*/
|
|
6222
|
-
'
|
|
5874
|
+
'medias'?: Array<MediaModel> | null;
|
|
6223
5875
|
}
|
|
6224
5876
|
/**
|
|
6225
5877
|
*
|
|
@@ -6497,12 +6149,6 @@ export interface HospitalSpecialtyModel {
|
|
|
6497
6149
|
* @memberof HospitalSpecialtyModel
|
|
6498
6150
|
*/
|
|
6499
6151
|
'confirmed'?: boolean;
|
|
6500
|
-
/**
|
|
6501
|
-
*
|
|
6502
|
-
* @type {string}
|
|
6503
|
-
* @memberof HospitalSpecialtyModel
|
|
6504
|
-
*/
|
|
6505
|
-
'customStyle'?: string | null;
|
|
6506
6152
|
/**
|
|
6507
6153
|
*
|
|
6508
6154
|
* @type {string}
|
|
@@ -6538,13 +6184,7 @@ export interface HospitalSpecialtyModel {
|
|
|
6538
6184
|
* @type {string}
|
|
6539
6185
|
* @memberof HospitalSpecialtyModel
|
|
6540
6186
|
*/
|
|
6541
|
-
'
|
|
6542
|
-
/**
|
|
6543
|
-
*
|
|
6544
|
-
* @type {MarketingType}
|
|
6545
|
-
* @memberof HospitalSpecialtyModel
|
|
6546
|
-
*/
|
|
6547
|
-
'marketingType'?: MarketingType;
|
|
6187
|
+
'customStyle'?: string | null;
|
|
6548
6188
|
/**
|
|
6549
6189
|
*
|
|
6550
6190
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -7354,12 +6994,6 @@ export interface PatientModel {
|
|
|
7354
6994
|
* @memberof PatientModel
|
|
7355
6995
|
*/
|
|
7356
6996
|
'firstName'?: string | null;
|
|
7357
|
-
/**
|
|
7358
|
-
*
|
|
7359
|
-
* @type {string}
|
|
7360
|
-
* @memberof PatientModel
|
|
7361
|
-
*/
|
|
7362
|
-
'middleName'?: string | null;
|
|
7363
6997
|
/**
|
|
7364
6998
|
*
|
|
7365
6999
|
* @type {string}
|
|
@@ -7372,18 +7006,6 @@ export interface PatientModel {
|
|
|
7372
7006
|
* @memberof PatientModel
|
|
7373
7007
|
*/
|
|
7374
7008
|
'fullName'?: string | null;
|
|
7375
|
-
/**
|
|
7376
|
-
*
|
|
7377
|
-
* @type {string}
|
|
7378
|
-
* @memberof PatientModel
|
|
7379
|
-
*/
|
|
7380
|
-
'slug'?: string | null;
|
|
7381
|
-
/**
|
|
7382
|
-
*
|
|
7383
|
-
* @type {boolean}
|
|
7384
|
-
* @memberof PatientModel
|
|
7385
|
-
*/
|
|
7386
|
-
'confirmed'?: boolean;
|
|
7387
7009
|
/**
|
|
7388
7010
|
*
|
|
7389
7011
|
* @type {string}
|
|
@@ -8497,12 +8119,6 @@ export interface SpecialtyItemModel {
|
|
|
8497
8119
|
* @memberof SpecialtyItemModel
|
|
8498
8120
|
*/
|
|
8499
8121
|
'specialtyTypeId'?: string;
|
|
8500
|
-
/**
|
|
8501
|
-
*
|
|
8502
|
-
* @type {string}
|
|
8503
|
-
* @memberof SpecialtyItemModel
|
|
8504
|
-
*/
|
|
8505
|
-
'description'?: string | null;
|
|
8506
8122
|
/**
|
|
8507
8123
|
*
|
|
8508
8124
|
* @type {string}
|
|
@@ -8607,12 +8223,6 @@ export interface SpecialtyModel {
|
|
|
8607
8223
|
* @memberof SpecialtyModel
|
|
8608
8224
|
*/
|
|
8609
8225
|
'specialtyTypeId'?: string;
|
|
8610
|
-
/**
|
|
8611
|
-
*
|
|
8612
|
-
* @type {string}
|
|
8613
|
-
* @memberof SpecialtyModel
|
|
8614
|
-
*/
|
|
8615
|
-
'description'?: string | null;
|
|
8616
8226
|
/**
|
|
8617
8227
|
*
|
|
8618
8228
|
* @type {string}
|
|
@@ -8631,6 +8241,18 @@ export interface SpecialtyModel {
|
|
|
8631
8241
|
* @memberof SpecialtyModel
|
|
8632
8242
|
*/
|
|
8633
8243
|
'auditableEntity'?: AuditableEntity;
|
|
8244
|
+
/**
|
|
8245
|
+
*
|
|
8246
|
+
* @type {string}
|
|
8247
|
+
* @memberof SpecialtyModel
|
|
8248
|
+
*/
|
|
8249
|
+
'description'?: string | null;
|
|
8250
|
+
/**
|
|
8251
|
+
*
|
|
8252
|
+
* @type {string}
|
|
8253
|
+
* @memberof SpecialtyModel
|
|
8254
|
+
*/
|
|
8255
|
+
'overview'?: string | null;
|
|
8634
8256
|
/**
|
|
8635
8257
|
*
|
|
8636
8258
|
* @type {string}
|
|
@@ -9493,12 +9115,6 @@ export interface UserModel {
|
|
|
9493
9115
|
* @memberof UserModel
|
|
9494
9116
|
*/
|
|
9495
9117
|
'firstName'?: string | null;
|
|
9496
|
-
/**
|
|
9497
|
-
*
|
|
9498
|
-
* @type {string}
|
|
9499
|
-
* @memberof UserModel
|
|
9500
|
-
*/
|
|
9501
|
-
'middleName'?: string | null;
|
|
9502
9118
|
/**
|
|
9503
9119
|
*
|
|
9504
9120
|
* @type {string}
|
|
@@ -9511,18 +9127,6 @@ export interface UserModel {
|
|
|
9511
9127
|
* @memberof UserModel
|
|
9512
9128
|
*/
|
|
9513
9129
|
'fullName'?: string | null;
|
|
9514
|
-
/**
|
|
9515
|
-
*
|
|
9516
|
-
* @type {string}
|
|
9517
|
-
* @memberof UserModel
|
|
9518
|
-
*/
|
|
9519
|
-
'slug'?: string | null;
|
|
9520
|
-
/**
|
|
9521
|
-
*
|
|
9522
|
-
* @type {boolean}
|
|
9523
|
-
* @memberof UserModel
|
|
9524
|
-
*/
|
|
9525
|
-
'confirmed'?: boolean;
|
|
9526
9130
|
/**
|
|
9527
9131
|
*
|
|
9528
9132
|
* @type {string}
|
|
@@ -14350,17 +13954,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14350
13954
|
* @param {string} [name]
|
|
14351
13955
|
* @param {string} [slug]
|
|
14352
13956
|
* @param {MarketingType} [marketingType]
|
|
14353
|
-
* @param {boolean} [returnDefaultValue]
|
|
14354
|
-
* @param {boolean} [includeServices]
|
|
14355
13957
|
* @param {string} [languageCode]
|
|
14356
|
-
* @param {boolean} [showHidden]
|
|
14357
13958
|
* @param {number} [page]
|
|
14358
13959
|
* @param {number} [limit]
|
|
14359
13960
|
* @param {Date} [lastRetrieved]
|
|
14360
13961
|
* @param {*} [options] Override http request option.
|
|
14361
13962
|
* @throws {RequiredError}
|
|
14362
13963
|
*/
|
|
14363
|
-
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>;
|
|
14364
13965
|
/**
|
|
14365
13966
|
*
|
|
14366
13967
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -14397,29 +13998,24 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14397
13998
|
* @param {string} [name]
|
|
14398
13999
|
* @param {string} [slug]
|
|
14399
14000
|
* @param {MarketingType} [marketingType]
|
|
14400
|
-
* @param {boolean} [returnDefaultValue]
|
|
14401
|
-
* @param {boolean} [includeServices]
|
|
14402
14001
|
* @param {string} [languageCode]
|
|
14403
|
-
* @param {boolean} [showHidden]
|
|
14404
14002
|
* @param {number} [page]
|
|
14405
14003
|
* @param {number} [limit]
|
|
14406
14004
|
* @param {Date} [lastRetrieved]
|
|
14407
14005
|
* @param {*} [options] Override http request option.
|
|
14408
14006
|
* @throws {RequiredError}
|
|
14409
14007
|
*/
|
|
14410
|
-
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>;
|
|
14411
14009
|
/**
|
|
14412
14010
|
*
|
|
14413
14011
|
* @summary Get HospitalSpecialty by slug.
|
|
14414
14012
|
* @param {string} hospitalId
|
|
14415
14013
|
* @param {string} slug
|
|
14416
14014
|
* @param {string} [languageCode]
|
|
14417
|
-
* @param {boolean} [returnDefaultValue]
|
|
14418
|
-
* @param {boolean} [includeServices]
|
|
14419
14015
|
* @param {*} [options] Override http request option.
|
|
14420
14016
|
* @throws {RequiredError}
|
|
14421
14017
|
*/
|
|
14422
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet: (hospitalId: string, slug: string, languageCode?: string | undefined,
|
|
14018
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet: (hospitalId: string, slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14423
14019
|
/**
|
|
14424
14020
|
*
|
|
14425
14021
|
* @summary Get HospitalSpecialty.
|
|
@@ -14737,17 +14333,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14737
14333
|
* @param {string} [name]
|
|
14738
14334
|
* @param {string} [slug]
|
|
14739
14335
|
* @param {MarketingType} [marketingType]
|
|
14740
|
-
* @param {boolean} [returnDefaultValue]
|
|
14741
|
-
* @param {boolean} [includeServices]
|
|
14742
14336
|
* @param {string} [languageCode]
|
|
14743
|
-
* @param {boolean} [showHidden]
|
|
14744
14337
|
* @param {number} [page]
|
|
14745
14338
|
* @param {number} [limit]
|
|
14746
14339
|
* @param {Date} [lastRetrieved]
|
|
14747
14340
|
* @param {*} [options] Override http request option.
|
|
14748
14341
|
* @throws {RequiredError}
|
|
14749
14342
|
*/
|
|
14750
|
-
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>>;
|
|
14751
14344
|
/**
|
|
14752
14345
|
*
|
|
14753
14346
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -14784,29 +14377,24 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14784
14377
|
* @param {string} [name]
|
|
14785
14378
|
* @param {string} [slug]
|
|
14786
14379
|
* @param {MarketingType} [marketingType]
|
|
14787
|
-
* @param {boolean} [returnDefaultValue]
|
|
14788
|
-
* @param {boolean} [includeServices]
|
|
14789
14380
|
* @param {string} [languageCode]
|
|
14790
|
-
* @param {boolean} [showHidden]
|
|
14791
14381
|
* @param {number} [page]
|
|
14792
14382
|
* @param {number} [limit]
|
|
14793
14383
|
* @param {Date} [lastRetrieved]
|
|
14794
14384
|
* @param {*} [options] Override http request option.
|
|
14795
14385
|
* @throws {RequiredError}
|
|
14796
14386
|
*/
|
|
14797
|
-
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>>;
|
|
14798
14388
|
/**
|
|
14799
14389
|
*
|
|
14800
14390
|
* @summary Get HospitalSpecialty by slug.
|
|
14801
14391
|
* @param {string} hospitalId
|
|
14802
14392
|
* @param {string} slug
|
|
14803
14393
|
* @param {string} [languageCode]
|
|
14804
|
-
* @param {boolean} [returnDefaultValue]
|
|
14805
|
-
* @param {boolean} [includeServices]
|
|
14806
14394
|
* @param {*} [options] Override http request option.
|
|
14807
14395
|
* @throws {RequiredError}
|
|
14808
14396
|
*/
|
|
14809
|
-
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>>;
|
|
14810
14398
|
/**
|
|
14811
14399
|
*
|
|
14812
14400
|
* @summary Get HospitalSpecialty.
|
|
@@ -15124,17 +14712,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15124
14712
|
* @param {string} [name]
|
|
15125
14713
|
* @param {string} [slug]
|
|
15126
14714
|
* @param {MarketingType} [marketingType]
|
|
15127
|
-
* @param {boolean} [returnDefaultValue]
|
|
15128
|
-
* @param {boolean} [includeServices]
|
|
15129
14715
|
* @param {string} [languageCode]
|
|
15130
|
-
* @param {boolean} [showHidden]
|
|
15131
14716
|
* @param {number} [page]
|
|
15132
14717
|
* @param {number} [limit]
|
|
15133
14718
|
* @param {Date} [lastRetrieved]
|
|
15134
14719
|
* @param {*} [options] Override http request option.
|
|
15135
14720
|
* @throws {RequiredError}
|
|
15136
14721
|
*/
|
|
15137
|
-
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>;
|
|
15138
14723
|
/**
|
|
15139
14724
|
*
|
|
15140
14725
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -15171,29 +14756,24 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15171
14756
|
* @param {string} [name]
|
|
15172
14757
|
* @param {string} [slug]
|
|
15173
14758
|
* @param {MarketingType} [marketingType]
|
|
15174
|
-
* @param {boolean} [returnDefaultValue]
|
|
15175
|
-
* @param {boolean} [includeServices]
|
|
15176
14759
|
* @param {string} [languageCode]
|
|
15177
|
-
* @param {boolean} [showHidden]
|
|
15178
14760
|
* @param {number} [page]
|
|
15179
14761
|
* @param {number} [limit]
|
|
15180
14762
|
* @param {Date} [lastRetrieved]
|
|
15181
14763
|
* @param {*} [options] Override http request option.
|
|
15182
14764
|
* @throws {RequiredError}
|
|
15183
14765
|
*/
|
|
15184
|
-
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>;
|
|
15185
14767
|
/**
|
|
15186
14768
|
*
|
|
15187
14769
|
* @summary Get HospitalSpecialty by slug.
|
|
15188
14770
|
* @param {string} hospitalId
|
|
15189
14771
|
* @param {string} slug
|
|
15190
14772
|
* @param {string} [languageCode]
|
|
15191
|
-
* @param {boolean} [returnDefaultValue]
|
|
15192
|
-
* @param {boolean} [includeServices]
|
|
15193
14773
|
* @param {*} [options] Override http request option.
|
|
15194
14774
|
* @throws {RequiredError}
|
|
15195
14775
|
*/
|
|
15196
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined,
|
|
14776
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
15197
14777
|
/**
|
|
15198
14778
|
*
|
|
15199
14779
|
* @summary Get HospitalSpecialty.
|
|
@@ -15527,10 +15107,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15527
15107
|
* @param {string} [name]
|
|
15528
15108
|
* @param {string} [slug]
|
|
15529
15109
|
* @param {MarketingType} [marketingType]
|
|
15530
|
-
* @param {boolean} [returnDefaultValue]
|
|
15531
|
-
* @param {boolean} [includeServices]
|
|
15532
15110
|
* @param {string} [languageCode]
|
|
15533
|
-
* @param {boolean} [showHidden]
|
|
15534
15111
|
* @param {number} [page]
|
|
15535
15112
|
* @param {number} [limit]
|
|
15536
15113
|
* @param {Date} [lastRetrieved]
|
|
@@ -15538,7 +15115,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15538
15115
|
* @throws {RequiredError}
|
|
15539
15116
|
* @memberof HospitalsApi
|
|
15540
15117
|
*/
|
|
15541
|
-
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>>;
|
|
15542
15119
|
/**
|
|
15543
15120
|
*
|
|
15544
15121
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -15577,10 +15154,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15577
15154
|
* @param {string} [name]
|
|
15578
15155
|
* @param {string} [slug]
|
|
15579
15156
|
* @param {MarketingType} [marketingType]
|
|
15580
|
-
* @param {boolean} [returnDefaultValue]
|
|
15581
|
-
* @param {boolean} [includeServices]
|
|
15582
15157
|
* @param {string} [languageCode]
|
|
15583
|
-
* @param {boolean} [showHidden]
|
|
15584
15158
|
* @param {number} [page]
|
|
15585
15159
|
* @param {number} [limit]
|
|
15586
15160
|
* @param {Date} [lastRetrieved]
|
|
@@ -15588,20 +15162,18 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15588
15162
|
* @throws {RequiredError}
|
|
15589
15163
|
* @memberof HospitalsApi
|
|
15590
15164
|
*/
|
|
15591
|
-
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>>;
|
|
15592
15166
|
/**
|
|
15593
15167
|
*
|
|
15594
15168
|
* @summary Get HospitalSpecialty by slug.
|
|
15595
15169
|
* @param {string} hospitalId
|
|
15596
15170
|
* @param {string} slug
|
|
15597
15171
|
* @param {string} [languageCode]
|
|
15598
|
-
* @param {boolean} [returnDefaultValue]
|
|
15599
|
-
* @param {boolean} [includeServices]
|
|
15600
15172
|
* @param {*} [options] Override http request option.
|
|
15601
15173
|
* @throws {RequiredError}
|
|
15602
15174
|
* @memberof HospitalsApi
|
|
15603
15175
|
*/
|
|
15604
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string,
|
|
15176
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
|
|
15605
15177
|
/**
|
|
15606
15178
|
*
|
|
15607
15179
|
* @summary Get HospitalSpecialty.
|