ch-api-client-typescript2 2.9.4 → 2.9.7

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 CHANGED
@@ -12,6 +12,201 @@
12
12
  import { Configuration } from './configuration';
13
13
  import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
14
14
  import { RequestArgs, BaseAPI } from './base';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface AboutUsPageItemModel
19
+ */
20
+ export interface AboutUsPageItemModel {
21
+ /**
22
+ *
23
+ * @type {string}
24
+ * @memberof AboutUsPageItemModel
25
+ */
26
+ 'id'?: string;
27
+ /**
28
+ *
29
+ * @type {string}
30
+ * @memberof AboutUsPageItemModel
31
+ */
32
+ 'hospitalId'?: string;
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;
45
+ /**
46
+ *
47
+ * @type {string}
48
+ * @memberof AboutUsPageItemModel
49
+ */
50
+ 'overviewTitle'?: string | null;
51
+ /**
52
+ *
53
+ * @type {string}
54
+ * @memberof AboutUsPageItemModel
55
+ */
56
+ 'overview'?: string | null;
57
+ /**
58
+ *
59
+ * @type {string}
60
+ * @memberof AboutUsPageItemModel
61
+ */
62
+ 'content'?: string | null;
63
+ /**
64
+ *
65
+ * @type {string}
66
+ * @memberof AboutUsPageItemModel
67
+ */
68
+ 'customStyle'?: string | null;
69
+ /**
70
+ *
71
+ * @type {string}
72
+ * @memberof AboutUsPageItemModel
73
+ */
74
+ 'background'?: string | null;
75
+ /**
76
+ *
77
+ * @type {string}
78
+ * @memberof AboutUsPageItemModel
79
+ */
80
+ 'backgroundThumbnail'?: string | null;
81
+ /**
82
+ *
83
+ * @type {boolean}
84
+ * @memberof AboutUsPageItemModel
85
+ */
86
+ 'confirmed'?: boolean;
87
+ /**
88
+ *
89
+ * @type {Array<MediaModel>}
90
+ * @memberof AboutUsPageItemModel
91
+ */
92
+ 'medias'?: Array<MediaModel> | null;
93
+ /**
94
+ *
95
+ * @type {AuditableEntity}
96
+ * @memberof AboutUsPageItemModel
97
+ */
98
+ 'auditableEntity'?: AuditableEntity;
99
+ }
100
+ /**
101
+ *
102
+ * @export
103
+ * @interface AboutUsPageModel
104
+ */
105
+ export interface AboutUsPageModel {
106
+ /**
107
+ *
108
+ * @type {string}
109
+ * @memberof AboutUsPageModel
110
+ */
111
+ 'id'?: string;
112
+ /**
113
+ *
114
+ * @type {string}
115
+ * @memberof AboutUsPageModel
116
+ */
117
+ 'hospitalId'?: string;
118
+ /**
119
+ *
120
+ * @type {string}
121
+ * @memberof AboutUsPageModel
122
+ */
123
+ 'hospitalName'?: string | null;
124
+ /**
125
+ *
126
+ * @type {string}
127
+ * @memberof AboutUsPageModel
128
+ */
129
+ 'hospitalSlug'?: string | null;
130
+ /**
131
+ *
132
+ * @type {string}
133
+ * @memberof AboutUsPageModel
134
+ */
135
+ 'overviewTitle'?: string | null;
136
+ /**
137
+ *
138
+ * @type {string}
139
+ * @memberof AboutUsPageModel
140
+ */
141
+ 'overview'?: string | null;
142
+ /**
143
+ *
144
+ * @type {string}
145
+ * @memberof AboutUsPageModel
146
+ */
147
+ 'content'?: string | null;
148
+ /**
149
+ *
150
+ * @type {string}
151
+ * @memberof AboutUsPageModel
152
+ */
153
+ 'customStyle'?: string | null;
154
+ /**
155
+ *
156
+ * @type {string}
157
+ * @memberof AboutUsPageModel
158
+ */
159
+ 'background'?: string | null;
160
+ /**
161
+ *
162
+ * @type {string}
163
+ * @memberof AboutUsPageModel
164
+ */
165
+ 'backgroundThumbnail'?: string | null;
166
+ /**
167
+ *
168
+ * @type {boolean}
169
+ * @memberof AboutUsPageModel
170
+ */
171
+ 'confirmed'?: boolean;
172
+ /**
173
+ *
174
+ * @type {Array<MediaModel>}
175
+ * @memberof AboutUsPageModel
176
+ */
177
+ 'medias'?: Array<MediaModel> | null;
178
+ /**
179
+ *
180
+ * @type {AuditableEntity}
181
+ * @memberof AboutUsPageModel
182
+ */
183
+ 'auditableEntity'?: AuditableEntity;
184
+ /**
185
+ *
186
+ * @type {string}
187
+ * @memberof AboutUsPageModel
188
+ */
189
+ 'languageCode'?: string | null;
190
+ }
191
+ /**
192
+ *
193
+ * @export
194
+ * @interface AboutUsPagesModel
195
+ */
196
+ export interface AboutUsPagesModel {
197
+ /**
198
+ *
199
+ * @type {Array<AboutUsPageItemModel>}
200
+ * @memberof AboutUsPagesModel
201
+ */
202
+ 'items'?: Array<AboutUsPageItemModel> | null;
203
+ /**
204
+ *
205
+ * @type {PagedListMetaData}
206
+ * @memberof AboutUsPagesModel
207
+ */
208
+ 'metaData'?: PagedListMetaData;
209
+ }
15
210
  /**
16
211
  *
17
212
  * @export
@@ -6028,6 +6223,30 @@ export interface HospitalModel {
6028
6223
  * @memberof HospitalModel
6029
6224
  */
