ch-api-client-typescript2 5.76.1 → 5.76.10

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.
Files changed (42) hide show
  1. package/lib/api/general-articles-api.d.ts +993 -0
  2. package/lib/api/general-articles-api.d.ts.map +1 -0
  3. package/lib/api/general-articles-api.js +1308 -0
  4. package/lib/api.d.ts +1 -0
  5. package/lib/api.d.ts.map +1 -1
  6. package/lib/api.js +1 -0
  7. package/lib/models/article-category-document-model.d.ts +308 -0
  8. package/lib/models/article-category-document-model.d.ts.map +1 -0
  9. package/lib/models/article-category-document-model.js +15 -0
  10. package/lib/models/article-document-model.d.ts +19 -0
  11. package/lib/models/article-document-model.d.ts.map +1 -1
  12. package/lib/models/general-article-contributor-item-model.d.ts +92 -0
  13. package/lib/models/general-article-contributor-item-model.d.ts.map +1 -0
  14. package/lib/models/general-article-contributor-item-model.js +15 -0
  15. package/lib/models/general-article-contributor-model.d.ts +117 -0
  16. package/lib/models/general-article-contributor-model.d.ts.map +1 -0
  17. package/lib/models/general-article-contributor-model.js +15 -0
  18. package/lib/models/general-article-contributors-model.d.ts +33 -0
  19. package/lib/models/general-article-contributors-model.d.ts.map +1 -0
  20. package/lib/models/general-article-contributors-model.js +15 -0
  21. package/lib/models/general-article-item-model.d.ts +156 -0
  22. package/lib/models/general-article-item-model.d.ts.map +1 -0
  23. package/lib/models/general-article-item-model.js +15 -0
  24. package/lib/models/general-article-model.d.ts +180 -0
  25. package/lib/models/general-article-model.d.ts.map +1 -0
  26. package/lib/models/general-article-model.js +15 -0
  27. package/lib/models/general-article-sources-model.d.ts +33 -0
  28. package/lib/models/general-article-sources-model.d.ts.map +1 -0
  29. package/lib/models/general-article-sources-model.js +15 -0
  30. package/lib/models/general-article-tag-item-model.d.ts +31 -0
  31. package/lib/models/general-article-tag-item-model.d.ts.map +1 -0
  32. package/lib/models/general-article-tag-item-model.js +15 -0
  33. package/lib/models/general-article-tags-model.d.ts +33 -0
  34. package/lib/models/general-article-tags-model.d.ts.map +1 -0
  35. package/lib/models/general-article-tags-model.js +15 -0
  36. package/lib/models/general-articles-model.d.ts +33 -0
  37. package/lib/models/general-articles-model.d.ts.map +1 -0
  38. package/lib/models/general-articles-model.js +15 -0
  39. package/lib/models/index.d.ts +10 -0
  40. package/lib/models/index.d.ts.map +1 -1
  41. package/lib/models/index.js +10 -0
  42. package/package.json +1 -1
