ch-api-client-typescript2 4.4.4 → 4.4.6
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 +376 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +447 -3
- package/package.json +1 -1
- package/src/api.ts +561 -0
package/lib/api.d.ts
CHANGED
|
@@ -3199,6 +3199,20 @@ export interface CreateServiceReviewCommand {
|
|
|
3199
3199
|
*/
|
|
3200
3200
|
'reviewType'?: ReviewType;
|
|
3201
3201
|
}
|
|
3202
|
+
/**
|
|
3203
|
+
*
|
|
3204
|
+
* @export
|
|
3205
|
+
* @enum {string}
|
|
3206
|
+
*/
|
|
3207
|
+
export declare enum DayOfWeek {
|
|
3208
|
+
Sunday = "Sunday",
|
|
3209
|
+
Monday = "Monday",
|
|
3210
|
+
Tuesday = "Tuesday",
|
|
3211
|
+
Wednesday = "Wednesday",
|
|
3212
|
+
Thursday = "Thursday",
|
|
3213
|
+
Friday = "Friday",
|
|
3214
|
+
Saturday = "Saturday"
|
|
3215
|
+
}
|
|
3202
3216
|
/**
|
|
3203
3217
|
*
|
|
3204
3218
|
* @export
|
|
@@ -5598,6 +5612,49 @@ export declare enum Gender {
|
|
|
5598
5612
|
NonBinary = "NonBinary",
|
|
5599
5613
|
PreferNotToSay = "PreferNotToSay"
|
|
5600
5614
|
}
|
|
5615
|
+
/**
|
|
5616
|
+
*
|
|
5617
|
+
* @export
|
|
5618
|
+
* @interface HeaderNavigationItemModel
|
|
5619
|
+
*/
|
|
5620
|
+
export interface HeaderNavigationItemModel {
|
|
5621
|
+
/**
|
|
5622
|
+
*
|
|
5623
|
+
* @type {string}
|
|
5624
|
+
* @memberof HeaderNavigationItemModel
|
|
5625
|
+
*/
|
|
5626
|
+
'id'?: string;
|
|
5627
|
+
/**
|
|
5628
|
+
*
|
|
5629
|
+
* @type {string}
|
|
5630
|
+
* @memberof HeaderNavigationItemModel
|
|
5631
|
+
*/
|
|
5632
|
+
'name'?: string | null;
|
|
5633
|
+
/**
|
|
5634
|
+
*
|
|
5635
|
+
* @type {string}
|
|
5636
|
+
* @memberof HeaderNavigationItemModel
|
|
5637
|
+
*/
|
|
5638
|
+
'url'?: string | null;
|
|
5639
|
+
/**
|
|
5640
|
+
*
|
|
5641
|
+
* @type {number}
|
|
5642
|
+
* @memberof HeaderNavigationItemModel
|
|
5643
|
+
*/
|
|
5644
|
+
'order'?: number;
|
|
5645
|
+
/**
|
|
5646
|
+
*
|
|
5647
|
+
* @type {number}
|
|
5648
|
+
* @memberof HeaderNavigationItemModel
|
|
5649
|
+
*/
|
|
5650
|
+
'level'?: number;
|
|
5651
|
+
/**
|
|
5652
|
+
*
|
|
5653
|
+
* @type {Array<HeaderNavigationItemModel>}
|
|
5654
|
+
* @memberof HeaderNavigationItemModel
|
|
5655
|
+
*/
|
|
5656
|
+
'subItems'?: Array<HeaderNavigationItemModel> | null;
|
|
5657
|
+
}
|
|
5601
5658
|
/**
|
|
5602
5659
|
*
|
|
5603
5660
|
* @export
|
|
@@ -5679,6 +5736,112 @@ export interface HospitalAccreditationsModel {
|
|
|
5679
5736
|
*/
|
|
5680
5737
|
'metaData'?: PagedListMetaData;
|
|
5681
5738
|
}
|
|
5739
|
+
/**
|
|
5740
|
+
*
|
|
5741
|
+
* @export
|
|
5742
|
+
* @interface HospitalConsultationTimetableItemModel
|
|
5743
|
+
*/
|
|
5744
|
+
export interface HospitalConsultationTimetableItemModel {
|
|
5745
|
+
/**
|
|
5746
|
+
*
|
|
5747
|
+
* @type {string}
|
|
5748
|
+
* @memberof HospitalConsultationTimetableItemModel
|
|
5749
|
+
*/
|
|
5750
|
+
'id'?: string;
|
|
5751
|
+
/**
|
|
5752
|
+
*
|
|
5753
|
+
* @type {DayOfWeek}
|
|
5754
|
+
* @memberof HospitalConsultationTimetableItemModel
|
|
5755
|
+
*/
|
|
5756
|
+
'dayOfWeek'?: DayOfWeek;
|
|
5757
|
+
/**
|
|
5758
|
+
*
|
|
5759
|
+
* @type {string}
|
|
5760
|
+
* @memberof HospitalConsultationTimetableItemModel
|
|
5761
|
+
*/
|
|
5762
|
+
'start'?: string | null;
|
|
5763
|
+
/**
|
|
5764
|
+
*
|
|
5765
|
+
* @type {string}
|
|
5766
|
+
* @memberof HospitalConsultationTimetableItemModel
|
|
5767
|
+
*/
|
|
5768
|
+
'end'?: string | null;
|
|
5769
|
+
}
|
|
5770
|
+
/**
|
|
5771
|
+
*
|
|
5772
|
+
* @export
|
|
5773
|
+
* @interface HospitalConsultationTimetableOverrideItemModel
|
|
5774
|
+
*/
|
|
5775
|
+
export interface HospitalConsultationTimetableOverrideItemModel {
|
|
5776
|
+
/**
|
|
5777
|
+
*
|
|
5778
|
+
* @type {string}
|
|
5779
|
+
* @memberof HospitalConsultationTimetableOverrideItemModel
|
|
5780
|
+
*/
|
|
5781
|
+
'id'?: string;
|
|
5782
|
+
/**
|
|
5783
|
+
*
|
|
5784
|
+
* @type {Date}
|
|
5785
|
+
* @memberof HospitalConsultationTimetableOverrideItemModel
|
|
5786
|
+
*/
|
|
5787
|
+
'date'?: Date;
|
|
5788
|
+
/**
|
|
5789
|
+
*
|
|
5790
|
+
* @type {string}
|
|
5791
|
+
* @memberof HospitalConsultationTimetableOverrideItemModel
|
|
5792
|
+
*/
|
|
5793
|
+
'start'?: string | null;
|
|
5794
|
+
/**
|
|
5795
|
+
*
|
|
5796
|
+
* @type {string}
|
|
5797
|
+
* @memberof HospitalConsultationTimetableOverrideItemModel
|
|
5798
|
+
*/
|
|
5799
|
+
'end'?: string | null;
|
|
5800
|
+
/**
|
|
5801
|
+
*
|
|
5802
|
+
* @type {boolean}
|
|
5803
|
+
* @memberof HospitalConsultationTimetableOverrideItemModel
|
|
5804
|
+
*/
|
|
5805
|
+
'isUnavailable'?: boolean;
|
|
5806
|
+
}
|
|
5807
|
+
/**
|
|
5808
|
+
*
|
|
5809
|
+
* @export
|
|
5810
|
+
* @interface HospitalConsultationTimetableOverridesModel
|
|
5811
|
+
*/
|
|
5812
|
+
export interface HospitalConsultationTimetableOverridesModel {
|
|
5813
|
+
/**
|
|
5814
|
+
*
|
|
5815
|
+
* @type {Array<HospitalConsultationTimetableOverrideItemModel>}
|
|
5816
|
+
* @memberof HospitalConsultationTimetableOverridesModel
|
|
5817
|
+
*/
|
|
5818
|
+
'items'?: Array<HospitalConsultationTimetableOverrideItemModel> | null;
|
|
5819
|
+
/**
|
|
5820
|
+
*
|
|
5821
|
+
* @type {PagedListMetaData}
|
|
5822
|
+
* @memberof HospitalConsultationTimetableOverridesModel
|
|
5823
|
+
*/
|
|
5824
|
+
'metaData'?: PagedListMetaData;
|
|
5825
|
+
}
|
|
5826
|
+
/**
|
|
5827
|
+
*
|
|
5828
|
+
* @export
|
|
5829
|
+
* @interface HospitalConsultationTimetablesModel
|
|
5830
|
+
*/
|
|
5831
|
+
export interface HospitalConsultationTimetablesModel {
|
|
5832
|
+
/**
|
|
5833
|
+
*
|
|
5834
|
+
* @type {Array<HospitalConsultationTimetableItemModel>}
|
|
5835
|
+
* @memberof HospitalConsultationTimetablesModel
|
|
5836
|
+
*/
|
|
5837
|
+
'items'?: Array<HospitalConsultationTimetableItemModel> | null;
|
|
5838
|
+
/**
|
|
5839
|
+
*
|
|
5840
|
+
* @type {PagedListMetaData}
|
|
5841
|
+
* @memberof HospitalConsultationTimetablesModel
|
|
5842
|
+
*/
|
|
5843
|
+
'metaData'?: PagedListMetaData;
|
|
5844
|
+
}
|
|
5682
5845
|
/**
|
|
5683
5846
|
*
|
|
5684
5847
|
* @export
|
|
@@ -15383,6 +15546,65 @@ export declare class GroupChannelsApi extends BaseAPI {
|
|
|
15383
15546
|
*/
|
|
15384
15547
|
apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, isExternal?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
15385
15548
|
}
|
|
15549
|
+
/**
|
|
15550
|
+
* HeaderNavigationsApi - axios parameter creator
|
|
15551
|
+
* @export
|
|
15552
|
+
*/
|
|
15553
|
+
export declare const HeaderNavigationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
15554
|
+
/**
|
|
15555
|
+
*
|
|
15556
|
+
* @summary Get all HeaderNavigationItems
|
|
15557
|
+
* @param {string} [languageCode]
|
|
15558
|
+
* @param {*} [options] Override http request option.
|
|
15559
|
+
* @throws {RequiredError}
|
|
15560
|
+
*/
|
|
15561
|
+
apiV2HeadernavigationsGet: (languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15562
|
+
};
|
|
15563
|
+
/**
|
|
15564
|
+
* HeaderNavigationsApi - functional programming interface
|
|
15565
|
+
* @export
|
|
15566
|
+
*/
|
|
15567
|
+
export declare const HeaderNavigationsApiFp: (configuration?: Configuration | undefined) => {
|
|
15568
|
+
/**
|
|
15569
|
+
*
|
|
15570
|
+
* @summary Get all HeaderNavigationItems
|
|
15571
|
+
* @param {string} [languageCode]
|
|
15572
|
+
* @param {*} [options] Override http request option.
|
|
15573
|
+
* @throws {RequiredError}
|
|
15574
|
+
*/
|
|
15575
|
+
apiV2HeadernavigationsGet(languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<HeaderNavigationItemModel>>>;
|
|
15576
|
+
};
|
|
15577
|
+
/**
|
|
15578
|
+
* HeaderNavigationsApi - factory interface
|
|
15579
|
+
* @export
|
|
15580
|
+
*/
|
|
15581
|
+
export declare const HeaderNavigationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
15582
|
+
/**
|
|
15583
|
+
*
|
|
15584
|
+
* @summary Get all HeaderNavigationItems
|
|
15585
|
+
* @param {string} [languageCode]
|
|
15586
|
+
* @param {*} [options] Override http request option.
|
|
15587
|
+
* @throws {RequiredError}
|
|
15588
|
+
*/
|
|
15589
|
+
apiV2HeadernavigationsGet(languageCode?: string | undefined, options?: any): AxiosPromise<Array<HeaderNavigationItemModel>>;
|
|
15590
|
+
};
|
|
15591
|
+
/**
|
|
15592
|
+
* HeaderNavigationsApi - object-oriented interface
|
|
15593
|
+
* @export
|
|
15594
|
+
* @class HeaderNavigationsApi
|
|
15595
|
+
* @extends {BaseAPI}
|
|
15596
|
+
*/
|
|
15597
|
+
export declare class HeaderNavigationsApi extends BaseAPI {
|
|
15598
|
+
/**
|
|
15599
|
+
*
|
|
15600
|
+
* @summary Get all HeaderNavigationItems
|
|
15601
|
+
* @param {string} [languageCode]
|
|
15602
|
+
* @param {*} [options] Override http request option.
|
|
15603
|
+
* @throws {RequiredError}
|
|
15604
|
+
* @memberof HeaderNavigationsApi
|
|
15605
|
+
*/
|
|
15606
|
+
apiV2HeadernavigationsGet(languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel[], any>>;
|
|
15607
|
+
}
|
|
15386
15608
|
/**
|
|
15387
15609
|
* HospitalsApi - axios parameter creator
|
|
15388
15610
|
* @export
|
|
@@ -17068,6 +17290,160 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
17068
17290
|
*/
|
|
17069
17291
|
apiV2HospitalsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel, any>>;
|
|
17070
17292
|
}
|
|
17293
|
+
/**
|
|
17294
|
+
* HospitalsConsultationTimetableOverridesApi - axios parameter creator
|
|
17295
|
+
* @export
|
|
17296
|
+
*/
|
|
17297
|
+
export declare const HospitalsConsultationTimetableOverridesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
17298
|
+
/**
|
|
17299
|
+
*
|
|
17300
|
+
* @summary Get hospital consultation timetable overrides by hospitalId
|
|
17301
|
+
* @param {string} hospitalId
|
|
17302
|
+
* @param {boolean} [includesPreviousItems]
|
|
17303
|
+
* @param {Date} [startDate]
|
|
17304
|
+
* @param {Date} [endDate]
|
|
17305
|
+
* @param {number} [page]
|
|
17306
|
+
* @param {number} [limit]
|
|
17307
|
+
* @param {Date} [lastRetrieved]
|
|
17308
|
+
* @param {*} [options] Override http request option.
|
|
17309
|
+
* @throws {RequiredError}
|
|
17310
|
+
*/
|
|
17311
|
+
apiV2HospitalsHospitalIdConsultationtimetableoverridesGet: (hospitalId: string, includesPreviousItems?: boolean | undefined, startDate?: Date | undefined, endDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17312
|
+
};
|
|
17313
|
+
/**
|
|
17314
|
+
* HospitalsConsultationTimetableOverridesApi - functional programming interface
|
|
17315
|
+
* @export
|
|
17316
|
+
*/
|
|
17317
|
+
export declare const HospitalsConsultationTimetableOverridesApiFp: (configuration?: Configuration | undefined) => {
|
|
17318
|
+
/**
|
|
17319
|
+
*
|
|
17320
|
+
* @summary Get hospital consultation timetable overrides by hospitalId
|
|
17321
|
+
* @param {string} hospitalId
|
|
17322
|
+
* @param {boolean} [includesPreviousItems]
|
|
17323
|
+
* @param {Date} [startDate]
|
|
17324
|
+
* @param {Date} [endDate]
|
|
17325
|
+
* @param {number} [page]
|
|
17326
|
+
* @param {number} [limit]
|
|
17327
|
+
* @param {Date} [lastRetrieved]
|
|
17328
|
+
* @param {*} [options] Override http request option.
|
|
17329
|
+
* @throws {RequiredError}
|
|
17330
|
+
*/
|
|
17331
|
+
apiV2HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean | undefined, startDate?: Date | undefined, endDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverridesModel>>;
|
|
17332
|
+
};
|
|
17333
|
+
/**
|
|
17334
|
+
* HospitalsConsultationTimetableOverridesApi - factory interface
|
|
17335
|
+
* @export
|
|
17336
|
+
*/
|
|
17337
|
+
export declare const HospitalsConsultationTimetableOverridesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
17338
|
+
/**
|
|
17339
|
+
*
|
|
17340
|
+
* @summary Get hospital consultation timetable overrides by hospitalId
|
|
17341
|
+
* @param {string} hospitalId
|
|
17342
|
+
* @param {boolean} [includesPreviousItems]
|
|
17343
|
+
* @param {Date} [startDate]
|
|
17344
|
+
* @param {Date} [endDate]
|
|
17345
|
+
* @param {number} [page]
|
|
17346
|
+
* @param {number} [limit]
|
|
17347
|
+
* @param {Date} [lastRetrieved]
|
|
17348
|
+
* @param {*} [options] Override http request option.
|
|
17349
|
+
* @throws {RequiredError}
|
|
17350
|
+
*/
|
|
17351
|
+
apiV2HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean | undefined, startDate?: Date | undefined, endDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableOverridesModel>;
|
|
17352
|
+
};
|
|
17353
|
+
/**
|
|
17354
|
+
* HospitalsConsultationTimetableOverridesApi - object-oriented interface
|
|
17355
|
+
* @export
|
|
17356
|
+
* @class HospitalsConsultationTimetableOverridesApi
|
|
17357
|
+
* @extends {BaseAPI}
|
|
17358
|
+
*/
|
|
17359
|
+
export declare class HospitalsConsultationTimetableOverridesApi extends BaseAPI {
|
|
17360
|
+
/**
|
|
17361
|
+
*
|
|
17362
|
+
* @summary Get hospital consultation timetable overrides by hospitalId
|
|
17363
|
+
* @param {string} hospitalId
|
|
17364
|
+
* @param {boolean} [includesPreviousItems]
|
|
17365
|
+
* @param {Date} [startDate]
|
|
17366
|
+
* @param {Date} [endDate]
|
|
17367
|
+
* @param {number} [page]
|
|
17368
|
+
* @param {number} [limit]
|
|
17369
|
+
* @param {Date} [lastRetrieved]
|
|
17370
|
+
* @param {*} [options] Override http request option.
|
|
17371
|
+
* @throws {RequiredError}
|
|
17372
|
+
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
17373
|
+
*/
|
|
17374
|
+
apiV2HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverridesModel, any>>;
|
|
17375
|
+
}
|
|
17376
|
+
/**
|
|
17377
|
+
* HospitalsConsultationTimetablesApi - axios parameter creator
|
|
17378
|
+
* @export
|
|
17379
|
+
*/
|
|
17380
|
+
export declare const HospitalsConsultationTimetablesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
17381
|
+
/**
|
|
17382
|
+
*
|
|
17383
|
+
* @summary Get hospital consultation timetables by hospitalId
|
|
17384
|
+
* @param {string} hospitalId
|
|
17385
|
+
* @param {number} [page]
|
|
17386
|
+
* @param {number} [limit]
|
|
17387
|
+
* @param {Date} [lastRetrieved]
|
|
17388
|
+
* @param {*} [options] Override http request option.
|
|
17389
|
+
* @throws {RequiredError}
|
|
17390
|
+
*/
|
|
17391
|
+
apiV2HospitalsHospitalIdConsultationtimetablesGet: (hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17392
|
+
};
|
|
17393
|
+
/**
|
|
17394
|
+
* HospitalsConsultationTimetablesApi - functional programming interface
|
|
17395
|
+
* @export
|
|
17396
|
+
*/
|
|
17397
|
+
export declare const HospitalsConsultationTimetablesApiFp: (configuration?: Configuration | undefined) => {
|
|
17398
|
+
/**
|
|
17399
|
+
*
|
|
17400
|
+
* @summary Get hospital consultation timetables by hospitalId
|
|
17401
|
+
* @param {string} hospitalId
|
|
17402
|
+
* @param {number} [page]
|
|
17403
|
+
* @param {number} [limit]
|
|
17404
|
+
* @param {Date} [lastRetrieved]
|
|
17405
|
+
* @param {*} [options] Override http request option.
|
|
17406
|
+
* @throws {RequiredError}
|
|
17407
|
+
*/
|
|
17408
|
+
apiV2HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetablesModel>>;
|
|
17409
|
+
};
|
|
17410
|
+
/**
|
|
17411
|
+
* HospitalsConsultationTimetablesApi - factory interface
|
|
17412
|
+
* @export
|
|
17413
|
+
*/
|
|
17414
|
+
export declare const HospitalsConsultationTimetablesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
17415
|
+
/**
|
|
17416
|
+
*
|
|
17417
|
+
* @summary Get hospital consultation timetables by hospitalId
|
|
17418
|
+
* @param {string} hospitalId
|
|
17419
|
+
* @param {number} [page]
|
|
17420
|
+
* @param {number} [limit]
|
|
17421
|
+
* @param {Date} [lastRetrieved]
|
|
17422
|
+
* @param {*} [options] Override http request option.
|
|
17423
|
+
* @throws {RequiredError}
|
|
17424
|
+
*/
|
|
17425
|
+
apiV2HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalConsultationTimetablesModel>;
|
|
17426
|
+
};
|
|
17427
|
+
/**
|
|
17428
|
+
* HospitalsConsultationTimetablesApi - object-oriented interface
|
|
17429
|
+
* @export
|
|
17430
|
+
* @class HospitalsConsultationTimetablesApi
|
|
17431
|
+
* @extends {BaseAPI}
|
|
17432
|
+
*/
|
|
17433
|
+
export declare class HospitalsConsultationTimetablesApi extends BaseAPI {
|
|
17434
|
+
/**
|
|
17435
|
+
*
|
|
17436
|
+
* @summary Get hospital consultation timetables by hospitalId
|
|
17437
|
+
* @param {string} hospitalId
|
|
17438
|
+
* @param {number} [page]
|
|
17439
|
+
* @param {number} [limit]
|
|
17440
|
+
* @param {Date} [lastRetrieved]
|
|
17441
|
+
* @param {*} [options] Override http request option.
|
|
17442
|
+
* @throws {RequiredError}
|
|
17443
|
+
* @memberof HospitalsConsultationTimetablesApi
|
|
17444
|
+
*/
|
|
17445
|
+
apiV2HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetablesModel, any>>;
|
|
17446
|
+
}
|
|
17071
17447
|
/**
|
|
17072
17448
|
* ImagesApi - axios parameter creator
|
|
17073
17449
|
* @export
|