6030
6225
  'languageCode'?: string | null;
6226
+ /**
6227
+ *
6228
+ * @type {string}
6229
+ * @memberof HospitalModel
6230
+ */
6231
+ 'contactTel'?: string | null;
6232
+ /**
6233
+ *
6234
+ * @type {string}
6235
+ * @memberof HospitalModel
6236
+ */
6237
+ 'contactEmail'?: string | null;
6238
+ /**
6239
+ *
6240
+ * @type {Array<WorkingDay>}
6241
+ * @memberof HospitalModel
6242
+ */
6243
+ 'hospitalWorkingDays'?: Array<WorkingDay> | null;
6244
+ /**
6245
+ *
6246
+ * @type {Array<SnsHandle>}
6247
+ * @memberof HospitalModel
6248
+ */
6249
+ 'hospitalSnsHandles'?: Array<SnsHandle> | null;
6031
6250
  }
6032
6251
  /**
6033
6252
  *
@@ -6167,6 +6386,12 @@ export interface HospitalServiceItemModel {
6167
6386
  * @memberof HospitalServiceItemModel
6168
6387
  */
6169
6388
  'order'?: number;
6389
+ /**
6390
+ *
6391
+ * @type {Array<LocalizedUrlModel>}
6392
+ * @memberof HospitalServiceItemModel
6393
+ */
6394
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6170
6395
  /**
6171
6396
  *
6172
6397
  * @type {boolean}
@@ -6336,6 +6561,12 @@ export interface HospitalServiceModel {
6336
6561
  * @memberof HospitalServiceModel
6337
6562
  */
6338
6563
  'order'?: number;
6564
+ /**
6565
+ *
6566
+ * @type {Array<LocalizedUrlModel>}
6567
+ * @memberof HospitalServiceModel
6568
+ */
6569
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6339
6570
  /**
6340
6571
  *
6341
6572
  * @type {boolean}
@@ -6417,6 +6648,25 @@ export interface HospitalSimpleItemModel {
6417
6648
  */
6418
6649
  'confirmed'?: boolean;
6419
6650
  }
6651
+ /**
6652
+ *
6653
+ * @export
6654
+ * @interface HospitalSnsHandlesModel
6655
+ */
6656
+ export interface HospitalSnsHandlesModel {
6657
+ /**
6658
+ *
6659
+ * @type {Array<SnsHandleModel>}
6660
+ * @memberof HospitalSnsHandlesModel
6661
+ */
6662
+ 'items'?: Array<SnsHandleModel> | null;
6663
+ /**
6664
+ *
6665
+ * @type {PagedListMetaData}
6666
+ * @memberof HospitalSnsHandlesModel
6667
+ */
6668
+ 'metaData'?: PagedListMetaData;
6669
+ }
6420
6670
  /**
6421
6671
  *
6422
6672
  * @export
@@ -6593,6 +6843,12 @@ export interface HospitalSpecialtyItemModel {
6593
6843
  * @memberof HospitalSpecialtyItemModel
6594
6844
  */
6595
6845
  'backgroundThumbnail'?: string | null;
6846
+ /**
6847
+ *
6848
+ * @type {Array<LocalizedUrlModel>}
6849
+ * @memberof HospitalSpecialtyItemModel
6850
+ */
6851
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6596
6852
  /**
6597
6853
  *
6598
6854
  * @type {Array<MediaModel>}
@@ -6744,6 +7000,12 @@ export interface HospitalSpecialtyModel {
6744
7000
  * @memberof HospitalSpecialtyModel
6745
7001
  */
6746
7002
  'backgroundThumbnail'?: string | null;
7003
+ /**
7004
+ *
7005
+ * @type {Array<LocalizedUrlModel>}
7006
+ * @memberof HospitalSpecialtyModel
7007
+ */
7008
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6747
7009
  /**
6748
7010
  *
6749
7011
  * @type {Array<MediaModel>}
@@ -6805,6 +7067,12 @@ export interface HospitalSpecialtySimpleItemModel {
6805
7067
  * @memberof HospitalSpecialtySimpleItemModel
6806
7068
  */