@@ -0,0 +1,993 @@
1
+ /**
2
+ * CloudHospital Api
3
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 2
6
+ * Contact: developer@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
+ import { Configuration } from '../configuration';
14
+ import { RequestArgs, BaseAPI } from '../base';
15
+ import { ArticleStatus } from '../models';
16
+ import { ArticleType } from '../models';
17
+ import { ContributionType } from '../models';
18
+ import { GeneralArticleContributorModel } from '../models';
19
+ import { GeneralArticleContributorsModel } from '../models';
20
+ import { GeneralArticleModel } from '../models';
21
+ import { GeneralArticleSourcesModel } from '../models';
22
+ import { GeneralArticleTagItemModel } from '../models';
23
+ import { GeneralArticleTagsModel } from '../models';
24
+ import { GeneralArticlesModel } from '../models';
25
+ import { MediaModel } from '../models';
26
+ import { MediaType } from '../models';
27
+ import { MediasModel } from '../models';
28
+ import { SourceModel } from '../models';
29
+ /**
30
+ * GeneralArticlesApi - axios parameter creator
31
+ * @export
32
+ */
33
+ export declare const GeneralArticlesApiAxiosParamCreator: (configuration?: Configuration) => {
34
+ /**
35
+ *
36
+ * @summary Get GeneralArticleContributor.
37
+ * @param {string} generalArticleId
38
+ * @param {string} contributorId
39
+ * @param {*} [options] Override http request option.
40
+ * @throws {RequiredError}
41
+ */
42
+ apiV2GeneralarticlesGeneralArticleIdContributorsContributorIdGet: (generalArticleId: string, contributorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
43
+ /**
44
+ *
45
+ * @summary GetAll GeneralArticleContributors.
46
+ * @param {string} generalArticleId
47
+ * @param {string} [languageCode]
48
+ * @param {string} [contributorId]
49
+ * @param {string} [contributorName]
50
+ * @param {string} [email]
51
+ * @param {string} [website]
52
+ * @param {ContributionType} [contributionType]
53
+ * @param {number} [page]
54
+ * @param {number} [limit]
55
+ * @param {Date} [lastRetrieved]
56
+ * @param {*} [options] Override http request option.
57
+ * @throws {RequiredError}
58
+ */
59
+ apiV2GeneralarticlesGeneralArticleIdContributorsGet: (generalArticleId: string, languageCode?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
60
+ /**
61
+ *
62
+ * @summary Get GeneralArticle by id.
63
+ * @param {string} generalArticleId
64
+ * @param {string} [languageCode]
65
+ * @param {*} [options] Override http request option.
66
+ * @throws {RequiredError}
67
+ */
68
+ apiV2GeneralarticlesGeneralArticleIdGet: (generalArticleId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
69
+ /**
70
+ *
71
+ * @summary Get all GeneralArticleMedias.
72
+ * @param {string} generalArticleId
73
+ * @param {string} [id]
74
+ * @param {MediaType} [mediaType]
75
+ * @param {number} [page]
76
+ * @param {number} [limit]
77
+ * @param {Date} [lastRetrieved]
78
+ * @param {*} [options] Override http request option.
79
+ * @throws {RequiredError}
80
+ */
81
+ apiV2GeneralarticlesGeneralArticleIdMediasGet: (generalArticleId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
82
+ /**
83
+ *
84
+ * @summary Get GeneralArticleMedia.
85
+ * @param {string} generalArticleId
86
+ * @param {string} mediaId
87
+ * @param {*} [options] Override http request option.
88
+ * @throws {RequiredError}
89
+ */
90
+ apiV2GeneralarticlesGeneralArticleIdMediasMediaIdGet: (generalArticleId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
91
+ /**
92
+ *
93
+ * @summary Get all GeneralArticleSource.
94
+ * @param {string} generalArticleId
95
+ * @param {number} [page]
96
+ * @param {number} [limit]
97
+ * @param {Date} [lastRetrieved]
98
+ * @param {*} [options] Override http request option.
99
+ * @throws {RequiredError}
100
+ */
101
+ apiV2GeneralarticlesGeneralArticleIdSourcesGet: (generalArticleId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
102
+ /**
103
+ *
104
+ * @summary Get GeneralArticleSource.
105
+ * @param {string} generalArticleId
106
+ * @param {string} sourceId
107
+ * @param {*} [options] Override http request option.
108
+ * @throws {RequiredError}
109
+ */
110
+ apiV2GeneralarticlesGeneralArticleIdSourcesSourceIdGet: (generalArticleId: string, sourceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
111
+ /**
112
+ *
113
+ * @summary GetAll GeneralArticleTags.
114
+ * @param {string} generalArticleId
115
+ * @param {string} [tagId]
116
+ * @param {number} [page]
117
+ * @param {number} [limit]
118
+ * @param {Date} [lastRetrieved]
119
+ * @param {*} [options] Override http request option.
120
+ * @throws {RequiredError}
121
+ */
122
+ apiV2GeneralarticlesGeneralArticleIdTagsGet: (generalArticleId: string, tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
123
+ /**
124
+ *
125
+ * @summary Get GeneralArticleTag.
126
+ * @param {string} generalArticleId
127
+ * @param {string} tagId
128
+ * @param {*} [options] Override http request option.
129
+ * @throws {RequiredError}
130
+ */
131
+ apiV2GeneralarticlesGeneralArticleIdTagsTagIdGet: (generalArticleId: string, tagId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
132
+ /**
133
+ *
134
+ * @summary Get all GeneralArticles.
135
+ * @param {string} [id]
136
+ * @param {string} [name]
137
+ * @param {string} [description]
138
+ * @param {ArticleType} [articleType]
139
+ * @param {ArticleStatus} [status]
140
+ * @param {string} [userId]
141
+ * @param {string} [userName]
142
+ * @param {string} [hospitalId]
143
+ * @param {string} [hospitalName]
144
+ * @param {string} [countryId]
145
+ * @param {string} [tag]
146
+ * @param {string} [exceptArticleId]
147
+ * @param {string} [exceptHospitalId]
148
+ * @param {string} [contributorId]
149
+ * @param {string} [articleCategoryId]
150
+ * @param {string} [languageCode]
151
+ * @param {number} [page]
152
+ * @param {number} [limit]
153
+ * @param {Date} [lastRetrieved]
154
+ * @param {*} [options] Override http request option.
155
+ * @throws {RequiredError}
156
+ */
157
+ apiV2GeneralarticlesGet: (id?: string, name?: string, description?: string, articleType?: ArticleType, status?: ArticleStatus, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, articleCategoryId?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
158
+ /**
159
+ *
160
+ * @summary Get GeneralArticle by slug
161
+ * @param {string} slug
162
+ * @param {string} [languageCode]
163
+ * @param {boolean} [returnDefaultValue]
164
+ * @param {string} [previewSecret]
165
+ * @param {string} [hospitalId]
166
+ * @param {*} [options] Override http request option.
167
+ * @throws {RequiredError}
168
+ */
169
+ apiV2GeneralarticlesSlugGet: (slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
170
+ };
171
+ /**
172
+ * GeneralArticlesApi - functional programming interface
173
+ * @export
174
+ */
175
+ export declare const GeneralArticlesApiFp: (configuration?: Configuration) => {
176
+ /**
177
+ *
178
+ * @summary Get GeneralArticleContributor.
179
+ * @param {string} generalArticleId
180
+ * @param {string} contributorId
181
+ * @param {*} [options] Override http request option.
182
+ * @throws {RequiredError}
183
+ */
184
+ apiV2GeneralarticlesGeneralArticleIdContributorsContributorIdGet(generalArticleId: string, contributorId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GeneralArticleContributorModel>>;
185
+ /**
186
+ *
187
+ * @summary GetAll GeneralArticleContributors.
188
+ * @param {string} generalArticleId
189
+ * @param {string} [languageCode]
190
+ * @param {string} [contributorId]
191
+ * @param {string} [contributorName]
192
+ * @param {string} [email]
193
+ * @param {string} [website]
194
+ * @param {ContributionType} [contributionType]
195
+ * @param {number} [page]
196
+ * @param {number} [limit]
197
+ * @param {Date} [lastRetrieved]
198
+ * @param {*} [options] Override http request option.
199
+ * @throws {RequiredError}
200
+ */
201
+ apiV2GeneralarticlesGeneralArticleIdContributorsGet(generalArticleId: string, languageCode?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GeneralArticleContributorsModel>>;
202
+ /**
203
+ *
204
+ * @summary Get GeneralArticle by id.
205
+ * @param {string} generalArticleId
206
+ * @param {string} [languageCode]
207
+ * @param {*} [options] Override http request option.
208
+ * @throws {RequiredError}
209
+ */
210
+ apiV2GeneralarticlesGeneralArticleIdGet(generalArticleId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GeneralArticleModel>>;
211
+ /**
212
+ *
213
+ * @summary Get all GeneralArticleMedias.
214
+ * @param {string} generalArticleId
215
+ * @param {string} [id]
216
+ * @param {MediaType} [mediaType]
217
+ * @param {number} [page]
218
+ * @param {number} [limit]
219
+ * @param {Date} [lastRetrieved]
220
+ * @param {*} [options] Override http request option.
221
+ * @throws {RequiredError}
222
+ */
223
+ apiV2GeneralarticlesGeneralArticleIdMediasGet(generalArticleId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediasModel>>;
224
+ /**
225
+ *
226
+ * @summary Get GeneralArticleMedia.
227
+ * @param {string} generalArticleId
228
+ * @param {string} mediaId
229
+ * @param {*} [options] Override http request option.
230
+ * @throws {RequiredError}
231
+ */
232
+ apiV2GeneralarticlesGeneralArticleIdMediasMediaIdGet(generalArticleId: string, mediaId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
233
+ /**
234
+ *
235
+ * @summary Get all GeneralArticleSource.
236
+ * @param {string} generalArticleId
237
+ * @param {number} [page]
238
+ * @param {number} [limit]
239
+ * @param {Date} [lastRetrieved]
240
+ * @param {*} [options] Override http request option.
241
+ * @throws {RequiredError}
242
+ */
243
+ apiV2GeneralarticlesGeneralArticleIdSourcesGet(generalArticleId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GeneralArticleSourcesModel>>;
244
+ /**
245
+ *
246
+ * @summary Get GeneralArticleSource.
247
+ * @param {string} generalArticleId
248
+ * @param {string} sourceId
249
+ * @param {*} [options] Override http request option.
250
+ * @throws {RequiredError}
251
+ */
252
+ apiV2GeneralarticlesGeneralArticleIdSourcesSourceIdGet(generalArticleId: string, sourceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceModel>>;
253
+ /**
254
+ *
255
+ * @summary GetAll GeneralArticleTags.
256
+ * @param {string} generalArticleId
257
+ * @param {string} [tagId]
258
+ * @param {number} [page]
259
+ * @param {number} [limit]
260
+ * @param {Date} [lastRetrieved]
261
+ * @param {*} [options] Override http request option.
262
+ * @throws {RequiredError}
263
+ */
264
+ apiV2GeneralarticlesGeneralArticleIdTagsGet(generalArticleId: string, tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GeneralArticleTagsModel>>;
265
+ /**
266
+ *
267
+ * @summary Get GeneralArticleTag.
268
+ * @param {string} generalArticleId
269
+ * @param {string} tagId
270
+ * @param {*} [options] Override http request option.
271
+ * @throws {RequiredError}
272
+ */
273
+ apiV2GeneralarticlesGeneralArticleIdTagsTagIdGet(generalArticleId: string, tagId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GeneralArticleTagItemModel>>;
274
+ /**
275
+ *
276
+ * @summary Get all GeneralArticles.
277
+ * @param {string} [id]
278
+ * @param {string} [name]
279
+ * @param {string} [description]
280
+ * @param {ArticleType} [articleType]
281
+ * @param {ArticleStatus} [status]
282
+ * @param {string} [userId]
283
+ * @param {string} [userName]
284
+ * @param {string} [hospitalId]
285
+ * @param {string} [hospitalName]
286
+ * @param {string} [countryId]
287
+ * @param {string} [tag]
288
+ * @param {string} [exceptArticleId]
289
+ * @param {string} [exceptHospitalId]
290
+ * @param {string} [contributorId]
291
+ * @param {string} [articleCategoryId]
292
+ * @param {string} [languageCode]
293
+ * @param {number} [page]
294
+ * @param {number} [limit]
295
+ * @param {Date} [lastRetrieved]
296
+ * @param {*} [options] Override http request option.
297
+ * @throws {RequiredError}
298
+ */
299
+ apiV2GeneralarticlesGet(id?: string, name?: string, description?: string, articleType?: ArticleType, status?: ArticleStatus, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, articleCategoryId?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GeneralArticlesModel>>;
300
+ /**
301
+ *
302
+ * @summary Get GeneralArticle by slug
303
+ * @param {string} slug
304
+ * @param {string} [languageCode]
305
+ * @param {boolean} [returnDefaultValue]
306
+ * @param {string} [previewSecret]
307
+ * @param {string} [hospitalId]
308
+ * @param {*} [options] Override http request option.
309
+ * @throws {RequiredError}
310
+ */
311
+ apiV2GeneralarticlesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GeneralArticleModel>>;
312
+ };
313
+ /**
314
+ * GeneralArticlesApi - factory interface
315
+ * @export
316
+ */
317
+ export declare const GeneralArticlesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
318
+ /**
319
+ *
320
+ * @summary Get GeneralArticleContributor.
321
+ * @param {string} generalArticleId
322
+ * @param {string} contributorId
323
+ * @param {*} [options] Override http request option.
324
+ * @throws {RequiredError}
325
+ */
326
+ apiV2GeneralarticlesGeneralArticleIdContributorsContributorIdGet(generalArticleId: string, contributorId: string, options?: any): AxiosPromise<GeneralArticleContributorModel>;
327
+ /**
328
+ *
329
+ * @summary GetAll GeneralArticleContributors.
330
+ * @param {string} generalArticleId
331
+ * @param {string} [languageCode]
332
+ * @param {string} [contributorId]
333
+ * @param {string} [contributorName]
334
+ * @param {string} [email]
335
+ * @param {string} [website]
336
+ * @param {ContributionType} [contributionType]
337
+ * @param {number} [page]
338
+ * @param {number} [limit]
339
+ * @param {Date} [lastRetrieved]
340
+ * @param {*} [options] Override http request option.
341
+ * @throws {RequiredError}
342
+ */
343
+ apiV2GeneralarticlesGeneralArticleIdContributorsGet(generalArticleId: string, languageCode?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<GeneralArticleContributorsModel>;
344
+ /**
345
+ *
346
+ * @summary Get GeneralArticle by id.
347
+ * @param {string} generalArticleId
348
+ * @param {string} [languageCode]
349
+ * @param {*} [options] Override http request option.
350
+ * @throws {RequiredError}
351
+ */
352
+ apiV2GeneralarticlesGeneralArticleIdGet(generalArticleId: string, languageCode?: string, options?: any): AxiosPromise<GeneralArticleModel>;
353
+ /**
354
+ *
355
+ * @summary Get all GeneralArticleMedias.
356
+ * @param {string} generalArticleId
357
+ * @param {string} [id]
358
+ * @param {MediaType} [mediaType]
359
+ * @param {number} [page]
360
+ * @param {number} [limit]
361
+ * @param {Date} [lastRetrieved]
362
+ * @param {*} [options] Override http request option.
363
+ * @throws {RequiredError}
364
+ */
365
+ apiV2GeneralarticlesGeneralArticleIdMediasGet(generalArticleId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<MediasModel>;
366
+ /**
367
+ *
368
+ * @summary Get GeneralArticleMedia.
369
+ * @param {string} generalArticleId
370
+ * @param {string} mediaId
371
+ * @param {*} [options] Override http request option.
372
+ * @throws {RequiredError}
373
+ */
374
+ apiV2GeneralarticlesGeneralArticleIdMediasMediaIdGet(generalArticleId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
375
+ /**
376
+ *
377
+ * @summary Get all GeneralArticleSource.
378
+ * @param {string} generalArticleId
379
+ * @param {number} [page]
380
+ * @param {number} [limit]
381
+ * @param {Date} [lastRetrieved]
382
+ * @param {*} [options] Override http request option.
383
+ * @throws {RequiredError}
384
+ */
385
+ apiV2GeneralarticlesGeneralArticleIdSourcesGet(generalArticleId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<GeneralArticleSourcesModel>;
386
+ /**
387
+ *
388
+ * @summary Get GeneralArticleSource.
389
+ * @param {string} generalArticleId
390
+ * @param {string} sourceId
391
+ * @param {*} [options] Override http request option.
392
+ * @throws {RequiredError}
393
+ */
394
+ apiV2GeneralarticlesGeneralArticleIdSourcesSourceIdGet(generalArticleId: string, sourceId: string, options?: any): AxiosPromise<SourceModel>;
395
+ /**
396
+ *
397
+ * @summary GetAll GeneralArticleTags.
398
+ * @param {string} generalArticleId
399
+ * @param {string} [tagId]
400
+ * @param {number} [page]
401
+ * @param {number} [limit]
402
+ * @param {Date} [lastRetrieved]
403
+ * @param {*} [options] Override http request option.
404
+ * @throws {RequiredError}
405
+ */
406
+ apiV2GeneralarticlesGeneralArticleIdTagsGet(generalArticleId: string, tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<GeneralArticleTagsModel>;
407
+ /**
408
+ *
409
+ * @summary Get GeneralArticleTag.
410
+ * @param {string} generalArticleId
411
+ * @param {string} tagId
412
+ * @param {*} [options] Override http request option.
413
+ * @throws {RequiredError}
414
+ */
415
+ apiV2GeneralarticlesGeneralArticleIdTagsTagIdGet(generalArticleId: string, tagId: string, options?: any): AxiosPromise<GeneralArticleTagItemModel>;
416
+ /**
417
+ *
418
+ * @summary Get all GeneralArticles.
419
+ * @param {string} [id]
420
+ * @param {string} [name]
421
+ * @param {string} [description]
422
+ * @param {ArticleType} [articleType]
423
+ * @param {ArticleStatus} [status]
424
+ * @param {string} [userId]
425
+ * @param {string} [userName]
426
+ * @param {string} [hospitalId]
427
+ * @param {string} [hospitalName]
428
+ * @param {string} [countryId]
429
+ * @param {string} [tag]
430
+ * @param {string} [exceptArticleId]
431
+ * @param {string} [exceptHospitalId]
432
+ * @param {string} [contributorId]
433
+ * @param {string} [articleCategoryId]
434
+ * @param {string} [languageCode]
435
+ * @param {number} [page]
436
+ * @param {number} [limit]
437
+ * @param {Date} [lastRetrieved]
438
+ * @param {*} [options] Override http request option.
439
+ * @throws {RequiredError}
440
+ */
441
+ apiV2GeneralarticlesGet(id?: string, name?: string, description?: string, articleType?: ArticleType, status?: ArticleStatus, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, articleCategoryId?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<GeneralArticlesModel>;
442
+ /**
443
+ *
444
+ * @summary Get GeneralArticle by slug
445
+ * @param {string} slug
446
+ * @param {string} [languageCode]
447
+ * @param {boolean} [returnDefaultValue]
448
+ * @param {string} [previewSecret]
449
+ * @param {string} [hospitalId]
450
+ * @param {*} [options] Override http request option.
451
+ * @throws {RequiredError}
452
+ */
453
+ apiV2GeneralarticlesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalId?: string, options?: any): AxiosPromise<GeneralArticleModel>;
454
+ };
455
+ /**
456
+ * Request parameters for apiV2GeneralarticlesGeneralArticleIdContributorsContributorIdGet operation in GeneralArticlesApi.
457
+ * @export
458
+ * @interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsContributorIdGetRequest
459
+ */
460
+ export interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsContributorIdGetRequest {
461
+ /**
462
+ *
463
+ * @type {string}
464
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsContributorIdGet
465
+ */
466
+ readonly generalArticleId: string;
467
+ /**
468
+ *
469
+ * @type {string}
470
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsContributorIdGet
471
+ */
472
+ readonly contributorId: string;
473
+ }
474
+ /**
475
+ * Request parameters for apiV2GeneralarticlesGeneralArticleIdContributorsGet operation in GeneralArticlesApi.
476
+ * @export
477
+ * @interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsGetRequest
478
+ */
479
+ export interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsGetRequest {
480
+ /**
481
+ *
482
+ * @type {string}
483
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsGet
484
+ */
485
+ readonly generalArticleId: string;
486
+ /**
487
+ *
488
+ * @type {string}
489
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsGet
490
+ */
491
+ readonly languageCode?: string;
492
+ /**
493
+ *
494
+ * @type {string}
495
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsGet
496
+ */
497
+ readonly contributorId?: string;
498
+ /**
499
+ *
500
+ * @type {string}
501
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsGet
502
+ */
503
+ readonly contributorName?: string;
504
+ /**
505
+ *
506
+ * @type {string}
507
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsGet
508
+ */
509
+ readonly email?: string;
510
+ /**
511
+ *
512
+ * @type {string}
513
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsGet
514
+ */
515
+ readonly website?: string;
516
+ /**
517
+ *
518
+ * @type {ContributionType}
519
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsGet
520
+ */
521
+ readonly contributionType?: ContributionType;
522
+ /**
523
+ *
524
+ * @type {number}
525
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsGet
526
+ */
527
+ readonly page?: number;
528
+ /**
529
+ *
530
+ * @type {number}
531
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsGet
532
+ */
533
+ readonly limit?: number;
534
+ /**
535
+ *
536
+ * @type {Date}
537
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsGet
538
+ */
539
+ readonly lastRetrieved?: Date;
540
+ }
541
+ /**
542
+ * Request parameters for apiV2GeneralarticlesGeneralArticleIdGet operation in GeneralArticlesApi.
543
+ * @export
544
+ * @interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdGetRequest
545
+ */
546
+ export interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdGetRequest {
547
+ /**
548
+ *
549
+ * @type {string}
550
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdGet
551
+ */
552
+ readonly generalArticleId: string;
553
+ /**
554
+ *
555
+ * @type {string}
556
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdGet
557
+ */
558
+ readonly languageCode?: string;
559
+ }
560
+ /**
561
+ * Request parameters for apiV2GeneralarticlesGeneralArticleIdMediasGet operation in GeneralArticlesApi.
562
+ * @export
563
+ * @interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasGetRequest
564
+ */
565
+ export interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasGetRequest {
566
+ /**
567
+ *
568
+ * @type {string}
569
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasGet
570
+ */
571
+ readonly generalArticleId: string;
572
+ /**
573
+ *
574
+ * @type {string}
575
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasGet
576
+ */
577
+ readonly id?: string;
578
+ /**
579
+ *
580
+ * @type {MediaType}
581
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasGet
582
+ */
583
+ readonly mediaType?: MediaType;
584
+ /**
585
+ *
586
+ * @type {number}
587
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasGet
588
+ */
589
+ readonly page?: number;
590
+ /**
591
+ *
592
+ * @type {number}
593
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasGet
594
+ */
595
+ readonly limit?: number;
596
+ /**
597
+ *
598
+ * @type {Date}
599
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasGet
600
+ */
601
+ readonly lastRetrieved?: Date;
602
+ }
603
+ /**
604
+ * Request parameters for apiV2GeneralarticlesGeneralArticleIdMediasMediaIdGet operation in GeneralArticlesApi.
605
+ * @export
606
+ * @interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasMediaIdGetRequest
607
+ */
608
+ export interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasMediaIdGetRequest {
609
+ /**
610
+ *
611
+ * @type {string}
612
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasMediaIdGet
613
+ */
614
+ readonly generalArticleId: string;
615
+ /**
616
+ *
617
+ * @type {string}
618
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasMediaIdGet
619
+ */
620
+ readonly mediaId: string;
621
+ }
622
+ /**
623
+ * Request parameters for apiV2GeneralarticlesGeneralArticleIdSourcesGet operation in GeneralArticlesApi.
624
+ * @export
625
+ * @interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdSourcesGetRequest
626
+ */
627
+ export interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdSourcesGetRequest {
628
+ /**
629
+ *
630
+ * @type {string}
631
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdSourcesGet
632
+ */
633
+ readonly generalArticleId: string;
634
+ /**
635
+ *
636
+ * @type {number}
637
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdSourcesGet
638
+ */
639
+ readonly page?: number;
640
+ /**
641
+ *
642
+ * @type {number}
643
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdSourcesGet
644
+ */
645
+ readonly limit?: number;
646
+ /**
647
+ *
648
+ * @type {Date}
649
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdSourcesGet
650
+ */
651
+ readonly lastRetrieved?: Date;
652
+ }
653
+ /**
654
+ * Request parameters for apiV2GeneralarticlesGeneralArticleIdSourcesSourceIdGet operation in GeneralArticlesApi.
655
+ * @export
656
+ * @interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdSourcesSourceIdGetRequest
657
+ */
658
+ export interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdSourcesSourceIdGetRequest {
659
+ /**
660
+ *
661
+ * @type {string}
662
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdSourcesSourceIdGet
663
+ */
664
+ readonly generalArticleId: string;
665
+ /**
666
+ *
667
+ * @type {string}
668
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdSourcesSourceIdGet
669
+ */
670
+ readonly sourceId: string;
671
+ }
672
+ /**
673
+ * Request parameters for apiV2GeneralarticlesGeneralArticleIdTagsGet operation in GeneralArticlesApi.
674
+ * @export
675
+ * @interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsGetRequest
676
+ */
677
+ export interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsGetRequest {
678
+ /**
679
+ *
680
+ * @type {string}
681
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsGet
682
+ */
683
+ readonly generalArticleId: string;
684
+ /**
685
+ *
686
+ * @type {string}
687
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsGet
688
+ */
689
+ readonly tagId?: string;
690
+ /**
691
+ *
692
+ * @type {number}
693
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsGet
694
+ */
695
+ readonly page?: number;
696
+ /**
697
+ *
698
+ * @type {number}
699
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsGet
700
+ */
701
+ readonly limit?: number;
702
+ /**
703
+ *
704
+ * @type {Date}
705
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsGet
706
+ */
707
+ readonly lastRetrieved?: Date;
708
+ }
709
+ /**
710
+ * Request parameters for apiV2GeneralarticlesGeneralArticleIdTagsTagIdGet operation in GeneralArticlesApi.
711
+ * @export
712
+ * @interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsTagIdGetRequest
713
+ */
714
+ export interface GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsTagIdGetRequest {
715
+ /**
716
+ *
717
+ * @type {string}
718
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsTagIdGet
719
+ */
720
+ readonly generalArticleId: string;
721
+ /**
722
+ *
723
+ * @type {string}
724
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsTagIdGet
725
+ */
726
+ readonly tagId: string;
727
+ }
728
+ /**
729
+ * Request parameters for apiV2GeneralarticlesGet operation in GeneralArticlesApi.
730
+ * @export
731
+ * @interface GeneralArticlesApiApiV2GeneralarticlesGetRequest
732
+ */
733
+ export interface GeneralArticlesApiApiV2GeneralarticlesGetRequest {
734
+ /**
735
+ *
736
+ * @type {string}
737
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
738
+ */
739
+ readonly id?: string;
740
+ /**
741
+ *
742
+ * @type {string}
743
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
744
+ */
745
+ readonly name?: string;
746
+ /**
747
+ *
748
+ * @type {string}
749
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
750
+ */
751
+ readonly description?: string;
752
+ /**
753
+ *
754
+ * @type {ArticleType}
755
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
756
+ */
757
+ readonly articleType?: ArticleType;
758
+ /**
759
+ *
760
+ * @type {ArticleStatus}
761
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
762
+ */
763
+ readonly status?: ArticleStatus;
764
+ /**
765
+ *
766
+ * @type {string}
767
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
768
+ */
769
+ readonly userId?: string;
770
+ /**
771
+ *
772
+ * @type {string}
773
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
774
+ */
775
+ readonly userName?: string;
776
+ /**
777
+ *
778
+ * @type {string}
779
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
780
+ */
781
+ readonly hospitalId?: string;
782
+ /**
783
+ *
784
+ * @type {string}
785
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
786
+ */
787
+ readonly hospitalName?: string;
788
+ /**
789
+ *
790
+ * @type {string}
791
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
792
+ */
793
+ readonly countryId?: string;
794
+ /**
795
+ *
796
+ * @type {string}
797
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
798
+ */
799
+ readonly tag?: string;
800
+ /**
801
+ *
802
+ * @type {string}
803
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
804
+ */
805
+ readonly exceptArticleId?: string;
806
+ /**
807
+ *
808
+ * @type {string}
809
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
810
+ */
811
+ readonly exceptHospitalId?: string;
812
+ /**
813
+ *
814
+ * @type {string}
815
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
816
+ */
817
+ readonly contributorId?: string;
818
+ /**
819
+ *
820
+ * @type {string}
821
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
822
+ */
823
+ readonly articleCategoryId?: string;
824
+ /**
825
+ *
826
+ * @type {string}
827
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
828
+ */
829
+ readonly languageCode?: string;
830
+ /**
831
+ *
832
+ * @type {number}
833
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
834
+ */
835
+ readonly page?: number;
836
+ /**
837
+ *
838
+ * @type {number}
839
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
840
+ */
841
+ readonly limit?: number;
842
+ /**
843
+ *
844
+ * @type {Date}
845
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesGet
846
+ */
847
+ readonly lastRetrieved?: Date;
848
+ }
849
+ /**
850
+ * Request parameters for apiV2GeneralarticlesSlugGet operation in GeneralArticlesApi.
851
+ * @export
852
+ * @interface GeneralArticlesApiApiV2GeneralarticlesSlugGetRequest
853
+ */
854
+ export interface GeneralArticlesApiApiV2GeneralarticlesSlugGetRequest {
855
+ /**
856
+ *
857
+ * @type {string}
858
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesSlugGet
859
+ */
860
+ readonly slug: string;
861
+ /**
862
+ *
863
+ * @type {string}
864
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesSlugGet
865
+ */
866
+ readonly languageCode?: string;
867
+ /**
868
+ *
869
+ * @type {boolean}
870
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesSlugGet
871
+ */
872
+ readonly returnDefaultValue?: boolean;
873
+ /**
874
+ *
875
+ * @type {string}
876
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesSlugGet
877
+ */
878
+ readonly previewSecret?: string;
879
+ /**
880
+ *
881
+ * @type {string}
882
+ * @memberof GeneralArticlesApiApiV2GeneralarticlesSlugGet
883
+ */
884
+ readonly hospitalId?: string;
885
+ }
886
+ /**
887
+ * GeneralArticlesApi - object-oriented interface
888
+ * @export
889
+ * @class GeneralArticlesApi
890
+ * @extends {BaseAPI}
891
+ */
892
+ export declare class GeneralArticlesApi extends BaseAPI {
893
+ /**
894
+ *
895
+ * @summary Get GeneralArticleContributor.
896
+ * @param {GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsContributorIdGetRequest} requestParameters Request parameters.
897
+ * @param {*} [options] Override http request option.
898
+ * @throws {RequiredError}
899
+ * @memberof GeneralArticlesApi
900
+ */
901
+ apiV2GeneralarticlesGeneralArticleIdContributorsContributorIdGet(requestParameters: GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsContributorIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeneralArticleContributorModel, any>>;
902
+ /**
903
+ *
904
+ * @summary GetAll GeneralArticleContributors.
905
+ * @param {GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsGetRequest} requestParameters Request parameters.
906
+ * @param {*} [options] Override http request option.
907
+ * @throws {RequiredError}
908
+ * @memberof GeneralArticlesApi
909
+ */
910
+ apiV2GeneralarticlesGeneralArticleIdContributorsGet(requestParameters: GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdContributorsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeneralArticleContributorsModel, any>>;
911
+ /**
912
+ *
913
+ * @summary Get GeneralArticle by id.
914
+ * @param {GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdGetRequest} requestParameters Request parameters.
915
+ * @param {*} [options] Override http request option.
916
+ * @throws {RequiredError}
917
+ * @memberof GeneralArticlesApi
918
+ */
919
+ apiV2GeneralarticlesGeneralArticleIdGet(requestParameters: GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeneralArticleModel, any>>;
920
+ /**
921
+ *
922
+ * @summary Get all GeneralArticleMedias.
923
+ * @param {GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasGetRequest} requestParameters Request parameters.
924
+ * @param {*} [options] Override http request option.
925
+ * @throws {RequiredError}
926
+ * @memberof GeneralArticlesApi
927
+ */
928
+ apiV2GeneralarticlesGeneralArticleIdMediasGet(requestParameters: GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
929
+ /**
930
+ *
931
+ * @summary Get GeneralArticleMedia.
932
+ * @param {GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasMediaIdGetRequest} requestParameters Request parameters.
933
+ * @param {*} [options] Override http request option.
934
+ * @throws {RequiredError}
935
+ * @memberof GeneralArticlesApi
936
+ */
937
+ apiV2GeneralarticlesGeneralArticleIdMediasMediaIdGet(requestParameters: GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdMediasMediaIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
938
+ /**
939
+ *
940
+ * @summary Get all GeneralArticleSource.
941
+ * @param {GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdSourcesGetRequest} requestParameters Request parameters.
942
+ * @param {*} [options] Override http request option.
943
+ * @throws {RequiredError}
944
+ * @memberof GeneralArticlesApi
945
+ */
946
+ apiV2GeneralarticlesGeneralArticleIdSourcesGet(requestParameters: GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdSourcesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeneralArticleSourcesModel, any>>;
947
+ /**
948
+ *
949
+ * @summary Get GeneralArticleSource.
950
+ * @param {GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdSourcesSourceIdGetRequest} requestParameters Request parameters.
951
+ * @param {*} [options] Override http request option.
952
+ * @throws {RequiredError}
953
+ * @memberof GeneralArticlesApi
954
+ */
955
+ apiV2GeneralarticlesGeneralArticleIdSourcesSourceIdGet(requestParameters: GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdSourcesSourceIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceModel, any>>;
956
+ /**
957
+ *
958
+ * @summary GetAll GeneralArticleTags.
959
+ * @param {GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsGetRequest} requestParameters Request parameters.
960
+ * @param {*} [options] Override http request option.
961
+ * @throws {RequiredError}
962
+ * @memberof GeneralArticlesApi
963
+ */
964
+ apiV2GeneralarticlesGeneralArticleIdTagsGet(requestParameters: GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeneralArticleTagsModel, any>>;
965
+ /**
966
+ *
967
+ * @summary Get GeneralArticleTag.
968
+ * @param {GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsTagIdGetRequest} requestParameters Request parameters.
969
+ * @param {*} [options] Override http request option.
970
+ * @throws {RequiredError}
971
+ * @memberof GeneralArticlesApi
972
+ */
973
+ apiV2GeneralarticlesGeneralArticleIdTagsTagIdGet(requestParameters: GeneralArticlesApiApiV2GeneralarticlesGeneralArticleIdTagsTagIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeneralArticleTagItemModel, any>>;
974
+ /**
975
+ *
976
+ * @summary Get all GeneralArticles.
977
+ * @param {GeneralArticlesApiApiV2GeneralarticlesGetRequest} requestParameters Request parameters.
978
+ * @param {*} [options] Override http request option.
979
+ * @throws {RequiredError}
980
+ * @memberof GeneralArticlesApi
981
+ */
982
+ apiV2GeneralarticlesGet(requestParameters?: GeneralArticlesApiApiV2GeneralarticlesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeneralArticlesModel, any>>;
983
+ /**
984
+ *
985
+ * @summary Get GeneralArticle by slug
986
+ * @param {GeneralArticlesApiApiV2GeneralarticlesSlugGetRequest} requestParameters Request parameters.
987
+ * @param {*} [options] Override http request option.
988
+ * @throws {RequiredError}
989
+ * @memberof GeneralArticlesApi
990
+ */
991
+ apiV2GeneralarticlesSlugGet(requestParameters: GeneralArticlesApiApiV2GeneralarticlesSlugGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeneralArticleModel, any>>;
992
+ }
993
+ //# sourceMappingURL=general-articles-api.d.ts.map