6807
7069
  'confirmed'?: boolean;
7070
+ /**
7071
+ *
7072
+ * @type {Array<LocalizedUrlModel>}
7073
+ * @memberof HospitalSpecialtySimpleItemModel
7074
+ */
7075
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6808
7076
  }
6809
7077
  /**
6810
7078
  *
@@ -8535,6 +8803,31 @@ export interface ServiceReviewsModel {
8535
8803
  */
8536
8804
  'metaData'?: PagedListMetaData;
8537
8805
  }
8806
+ /**
8807
+ *
8808
+ * @export
8809
+ * @interface SnsHandle
8810
+ */
8811
+ export interface SnsHandle {
8812
+ /**
8813
+ *
8814
+ * @type {string}
8815
+ * @memberof SnsHandle
8816
+ */
8817
+ 'id'?: string;
8818
+ /**
8819
+ *
8820
+ * @type {SnsType}
8821
+ * @memberof SnsHandle
8822
+ */
8823
+ 'snsType'?: SnsType;
8824
+ /**
8825
+ *
8826
+ * @type {string}
8827
+ * @memberof SnsHandle
8828
+ */
8829
+ 'handle'?: string | null;
8830
+ }
8538
8831
  /**
8539
8832
  *
8540
8833
  * @export
@@ -8568,7 +8861,9 @@ export interface SnsHandleModel {
8568
8861
  export declare enum SnsType {
8569
8862
  Twitter = "Twitter",
8570
8863
  Facebook = "Facebook",
8571
- Instagram = "Instagram"
8864
+ Instagram = "Instagram",
8865
+ LinkedIn = "LinkedIn",
8866
+ Youtube = "Youtube"
8572
8867
  }
8573
8868
  /**
8574
8869
  *
@@ -8686,6 +8981,12 @@ export interface SpecialtyItemModel {
8686
8981
  * @memberof SpecialtyItemModel
8687
8982
  */
8688
8983
  'confirmed'?: boolean;
8984
+ /**
8985
+ *
8986
+ * @type {Array<LocalizedUrlModel>}
8987
+ * @memberof SpecialtyItemModel
8988
+ */
8989
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
8689
8990
  /**
8690
8991
  *
8691
8992
  * @type {AuditableEntity}
@@ -8771,6 +9072,12 @@ export interface SpecialtyModel {
8771
9072
  * @memberof SpecialtyModel
8772
9073
  */
8773
9074
  'confirmed'?: boolean;
9075
+ /**
9076
+ *
9077
+ * @type {Array<LocalizedUrlModel>}
9078
+ * @memberof SpecialtyModel
9079
+ */
9080
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
8774
9081
  /**
8775
9082
  *
8776
9083
  * @type {AuditableEntity}
@@ -9707,14 +10014,341 @@ export interface UserModel {
9707
10014
  'locations'?: Array<UserLocationModel> | null;
9708
10015
  }
9709
10016
  /**
9710
- * AccreditationsApi - axios parameter creator
10017
+ *
9711
10018
  * @export
10019
+ * @interface WorkingDay
9712
10020
  */
9713
- export declare const AccreditationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
10021
+ export interface WorkingDay {
9714
10022
  /**
9715
10023
  *
9716
- * @summary Get Accreditation.
9717
- * @param {string} accreditationId
10024
+ * @type {string}
10025
+ * @memberof WorkingDay
10026
+ */
10027
+ 'id'?: string;
10028
+ /**
10029
+ *
10030
+ * @type {string}
10031
+ * @memberof WorkingDay
10032
+ */
10033
+ 'dayOfWeek'?: string | null;
10034
+ /**
10035
+ *
10036
+ * @type {Date}
10037
+ * @memberof WorkingDay
10038
+ */
10039
+ 'timeFrom'?: Date;
10040
+ /**
10041
+ *
10042
+ * @type {Date}
10043
+ * @memberof WorkingDay
10044
+ */
10045
+ 'timeTo'?: Date;
10046
+ /**
10047
+ *
10048
+ * @type {boolean}
10049
+ * @memberof WorkingDay
10050
+ */
10051
+ 'checkHoliday'?: boolean;
10052
+ }
10053
+ /**
10054
+ *
10055
+ * @export
10056
+ * @interface WorkingDayItemModel
10057
+ */
10058
+ export interface WorkingDayItemModel {
10059
+ /**
10060
+ *
10061
+ * @type {string}
10062
+ * @memberof WorkingDayItemModel
10063
+ */
10064
+ 'id'?: string;
10065
+ /**
10066
+ *
10067
+ * @type {string}
10068
+ * @memberof WorkingDayItemModel
10069
+ */
10070
+ 'dayOfWeek'?: string | null;
10071
+ /**
10072
+ *
10073
+ * @type {Date}
10074
+ * @memberof WorkingDayItemModel
10075
+ */
10076
+ 'timeFrom'?: Date;
10077
+ /**
10078
+ *
10079
+ * @type {Date}
10080
+ * @memberof WorkingDayItemModel
10081
+ */
10082
+ 'timeTo'?: Date;
10083
+ /**
10084
+ *
10085
+ * @type {boolean}
10086
+ * @memberof WorkingDayItemModel
10087
+ */
10088
+ 'checkHoliday'?: boolean;
10089
+ }
10090
+ /**
10091
+ *
10092
+ * @export
10093
+ * @interface WorkingDayModel
10094
+ */
10095
+ export interface WorkingDayModel {
10096
+ /**
10097
+ *
10098
+ * @type {string}
10099
+ * @memberof WorkingDayModel
10100
+ */
10101
+ 'id'?: string;
10102
+ /**
10103
+ *
10104
+ * @type {string}
10105
+ * @memberof WorkingDayModel
10106
+ */
10107
+ 'dayOfWeek'?: string | null;
10108
+ /**
10109
+ *
10110
+ * @type {Date}
10111
+ * @memberof WorkingDayModel
10112
+ */
10113
+ 'timeFrom'?: Date;
10114
+ /**
10115
+ *
10116
+ * @type {Date}
10117
+ * @memberof WorkingDayModel
10118
+ */
10119
+ 'timeTo'?: Date;
10120
+ /**
10121
+ *
10122
+ * @type {boolean}
10123
+ * @memberof WorkingDayModel
10124
+ */
10125
+ 'checkHoliday'?: boolean;
10126
+ }
10127
+ /**
10128
+ *
10129
+ * @export
10130
+ * @interface WorkingDaysModel
10131
+ */
10132
+ export interface WorkingDaysModel {
10133
+ /**
10134
+ *
10135
+ * @type {Array<WorkingDayItemModel>}
10136
+ * @memberof WorkingDaysModel
10137
+ */
10138
+ 'items'?: Array<WorkingDayItemModel> | null;
10139
+ /**
10140
+ *
10141
+ * @type {PagedListMetaData}
10142
+ * @memberof WorkingDaysModel
10143
+ */
10144
+ 'metaData'?: PagedListMetaData;
10145
+ }
10146
+ /**
10147
+ * AboutUsApi - axios parameter creator
10148
+ * @export
10149
+ */
10150
+ export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
10151
+ /**
10152
+ *
10153
+ * @summary Get all AboutUsList.
10154
+ * @param {string} [hospitalId]
10155
+ * @param {string} [hospitalName]
10156
+ * @param {string} [hospitalSlug]
10157
+ * @param {string} [overviewTitle]
10158
+ * @param {string} [normalizedOverviewTitle]
10159
+ * @param {string} [overview]
10160
+ * @param {string} [content]
10161
+ * @param {string} [customStyle]
10162
+ * @param {string} [background]
10163
+ * @param {string} [backgroundThumbnail]
10164
+ * @param {string} [languageCode]
10165
+ * @param {boolean} [returnDefaultValue]
10166
+ * @param {boolean} [confirmed]
10167
+ * @param {number} [page]
10168
+ * @param {number} [limit]
10169
+ * @param {Date} [lastRetrieved]
10170
+ * @param {*} [options] Override http request option.
10171
+ * @throws {RequiredError}
10172
+ */
10173
+ apiV2AboutusGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10174
+ /**
10175
+ *
10176
+ * @summary Get AboutUs.
10177
+ * @param {string} hospitalId
10178
+ * @param {string} [languageCode]
10179
+ * @param {boolean} [returnDefaultValue]
10180
+ * @param {*} [options] Override http request option.
10181
+ * @throws {RequiredError}
10182
+ */
10183
+ apiV2AboutusHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10184
+ /**
10185
+ *
10186
+ * @param {string} slug
10187
+ * @param {string} [languageCode]
10188
+ * @param {boolean} [returnDefaultValue]
10189
+ * @param {*} [options] Override http request option.
10190
+ * @throws {RequiredError}
10191
+ */
10192
+ apiV2AboutusSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10193
+ };
10194
+ /**
10195
+ * AboutUsApi - functional programming interface
10196
+ * @export
10197
+ */
10198
+ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) => {
10199
+ /**
10200
+ *
10201
+ * @summary Get all AboutUsList.
10202
+ * @param {string} [hospitalId]
10203
+ * @param {string} [hospitalName]
10204
+ * @param {string} [hospitalSlug]
10205
+ * @param {string} [overviewTitle]
10206
+ * @param {string} [normalizedOverviewTitle]
10207
+ * @param {string} [overview]
10208
+ * @param {string} [content]
10209
+ * @param {string} [customStyle]
10210
+ * @param {string} [background]
10211
+ * @param {string} [backgroundThumbnail]
10212
+ * @param {string} [languageCode]
10213
+ * @param {boolean} [returnDefaultValue]
10214
+ * @param {boolean} [confirmed]
10215
+ * @param {number} [page]
10216
+ * @param {number} [limit]
10217
+ * @param {Date} [lastRetrieved]
10218
+ * @param {*} [options] Override http request option.
10219
+ * @throws {RequiredError}
10220
+ */
10221
+ apiV2AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPagesModel>>;
10222
+ /**
10223
+ *
10224
+ * @summary Get AboutUs.
10225
+ * @param {string} hospitalId
10226
+ * @param {string} [languageCode]
10227
+ * @param {boolean} [returnDefaultValue]
10228
+ * @param {*} [options] Override http request option.
10229
+ * @throws {RequiredError}
10230
+ */
10231
+ apiV2AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
10232
+ /**
10233
+ *
10234
+ * @param {string} slug
10235
+ * @param {string} [languageCode]
10236
+ * @param {boolean} [returnDefaultValue]
10237
+ * @param {*} [options] Override http request option.
10238
+ * @throws {RequiredError}
10239
+ */
10240
+ apiV2AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
10241
+ };
10242
+ /**
10243
+ * AboutUsApi - factory interface
10244
+ * @export
10245
+ */
10246
+ export declare const AboutUsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
10247
+ /**
10248
+ *
10249
+ * @summary Get all AboutUsList.
10250
+ * @param {string} [hospitalId]
10251
+ * @param {string} [hospitalName]
10252
+ * @param {string} [hospitalSlug]
10253
+ * @param {string} [overviewTitle]
10254
+ * @param {string} [normalizedOverviewTitle]
10255
+ * @param {string} [overview]
10256
+ * @param {string} [content]
10257
+ * @param {string} [customStyle]
10258
+ * @param {string} [background]
10259
+ * @param {string} [backgroundThumbnail]
10260
+ * @param {string} [languageCode]
10261
+ * @param {boolean} [returnDefaultValue]
10262
+ * @param {boolean} [confirmed]
10263
+ * @param {number} [page]
10264
+ * @param {number} [limit]
10265
+ * @param {Date} [lastRetrieved]
10266
+ * @param {*} [options] Override http request option.
10267
+ * @throws {RequiredError}
10268
+ */
10269
+ apiV2AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AboutUsPagesModel>;
10270
+ /**
10271
+ *
10272
+ * @summary Get AboutUs.
10273
+ * @param {string} hospitalId
10274
+ * @param {string} [languageCode]
10275
+ * @param {boolean} [returnDefaultValue]
10276
+ * @param {*} [options] Override http request option.
10277
+ * @throws {RequiredError}
10278
+ */
10279
+ apiV2AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
10280
+ /**
10281
+ *
10282
+ * @param {string} slug
10283
+ * @param {string} [languageCode]
10284
+ * @param {boolean} [returnDefaultValue]
10285
+ * @param {*} [options] Override http request option.
10286
+ * @throws {RequiredError}
10287
+ */
10288
+ apiV2AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
10289
+ };
10290
+ /**
10291
+ * AboutUsApi - object-oriented interface
10292
+ * @export
10293
+ * @class AboutUsApi
10294
+ * @extends {BaseAPI}
10295
+ */
10296
+ export declare class AboutUsApi extends BaseAPI {
10297
+ /**
10298
+ *
10299
+ * @summary Get all AboutUsList.
10300
+ * @param {string} [hospitalId]
10301
+ * @param {string} [hospitalName]
10302
+ * @param {string} [hospitalSlug]
10303
+ * @param {string} [overviewTitle]
10304
+ * @param {string} [normalizedOverviewTitle]
10305
+ * @param {string} [overview]
10306
+ * @param {string} [content]
10307
+ * @param {string} [customStyle]
10308
+ * @param {string} [background]
10309
+ * @param {string} [backgroundThumbnail]
10310
+ * @param {string} [languageCode]
10311
+ * @param {boolean} [returnDefaultValue]
10312
+ * @param {boolean} [confirmed]
10313
+ * @param {number} [page]
10314
+ * @param {number} [limit]
10315
+ * @param {Date} [lastRetrieved]
10316
+ * @param {*} [options] Override http request option.
10317
+ * @throws {RequiredError}
10318
+ * @memberof AboutUsApi
10319
+ */
10320
+ apiV2AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, overviewTitle?: string, normalizedOverviewTitle?: string, overview?: string, content?: string, customStyle?: string, background?: string, backgroundThumbnail?: string, languageCode?: string, returnDefaultValue?: boolean, confirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPagesModel, any>>;
10321
+ /**
10322
+ *
10323
+ * @summary Get AboutUs.
10324
+ * @param {string} hospitalId
10325
+ * @param {string} [languageCode]
10326
+ * @param {boolean} [returnDefaultValue]
10327
+ * @param {*} [options] Override http request option.
10328
+ * @throws {RequiredError}
10329
+ * @memberof AboutUsApi
10330
+ */
10331
+ apiV2AboutusHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel, any>>;
10332
+ /**
10333
+ *
10334
+ * @param {string} slug
10335
+ * @param {string} [languageCode]
10336
+ * @param {boolean} [returnDefaultValue]
10337
+ * @param {*} [options] Override http request option.
10338
+ * @throws {RequiredError}
10339
+ * @memberof AboutUsApi
10340
+ */
10341
+ apiV2AboutusSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel, any>>;
10342
+ }
10343
+ /**
10344
+ * AccreditationsApi - axios parameter creator
10345
+ * @export
10346
+ */
10347
+ export declare const AccreditationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
10348
+ /**
10349
+ *
10350
+ * @summary Get Accreditation.
10351
+ * @param {string} accreditationId
9718
10352
  * @param {*} [options] Override http request option.
9719
10353
  * @throws {RequiredError}
9720
10354
  */
@@ -9937,6 +10571,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
9937
10571
  * @param {string} [hospitalName]
9938
10572
  * @param {string} [countryId]
9939
10573
  * @param {string} [tag]
10574
+ * @param {string} [exceptArticleId]
9940
10575
  * @param {string} [exceptHospitalId]
9941
10576
  * @param {string} [contributorId]
9942
10577
  * @param {string} [languageCode]
@@ -9948,7 +10583,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
9948
10583
  * @param {*} [options] Override http request option.
9949
10584
  * @throws {RequiredError}
9950
10585
  */
9951
- apiV2ArticlesGet: (id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10586
+ apiV2ArticlesGet: (id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9952
10587
  /**
9953
10588
  *
9954
10589
  * @param {string} slug
@@ -10078,6 +10713,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
10078
10713
  * @param {string} [hospitalName]
10079
10714
  * @param {string} [countryId]
10080
10715
  * @param {string} [tag]
10716
+ * @param {string} [exceptArticleId]
10081
10717
  * @param {string} [exceptHospitalId]
10082
10718
  * @param {string} [contributorId]
10083
10719
  * @param {string} [languageCode]
@@ -10089,7 +10725,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
10089
10725
  * @param {*} [options] Override http request option.
10090
10726
  * @throws {RequiredError}
10091
10727
  */
10092
- apiV2ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
10728
+ apiV2ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
10093
10729
  /**
10094
10730
  *
10095
10731
  * @param {string} slug
@@ -10219,6 +10855,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
10219
10855
  * @param {string} [hospitalName]
10220
10856
  * @param {string} [countryId]
10221
10857
  * @param {string} [tag]
10858
+ * @param {string} [exceptArticleId]
10222
10859
  * @param {string} [exceptHospitalId]
10223
10860
  * @param {string} [contributorId]
10224
10861
  * @param {string} [languageCode]
@@ -10230,7 +10867,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
10230
10867
  * @param {*} [options] Override http request option.
10231
10868
  * @throws {RequiredError}
10232
10869
  */
10233
- apiV2ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
10870
+ apiV2ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
10234
10871
  /**
10235
10872
  *
10236
10873
  * @param {string} slug
@@ -10371,6 +11008,7 @@ export declare class ArticlesApi extends BaseAPI {
10371
11008
  * @param {string} [hospitalName]
10372
11009
  * @param {string} [countryId]
10373
11010
  * @param {string} [tag]
11011
+ * @param {string} [exceptArticleId]
10374
11012
  * @param {string} [exceptHospitalId]
10375
11013
  * @param {string} [contributorId]
10376
11014
  * @param {string} [languageCode]
@@ -10383,7 +11021,7 @@ export declare class ArticlesApi extends BaseAPI {
10383
11021
  * @throws {RequiredError}
10384
11022
  * @memberof ArticlesApi
10385
11023
  */
10386
- apiV2ArticlesGet(id?: string, title?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel, any>>;
11024
+ apiV2ArticlesGet(id?: string, title?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel, any>>;
10387
11025
  /**
10388
11026
  *
10389
11027
  * @param {string} slug
@@ -14165,6 +14803,30 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14165
14803
  * @throws {RequiredError}
14166
14804
  */
14167
14805
  apiV2HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14806
+ /**
14807
+ *
14808
+ * @summary Get all HospitalHandles.
14809
+ * @param {string} hospitalId
14810
+ * @param {string} [hospitalId2]
14811
+ * @param {string} [id]
14812
+ * @param {SnsType} [snsType]
14813
+ * @param {string} [handle]
14814
+ * @param {number} [page]
14815
+ * @param {number} [limit]
14816
+ * @param {Date} [lastRetrieved]
14817
+ * @param {*} [options] Override http request option.
14818
+ * @throws {RequiredError}
14819
+ */
14820
+ apiV2HospitalsHospitalIdHandlesGet: (hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14821
+ /**
14822
+ *
14823
+ * @summary Get HospitalHandle.
14824
+ * @param {string} hospitalId
14825
+ * @param {string} handleId
14826
+ * @param {*} [options] Override http request option.
14827
+ * @throws {RequiredError}
14828
+ */
14829
+ apiV2HospitalsHospitalIdHandlesHandleIdGet: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14168
14830
  /**
14169
14831
  *
14170
14832
  * @summary Get all HospitalMedias.
@@ -14309,6 +14971,32 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14309
14971
  * @throws {RequiredError}
14310
14972
  */
14311
14973
  apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14974
+ /**
14975
+ *
14976
+ * @summary Get all HospitalWorkingDays.
14977
+ * @param {string} hospitalId
14978
+ * @param {string} [hospitalId2]
14979
+ * @param {string} [id]
14980
+ * @param {string} [dayOfWeek]
14981
+ * @param {Date} [timeFrom]
14982
+ * @param {Date} [timeTo]
14983
+ * @param {boolean} [checkHoliday]
14984
+ * @param {number} [page]
14985
+ * @param {number} [limit]
14986
+ * @param {Date} [lastRetrieved]
14987
+ * @param {*} [options] Override http request option.
14988
+ * @throws {RequiredError}
14989
+ */
14990
+ apiV2HospitalsHospitalIdWorkingdaysGet: (hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14991
+ /**
14992
+ *
14993
+ * @summary Get HospitalWorkingDay.
14994
+ * @param {string} hospitalId
14995
+ * @param {string} workingDayId
14996
+ * @param {*} [options] Override http request option.
14997
+ * @throws {RequiredError}
14998
+ */
14999
+ apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet: (hospitalId: string, workingDayId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14312
15000
  /**
14313
15001
  *
14314
15002
  * @summary Get all Hospitals.
@@ -14475,6 +15163,30 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
14475
15163
  * @throws {RequiredError}
14476
15164
  */
14477
15165
  apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
15166
+ /**
15167
+ *
15168
+ * @summary Get all HospitalHandles.
15169
+ * @param {string} hospitalId
15170
+ * @param {string} [hospitalId2]
15171
+ * @param {string} [id]
15172
+ * @param {SnsType} [snsType]
15173
+ * @param {string} [handle]
15174
+ * @param {number} [page]
15175
+ * @param {number} [limit]
15176
+ * @param {Date} [lastRetrieved]
15177
+ * @param {*} [options] Override http request option.
15178
+ * @throws {RequiredError}
15179
+ */
15180
+ apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSnsHandlesModel>>;
15181
+ /**
15182
+ *
15183
+ * @summary Get HospitalHandle.
15184
+ * @param {string} hospitalId
15185
+ * @param {string} handleId
15186
+ * @param {*} [options] Override http request option.
15187
+ * @throws {RequiredError}
15188
+ */
15189
+ apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
14478
15190
  /**
14479
15191
  *
14480
15192
  * @summary Get all HospitalMedias.
@@ -14619,6 +15331,32 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
14619
15331
  * @throws {RequiredError}
14620
15332
  */
14621
15333
  apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
15334
+ /**
15335
+ *
15336
+ * @summary Get all HospitalWorkingDays.
15337
+ * @param {string} hospitalId
15338
+ * @param {string} [hospitalId2]
15339
+ * @param {string} [id]
15340
+ * @param {string} [dayOfWeek]
15341
+ * @param {Date} [timeFrom]
15342
+ * @param {Date} [timeTo]
15343
+ * @param {boolean} [checkHoliday]
15344
+ * @param {number} [page]
15345
+ * @param {number} [limit]
15346
+ * @param {Date} [lastRetrieved]
15347
+ * @param {*} [options] Override http request option.
15348
+ * @throws {RequiredError}
15349
+ */
15350
+ apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDaysModel>>;
15351
+ /**
15352
+ *
15353
+ * @summary Get HospitalWorkingDay.
15354
+ * @param {string} hospitalId
15355
+ * @param {string} workingDayId
15356
+ * @param {*} [options] Override http request option.
15357
+ * @throws {RequiredError}
15358
+ */
15359
+ apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
14622
15360
  /**
14623
15361
  *
14624
15362
  * @summary Get all Hospitals.
@@ -14785,6 +15523,30 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
14785
15523
  * @throws {RequiredError}
14786
15524
  */
14787
15525
  apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
15526
+ /**
15527
+ *
15528
+ * @summary Get all HospitalHandles.
15529
+ * @param {string} hospitalId
15530
+ * @param {string} [hospitalId2]
15531
+ * @param {string} [id]
15532
+ * @param {SnsType} [snsType]
15533
+ * @param {string} [handle]
15534
+ * @param {number} [page]
15535
+ * @param {number} [limit]
15536
+ * @param {Date} [lastRetrieved]
15537
+ * @param {*} [options] Override http request option.
15538
+ * @throws {RequiredError}
15539
+ */
15540
+ apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSnsHandlesModel>;
15541
+ /**
15542
+ *
15543
+ * @summary Get HospitalHandle.
15544
+ * @param {string} hospitalId
15545
+ * @param {string} handleId
15546
+ * @param {*} [options] Override http request option.
15547
+ * @throws {RequiredError}
15548
+ */
15549
+ apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
14788
15550
  /**
14789
15551
  *
14790
15552
  * @summary Get all HospitalMedias.
@@ -14929,6 +15691,32 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
14929
15691
  * @throws {RequiredError}
14930
15692
  */
14931
15693
  apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
15694
+ /**
15695
+ *
15696
+ * @summary Get all HospitalWorkingDays.
15697
+ * @param {string} hospitalId
15698
+ * @param {string} [hospitalId2]
15699
+ * @param {string} [id]
15700
+ * @param {string} [dayOfWeek]
15701
+ * @param {Date} [timeFrom]
15702
+ * @param {Date} [timeTo]
15703
+ * @param {boolean} [checkHoliday]
15704
+ * @param {number} [page]
15705
+ * @param {number} [limit]
15706
+ * @param {Date} [lastRetrieved]
15707
+ * @param {*} [options] Override http request option.
15708
+ * @throws {RequiredError}
15709
+ */
15710
+ apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<WorkingDaysModel>;
15711
+ /**
15712
+ *
15713
+ * @summary Get HospitalWorkingDay.
15714
+ * @param {string} hospitalId
15715
+ * @param {string} workingDayId
15716
+ * @param {*} [options] Override http request option.
15717
+ * @throws {RequiredError}
15718
+ */
15719
+ apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: any): AxiosPromise<WorkingDayModel>;
14932
15720
  /**
14933
15721
  *
14934
15722
  * @summary Get all Hospitals.
@@ -15107,6 +15895,32 @@ export declare class HospitalsApi extends BaseAPI {
15107
15895
  * @memberof HospitalsApi
15108
15896
  */
15109
15897
  apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel, any>>;
15898
+ /**
15899
+ *
15900
+ * @summary Get all HospitalHandles.
15901
+ * @param {string} hospitalId
15902
+ * @param {string} [hospitalId2]
15903
+ * @param {string} [id]
15904
+ * @param {SnsType} [snsType]
15905
+ * @param {string} [handle]
15906
+ * @param {number} [page]
15907
+ * @param {number} [limit]
15908
+ * @param {Date} [lastRetrieved]
15909
+ * @param {*} [options] Override http request option.
15910
+ * @throws {RequiredError}
15911
+ * @memberof HospitalsApi
15912
+ */
15913
+ apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel, any>>;
15914
+ /**
15915
+ *
15916
+ * @summary Get HospitalHandle.
15917
+ * @param {string} hospitalId
15918
+ * @param {string} handleId
15919
+ * @param {*} [options] Override http request option.
15920
+ * @throws {RequiredError}
15921
+ * @memberof HospitalsApi
15922
+ */
15923
+ apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel, any>>;
15110
15924
  /**
15111
15925
  *
15112
15926
  * @summary Get all HospitalMedias.
@@ -15260,6 +16074,34 @@ export declare class HospitalsApi extends BaseAPI {
15260
16074
  * @memberof HospitalsApi
15261
16075
  */
15262
16076
  apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
16077
+ /**
16078
+ *
16079
+ * @summary Get all HospitalWorkingDays.
16080
+ * @param {string} hospitalId
16081
+ * @param {string} [hospitalId2]
16082
+ * @param {string} [id]
16083
+ * @param {string} [dayOfWeek]
16084
+ * @param {Date} [timeFrom]
16085
+ * @param {Date} [timeTo]
16086
+ * @param {boolean} [checkHoliday]
16087
+ * @param {number} [page]
16088
+ * @param {number} [limit]
16089
+ * @param {Date} [lastRetrieved]
16090
+ * @param {*} [options] Override http request option.
16091
+ * @throws {RequiredError}
16092
+ * @memberof HospitalsApi
16093
+ */
16094
+ apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDaysModel, any>>;
16095
+ /**
16096
+ *
16097
+ * @summary Get HospitalWorkingDay.
16098
+ * @param {string} hospitalId
16099
+ * @param {string} workingDayId
16100
+ * @param {*} [options] Override http request option.
16101
+ * @throws {RequiredError}
16102
+ * @memberof HospitalsApi
16103
+ */
16104
+ apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel, any>>;
15263
16105
  /**
15264
16106
  *
15265
16107
  * @summary Get all Hospitals.