ch-api-client-typescript2 3.4.3 → 3.4.8
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 +83 -193
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +106 -141
- package/package.json +1 -1
- package/src/api.ts +135 -265
package/src/api.ts
CHANGED
|
@@ -613,6 +613,24 @@ export interface ArticleItemModel {
|
|
|
613
613
|
* @memberof ArticleItemModel
|
|
614
614
|
*/
|
|
615
615
|
'hospitalSlug'?: string | null;
|
|
616
|
+
/**
|
|
617
|
+
*
|
|
618
|
+
* @type {string}
|
|
619
|
+
* @memberof ArticleItemModel
|
|
620
|
+
*/
|
|
621
|
+
'youtubeUrl'?: string | null;
|
|
622
|
+
/**
|
|
623
|
+
*
|
|
624
|
+
* @type {Array<ArticleTagItemModel>}
|
|
625
|
+
* @memberof ArticleItemModel
|
|
626
|
+
*/
|
|
627
|
+
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
628
|
+
/**
|
|
629
|
+
*
|
|
630
|
+
* @type {Array<MediaModel>}
|
|
631
|
+
* @memberof ArticleItemModel
|
|
632
|
+
*/
|
|
633
|
+
'medias'?: Array<MediaModel> | null;
|
|
616
634
|
/**
|
|
617
635
|
*
|
|
618
636
|
* @type {AuditableEntity}
|
|
@@ -3619,31 +3637,25 @@ export interface DoctorAffiliationItemModel {
|
|
|
3619
3637
|
* @type {string}
|
|
3620
3638
|
* @memberof DoctorAffiliationItemModel
|
|
3621
3639
|
*/
|
|
3622
|
-
'
|
|
3623
|
-
/**
|
|
3624
|
-
*
|
|
3625
|
-
* @type {string}
|
|
3626
|
-
* @memberof DoctorAffiliationItemModel
|
|
3627
|
-
*/
|
|
3628
|
-
'hospitalName'?: string | null;
|
|
3640
|
+
'languageCode'?: string | null;
|
|
3629
3641
|
/**
|
|
3630
3642
|
*
|
|
3631
3643
|
* @type {string}
|
|
3632
3644
|
* @memberof DoctorAffiliationItemModel
|
|
3633
3645
|
*/
|
|
3634
|
-
'
|
|
3646
|
+
'hospitalId'?: string;
|
|
3635
3647
|
/**
|
|
3636
3648
|
*
|
|
3637
3649
|
* @type {string}
|
|
3638
3650
|
* @memberof DoctorAffiliationItemModel
|
|
3639
3651
|
*/
|
|
3640
|
-
'
|
|
3652
|
+
'hospitalName'?: string | null;
|
|
3641
3653
|
/**
|
|
3642
3654
|
*
|
|
3643
3655
|
* @type {string}
|
|
3644
3656
|
* @memberof DoctorAffiliationItemModel
|
|
3645
3657
|
*/
|
|
3646
|
-
'
|
|
3658
|
+
'hospitalSlug'?: string | null;
|
|
3647
3659
|
/**
|
|
3648
3660
|
*
|
|
3649
3661
|
* @type {string}
|
|
@@ -3710,31 +3722,25 @@ export interface DoctorAffiliationModel {
|
|
|
3710
3722
|
* @type {string}
|
|
3711
3723
|
* @memberof DoctorAffiliationModel
|
|
3712
3724
|
*/
|
|
3713
|
-
'
|
|
3714
|
-
/**
|
|
3715
|
-
*
|
|
3716
|
-
* @type {string}
|
|
3717
|
-
* @memberof DoctorAffiliationModel
|
|
3718
|
-
*/
|
|
3719
|
-
'hospitalName'?: string | null;
|
|
3725
|
+
'languageCode'?: string | null;
|
|
3720
3726
|
/**
|
|
3721
3727
|
*
|
|
3722
3728
|
* @type {string}
|
|
3723
3729
|
* @memberof DoctorAffiliationModel
|
|
3724
3730
|
*/
|
|
3725
|
-
'
|
|
3731
|
+
'hospitalId'?: string;
|
|
3726
3732
|
/**
|
|
3727
3733
|
*
|
|
3728
3734
|
* @type {string}
|
|
3729
3735
|
* @memberof DoctorAffiliationModel
|
|
3730
3736
|
*/
|
|
3731
|
-
'
|
|
3737
|
+
'hospitalName'?: string | null;
|
|
3732
3738
|
/**
|
|
3733
3739
|
*
|
|
3734
3740
|
* @type {string}
|
|
3735
3741
|
* @memberof DoctorAffiliationModel
|
|
3736
3742
|
*/
|
|
3737
|
-
'
|
|
3743
|
+
'hospitalSlug'?: string | null;
|
|
3738
3744
|
/**
|
|
3739
3745
|
*
|
|
3740
3746
|
* @type {string}
|
|
@@ -4097,18 +4103,6 @@ export interface DoctorItemModel {
|
|
|
4097
4103
|
* @memberof DoctorItemModel
|
|
4098
4104
|
*/
|
|
4099
4105
|
'id'?: string;
|
|
4100
|
-
/**
|
|
4101
|
-
*
|
|
4102
|
-
* @type {string}
|
|
4103
|
-
* @memberof DoctorItemModel
|
|
4104
|
-
*/
|
|
4105
|
-
'languageCode'?: string | null;
|
|
4106
|
-
/**
|
|
4107
|
-
*
|
|
4108
|
-
* @type {string}
|
|
4109
|
-
* @memberof DoctorItemModel
|
|
4110
|
-
*/
|
|
4111
|
-
'userName'?: string | null;
|
|
4112
4106
|
/**
|
|
4113
4107
|
*
|
|
4114
4108
|
* @type {string}
|
|
@@ -4147,34 +4141,10 @@ export interface DoctorItemModel {
|
|
|
4147
4141
|
'photoThumbnail'?: string | null;
|
|
4148
4142
|
/**
|
|
4149
4143
|
*
|
|
4150
|
-
* @type {
|
|
4151
|
-
* @memberof DoctorItemModel
|
|
4152
|
-
*/
|
|
4153
|
-
'auditableEntity'?: AuditableEntity;
|
|
4154
|
-
/**
|
|
4155
|
-
*
|
|
4156
|
-
* @type {boolean}
|
|
4157
|
-
* @memberof DoctorItemModel
|
|
4158
|
-
*/
|
|
4159
|
-
'consultationEnabled'?: boolean | null;
|
|
4160
|
-
/**
|
|
4161
|
-
*
|
|
4162
|
-
* @type {number}
|
|
4163
|
-
* @memberof DoctorItemModel
|
|
4164
|
-
*/
|
|
4165
|
-
'consultationFee'?: number | null;
|
|
4166
|
-
/**
|
|
4167
|
-
*
|
|
4168
|
-
* @type {Array<DoctorSpecialtyItemModel>}
|
|
4169
|
-
* @memberof DoctorItemModel
|
|
4170
|
-
*/
|
|
4171
|
-
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4172
|
-
/**
|
|
4173
|
-
*
|
|
4174
|
-
* @type {Array<DoctorAffiliationItemModel>}
|
|
4144
|
+
* @type {string}
|
|
4175
4145
|
* @memberof DoctorItemModel
|
|
4176
4146
|
*/
|
|
4177
|
-
'
|
|
4147
|
+
'timeZone'?: string | null;
|
|
4178
4148
|
}
|
|
4179
4149
|
/**
|
|
4180
4150
|
*
|
|
@@ -4257,12 +4227,6 @@ export interface DoctorModel {
|
|
|
4257
4227
|
* @memberof DoctorModel
|
|
4258
4228
|
*/
|
|
4259
4229
|
'id'?: string;
|
|
4260
|
-
/**
|
|
4261
|
-
*
|
|
4262
|
-
* @type {string}
|
|
4263
|
-
* @memberof DoctorModel
|
|
4264
|
-
*/
|
|
4265
|
-
'languageCode'?: string | null;
|
|
4266
4230
|
/**
|
|
4267
4231
|
*
|
|
4268
4232
|
* @type {string}
|
|
@@ -4359,60 +4323,12 @@ export interface DoctorModel {
|
|
|
4359
4323
|
* @memberof DoctorModel
|
|
4360
4324
|
*/
|
|
4361
4325
|
'locations'?: Array<UserLocationModel> | null;
|
|
4362
|
-
/**
|
|
4363
|
-
*
|
|
4364
|
-
* @type {string}
|
|
4365
|
-
* @memberof DoctorModel
|
|
4366
|
-
*/
|
|
4367
|
-
'overview'?: string | null;
|
|
4368
|
-
/**
|
|
4369
|
-
*
|
|
4370
|
-
* @type {string}
|
|
4371
|
-
* @memberof DoctorModel
|
|
4372
|
-
*/
|
|
4373
|
-
'description'?: string | null;
|
|
4374
|
-
/**
|
|
4375
|
-
*
|
|
4376
|
-
* @type {string}
|
|
4377
|
-
* @memberof DoctorModel
|
|
4378
|
-
*/
|
|
4379
|
-
'content'?: string | null;
|
|
4380
4326
|
/**
|
|
4381
4327
|
*
|
|
4382
4328
|
* @type {Date}
|
|
4383
4329
|
* @memberof DoctorModel
|
|
4384
4330
|
*/
|
|
4385
4331
|
'startPracticeDate'?: Date | null;
|
|
4386
|
-
/**
|
|
4387
|
-
*
|
|
4388
|
-
* @type {boolean}
|
|
4389
|
-
* @memberof DoctorModel
|
|
4390
|
-
*/
|
|
4391
|
-
'consultationEnabled'?: boolean | null;
|
|
4392
|
-
/**
|
|
4393
|
-
*
|
|
4394
|
-
* @type {number}
|
|
4395
|
-
* @memberof DoctorModel
|
|
4396
|
-
*/
|
|
4397
|
-
'consultationFee'?: number | null;
|
|
4398
|
-
/**
|
|
4399
|
-
*
|
|
4400
|
-
* @type {Array<DoctorSpecialtyItemModel>}
|
|
4401
|
-
* @memberof DoctorModel
|
|
4402
|
-
*/
|
|
4403
|
-
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4404
|
-
/**
|
|
4405
|
-
*
|
|
4406
|
-
* @type {Array<DoctorAffiliationItemModel>}
|
|
4407
|
-
* @memberof DoctorModel
|
|
4408
|
-
*/
|
|
4409
|
-
'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
|
|
4410
|
-
/**
|
|
4411
|
-
*
|
|
4412
|
-
* @type {Array<LocalizedUrlModel>}
|
|
4413
|
-
* @memberof DoctorModel
|
|
4414
|
-
*/
|
|
4415
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
4416
4332
|
}
|
|
4417
4333
|
/**
|
|
4418
4334
|
*
|
|
@@ -4555,6 +4471,12 @@ export interface DoctorSimpleItemModel {
|
|
|
4555
4471
|
* @memberof DoctorSimpleItemModel
|
|
4556
4472
|
*/
|
|
4557
4473
|
'lastName'?: string | null;
|
|
4474
|
+
/**
|
|
4475
|
+
*
|
|
4476
|
+
* @type {string}
|
|
4477
|
+
* @memberof DoctorSimpleItemModel
|
|
4478
|
+
*/
|
|
4479
|
+
'fullname'?: string | null;
|
|
4558
4480
|
}
|
|
4559
4481
|
/**
|
|
4560
4482
|
*
|
|
@@ -7225,12 +7147,6 @@ export interface PatientModel {
|
|
|
7225
7147
|
* @memberof PatientModel
|
|
7226
7148
|
*/
|
|
7227
7149
|
'id'?: string;
|
|
7228
|
-
/**
|
|
7229
|
-
*
|
|
7230
|
-
* @type {string}
|
|
7231
|
-
* @memberof PatientModel
|
|
7232
|
-
*/
|
|
7233
|
-
'languageCode'?: string | null;
|
|
7234
7150
|
/**
|
|
7235
7151
|
*
|
|
7236
7152
|
* @type {string}
|
|
@@ -9372,12 +9288,6 @@ export interface UserModel {
|
|
|
9372
9288
|
* @memberof UserModel
|
|
9373
9289
|
*/
|
|
9374
9290
|
'id'?: string;
|
|
9375
|
-
/**
|
|
9376
|
-
*
|
|
9377
|
-
* @type {string}
|
|
9378
|
-
* @memberof UserModel
|
|
9379
|
-
*/
|
|
9380
|
-
'languageCode'?: string | null;
|
|
9381
9291
|
/**
|
|
9382
9292
|
*
|
|
9383
9293
|
* @type {string}
|
|
@@ -15375,6 +15285,44 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
15375
15285
|
|
|
15376
15286
|
|
|
15377
15287
|
|
|
15288
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
15289
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
15290
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
15291
|
+
|
|
15292
|
+
return {
|
|
15293
|
+
url: toPathString(localVarUrlObj),
|
|
15294
|
+
options: localVarRequestOptions,
|
|
15295
|
+
};
|
|
15296
|
+
},
|
|
15297
|
+
/**
|
|
15298
|
+
*
|
|
15299
|
+
* @param {string} slug
|
|
15300
|
+
* @param {string} [languageCode]
|
|
15301
|
+
* @param {*} [options] Override http request option.
|
|
15302
|
+
* @throws {RequiredError}
|
|
15303
|
+
*/
|
|
15304
|
+
apiV2DoctoraffiliationsSlugGet: async (slug: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
15305
|
+
// verify required parameter 'slug' is not null or undefined
|
|
15306
|
+
assertParamExists('apiV2DoctoraffiliationsSlugGet', 'slug', slug)
|
|
15307
|
+
const localVarPath = `/api/v2/doctoraffiliations/{slug}`
|
|
15308
|
+
.replace(`{${"slug"}}`, encodeURIComponent(String(slug)));
|
|
15309
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
15310
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
15311
|
+
let baseOptions;
|
|
15312
|
+
if (configuration) {
|
|
15313
|
+
baseOptions = configuration.baseOptions;
|
|
15314
|
+
}
|
|
15315
|
+
|
|
15316
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
15317
|
+
const localVarHeaderParameter = {} as any;
|
|
15318
|
+
const localVarQueryParameter = {} as any;
|
|
15319
|
+
|
|
15320
|
+
if (languageCode !== undefined) {
|
|
15321
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
15322
|
+
}
|
|
15323
|
+
|
|
15324
|
+
|
|
15325
|
+
|
|
15378
15326
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
15379
15327
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
15380
15328
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -15425,6 +15373,17 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
15425
15373
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctoraffiliationsIdGet(id, languageCode, options);
|
|
15426
15374
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
15427
15375
|
},
|
|
15376
|
+
/**
|
|
15377
|
+
*
|
|
15378
|
+
* @param {string} slug
|
|
15379
|
+
* @param {string} [languageCode]
|
|
15380
|
+
* @param {*} [options] Override http request option.
|
|
15381
|
+
* @throws {RequiredError}
|
|
15382
|
+
*/
|
|
15383
|
+
async apiV2DoctoraffiliationsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
|
|
15384
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctoraffiliationsSlugGet(slug, languageCode, options);
|
|
15385
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
15386
|
+
},
|
|
15428
15387
|
}
|
|
15429
15388
|
};
|
|
15430
15389
|
|
|
@@ -15464,6 +15423,16 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
15464
15423
|
apiV2DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: any): AxiosPromise<DoctorAffiliationModel> {
|
|
15465
15424
|
return localVarFp.apiV2DoctoraffiliationsIdGet(id, languageCode, options).then((request) => request(axios, basePath));
|
|
15466
15425
|
},
|
|
15426
|
+
/**
|
|
15427
|
+
*
|
|
15428
|
+
* @param {string} slug
|
|
15429
|
+
* @param {string} [languageCode]
|
|
15430
|
+
* @param {*} [options] Override http request option.
|
|
15431
|
+
* @throws {RequiredError}
|
|
15432
|
+
*/
|
|
15433
|
+
apiV2DoctoraffiliationsSlugGet(slug: string, languageCode?: string, options?: any): AxiosPromise<DoctorAffiliationModel> {
|
|
15434
|
+
return localVarFp.apiV2DoctoraffiliationsSlugGet(slug, languageCode, options).then((request) => request(axios, basePath));
|
|
15435
|
+
},
|
|
15467
15436
|
};
|
|
15468
15437
|
};
|
|
15469
15438
|
|
|
@@ -15506,6 +15475,18 @@ export class DoctorAffiliationsApi extends BaseAPI {
|
|
|
15506
15475
|
public apiV2DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
15507
15476
|
return DoctorAffiliationsApiFp(this.configuration).apiV2DoctoraffiliationsIdGet(id, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
15508
15477
|
}
|
|
15478
|
+
|
|
15479
|
+
/**
|
|
15480
|
+
*
|
|
15481
|
+
* @param {string} slug
|
|
15482
|
+
* @param {string} [languageCode]
|
|
15483
|
+
* @param {*} [options] Override http request option.
|
|
15484
|
+
* @throws {RequiredError}
|
|
15485
|
+
* @memberof DoctorAffiliationsApi
|
|
15486
|
+
*/
|
|
15487
|
+
public apiV2DoctoraffiliationsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
15488
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV2DoctoraffiliationsSlugGet(slug, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
15489
|
+
}
|
|
15509
15490
|
}
|
|
15510
15491
|
|
|
15511
15492
|
|
|
@@ -16208,25 +16189,23 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
16208
16189
|
* @summary Get all Doctors.
|
|
16209
16190
|
* @param {string} [hospitalId]
|
|
16210
16191
|
* @param {string} [hospitalName]
|
|
16211
|
-
* @param {string} [languageCode]
|
|
16212
|
-
* @param {boolean} [returnDefaultValue]
|
|
16213
16192
|
* @param {Array<string>} [ids]
|
|
16214
16193
|
* @param {string} [specialtyId]
|
|
16215
16194
|
* @param {boolean} [consultationEnabled]
|
|
16195
|
+
* @param {string} [languageCode]
|
|
16216
16196
|
* @param {string} [id]
|
|
16217
16197
|
* @param {string} [fullname]
|
|
16218
16198
|
* @param {string} [email]
|
|
16219
16199
|
* @param {Gender} [gender]
|
|
16220
16200
|
* @param {Date} [dateOfBirth]
|
|
16221
16201
|
* @param {Date} [created]
|
|
16222
|
-
* @param {boolean} [showHidden]
|
|
16223
16202
|
* @param {number} [page]
|
|
16224
16203
|
* @param {number} [limit]
|
|
16225
16204
|
* @param {Date} [lastRetrieved]
|
|
16226
16205
|
* @param {*} [options] Override http request option.
|
|
16227
16206
|
* @throws {RequiredError}
|
|
16228
16207
|
*/
|
|
16229
|
-
apiV2DoctorsGet: async (hospitalId?: string, hospitalName?: string,
|
|
16208
|
+
apiV2DoctorsGet: async (hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, languageCode?: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
16230
16209
|
const localVarPath = `/api/v2/doctors`;
|
|
16231
16210
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
16232
16211
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -16247,14 +16226,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
16247
16226
|
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
16248
16227
|
}
|
|
16249
16228
|
|
|
16250
|
-
if (languageCode !== undefined) {
|
|
16251
|
-
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
16252
|
-
}
|
|
16253
|
-
|
|
16254
|
-
if (returnDefaultValue !== undefined) {
|
|
16255
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
16256
|
-
}
|
|
16257
|
-
|
|
16258
16229
|
if (ids) {
|
|
16259
16230
|
localVarQueryParameter['Ids'] = ids;
|
|
16260
16231
|
}
|
|
@@ -16267,6 +16238,10 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
16267
16238
|
localVarQueryParameter['ConsultationEnabled'] = consultationEnabled;
|
|
16268
16239
|
}
|
|
16269
16240
|
|
|
16241
|
+
if (languageCode !== undefined) {
|
|
16242
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
16243
|
+
}
|
|
16244
|
+
|
|
16270
16245
|
if (id !== undefined) {
|
|
16271
16246
|
localVarQueryParameter['Id'] = id;
|
|
16272
16247
|
}
|
|
@@ -16295,10 +16270,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
16295
16270
|
created;
|
|
16296
16271
|
}
|
|
16297
16272
|
|
|
16298
|
-
if (showHidden !== undefined) {
|
|
16299
|
-
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
16300
|
-
}
|
|
16301
|
-
|
|
16302
16273
|
if (page !== undefined) {
|
|
16303
16274
|
localVarQueryParameter['page'] = page;
|
|
16304
16275
|
}
|
|
@@ -16329,25 +16300,23 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
16329
16300
|
* @summary Get all Doctors.
|
|
16330
16301
|
* @param {string} [hospitalId]
|
|
16331
16302
|
* @param {string} [hospitalName]
|
|
16332
|
-
* @param {string} [languageCode]
|
|
16333
|
-
* @param {boolean} [returnDefaultValue]
|
|
16334
16303
|
* @param {Array<string>} [ids]
|
|
16335
16304
|
* @param {string} [specialtyId]
|
|
16336
16305
|
* @param {boolean} [consultationEnabled]
|
|
16306
|
+
* @param {string} [languageCode]
|
|
16337
16307
|
* @param {string} [id]
|
|
16338
16308
|
* @param {string} [fullname]
|
|
16339
16309
|
* @param {string} [email]
|
|
16340
16310
|
* @param {Gender} [gender]
|
|
16341
16311
|
* @param {Date} [dateOfBirth]
|
|
16342
16312
|
* @param {Date} [created]
|
|
16343
|
-
* @param {boolean} [showHidden]
|
|
16344
16313
|
* @param {number} [page]
|
|
16345
16314
|
* @param {number} [limit]
|
|
16346
16315
|
* @param {Date} [lastRetrieved]
|
|
16347
16316
|
* @param {*} [options] Override http request option.
|
|
16348
16317
|
* @throws {RequiredError}
|
|
16349
16318
|
*/
|
|
16350
|
-
apiV2DoctorsSimpleGet: async (hospitalId?: string, hospitalName?: string,
|
|
16319
|
+
apiV2DoctorsSimpleGet: async (hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, languageCode?: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
16351
16320
|
const localVarPath = `/api/v2/doctors/simple`;
|
|
16352
16321
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
16353
16322
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -16368,14 +16337,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
16368
16337
|
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
16369
16338
|
}
|
|
16370
16339
|
|
|
16371
|
-
if (languageCode !== undefined) {
|
|
16372
|
-
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
16373
|
-
}
|
|
16374
|
-
|
|
16375
|
-
if (returnDefaultValue !== undefined) {
|
|
16376
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
16377
|
-
}
|
|
16378
|
-
|
|
16379
16340
|
if (ids) {
|
|
16380
16341
|
localVarQueryParameter['Ids'] = ids;
|
|
16381
16342
|
}
|
|
@@ -16388,6 +16349,10 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
16388
16349
|
localVarQueryParameter['ConsultationEnabled'] = consultationEnabled;
|
|
16389
16350
|
}
|
|
16390
16351
|
|
|
16352
|
+
if (languageCode !== undefined) {
|
|
16353
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
16354
|
+
}
|
|
16355
|
+
|
|
16391
16356
|
if (id !== undefined) {
|
|
16392
16357
|
localVarQueryParameter['Id'] = id;
|
|
16393
16358
|
}
|
|
@@ -16416,10 +16381,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
16416
16381
|
created;
|
|
16417
16382
|
}
|
|
16418
16383
|
|
|
16419
|
-
if (showHidden !== undefined) {
|
|
16420
|
-
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
16421
|
-
}
|
|
16422
|
-
|
|
16423
16384
|
if (page !== undefined) {
|
|
16424
16385
|
localVarQueryParameter['page'] = page;
|
|
16425
16386
|
}
|
|
@@ -16436,49 +16397,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
16436
16397
|
|
|
16437
16398
|
|
|
16438
16399
|
|
|
16439
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16440
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16441
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
16442
|
-
|
|
16443
|
-
return {
|
|
16444
|
-
url: toPathString(localVarUrlObj),
|
|
16445
|
-
options: localVarRequestOptions,
|
|
16446
|
-
};
|
|
16447
|
-
},
|
|
16448
|
-
/**
|
|
16449
|
-
*
|
|
16450
|
-
* @param {string} slug
|
|
16451
|
-
* @param {string} [languageCode]
|
|
16452
|
-
* @param {boolean} [returnDefaultValue]
|
|
16453
|
-
* @param {*} [options] Override http request option.
|
|
16454
|
-
* @throws {RequiredError}
|
|
16455
|
-
*/
|
|
16456
|
-
apiV2DoctorsSlugGet: async (slug: string, languageCode?: string, returnDefaultValue?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
16457
|
-
// verify required parameter 'slug' is not null or undefined
|
|
16458
|
-
assertParamExists('apiV2DoctorsSlugGet', 'slug', slug)
|
|
16459
|
-
const localVarPath = `/api/v2/doctors/{slug}`
|
|
16460
|
-
.replace(`{${"slug"}}`, encodeURIComponent(String(slug)));
|
|
16461
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
16462
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16463
|
-
let baseOptions;
|
|
16464
|
-
if (configuration) {
|
|
16465
|
-
baseOptions = configuration.baseOptions;
|
|
16466
|
-
}
|
|
16467
|
-
|
|
16468
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
16469
|
-
const localVarHeaderParameter = {} as any;
|
|
16470
|
-
const localVarQueryParameter = {} as any;
|
|
16471
|
-
|
|
16472
|
-
if (languageCode !== undefined) {
|
|
16473
|
-
localVarQueryParameter['languageCode'] = languageCode;
|
|
16474
|
-
}
|
|
16475
|
-
|
|
16476
|
-
if (returnDefaultValue !== undefined) {
|
|
16477
|
-
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
16478
|
-
}
|
|
16479
|
-
|
|
16480
|
-
|
|
16481
|
-
|
|
16482
16400
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16483
16401
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16484
16402
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -16692,26 +16610,24 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
16692
16610
|
* @summary Get all Doctors.
|
|
16693
16611
|
* @param {string} [hospitalId]
|
|
16694
16612
|
* @param {string} [hospitalName]
|
|
16695
|
-
* @param {string} [languageCode]
|
|
16696
|
-
* @param {boolean} [returnDefaultValue]
|
|
16697
16613
|
* @param {Array<string>} [ids]
|
|
16698
16614
|
* @param {string} [specialtyId]
|
|
16699
16615
|
* @param {boolean} [consultationEnabled]
|
|
16616
|
+
* @param {string} [languageCode]
|
|
16700
16617
|
* @param {string} [id]
|
|
16701
16618
|
* @param {string} [fullname]
|
|
16702
16619
|
* @param {string} [email]
|
|
16703
16620
|
* @param {Gender} [gender]
|
|
16704
16621
|
* @param {Date} [dateOfBirth]
|
|
16705
16622
|
* @param {Date} [created]
|
|
16706
|
-
* @param {boolean} [showHidden]
|
|
16707
16623
|
* @param {number} [page]
|
|
16708
16624
|
* @param {number} [limit]
|
|
16709
16625
|
* @param {Date} [lastRetrieved]
|
|
16710
16626
|
* @param {*} [options] Override http request option.
|
|
16711
16627
|
* @throws {RequiredError}
|
|
16712
16628
|
*/
|
|
16713
|
-
async apiV2DoctorsGet(hospitalId?: string, hospitalName?: string,
|
|
16714
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsGet(hospitalId, hospitalName,
|
|
16629
|
+
async apiV2DoctorsGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, languageCode?: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorsModel>> {
|
|
16630
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options);
|
|
16715
16631
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
16716
16632
|
},
|
|
16717
16633
|
/**
|
|
@@ -16719,38 +16635,24 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
16719
16635
|
* @summary Get all Doctors.
|
|
16720
16636
|
* @param {string} [hospitalId]
|
|
16721
16637
|
* @param {string} [hospitalName]
|
|
16722
|
-
* @param {string} [languageCode]
|
|
16723
|
-
* @param {boolean} [returnDefaultValue]
|
|
16724
16638
|
* @param {Array<string>} [ids]
|
|
16725
16639
|
* @param {string} [specialtyId]
|
|
16726
16640
|
* @param {boolean} [consultationEnabled]
|
|
16641
|
+
* @param {string} [languageCode]
|
|
16727
16642
|
* @param {string} [id]
|
|
16728
16643
|
* @param {string} [fullname]
|
|
16729
16644
|
* @param {string} [email]
|
|
16730
16645
|
* @param {Gender} [gender]
|
|
16731
16646
|
* @param {Date} [dateOfBirth]
|
|
16732
16647
|
* @param {Date} [created]
|
|
16733
|
-
* @param {boolean} [showHidden]
|
|
16734
16648
|
* @param {number} [page]
|
|
16735
16649
|
* @param {number} [limit]
|
|
16736
16650
|
* @param {Date} [lastRetrieved]
|
|
16737
16651
|
* @param {*} [options] Override http request option.
|
|
16738
16652
|
* @throws {RequiredError}
|
|
16739
16653
|
*/
|
|
16740
|
-
async apiV2DoctorsSimpleGet(hospitalId?: string, hospitalName?: string,
|
|
16741
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsSimpleGet(hospitalId, hospitalName,
|
|
16742
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
16743
|
-
},
|
|
16744
|
-
/**
|
|
16745
|
-
*
|
|
16746
|
-
* @param {string} slug
|
|
16747
|
-
* @param {string} [languageCode]
|
|
16748
|
-
* @param {boolean} [returnDefaultValue]
|
|
16749
|
-
* @param {*} [options] Override http request option.
|
|
16750
|
-
* @throws {RequiredError}
|
|
16751
|
-
*/
|
|
16752
|
-
async apiV2DoctorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorModel>> {
|
|
16753
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsSlugGet(slug, languageCode, returnDefaultValue, options);
|
|
16654
|
+
async apiV2DoctorsSimpleGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, languageCode?: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorsSimpleModel>> {
|
|
16655
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsSimpleGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options);
|
|
16754
16656
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
16755
16657
|
},
|
|
16756
16658
|
}
|
|
@@ -16944,63 +16846,48 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
16944
16846
|
* @summary Get all Doctors.
|
|
16945
16847
|
* @param {string} [hospitalId]
|
|
16946
16848
|
* @param {string} [hospitalName]
|
|
16947
|
-
* @param {string} [languageCode]
|
|
16948
|
-
* @param {boolean} [returnDefaultValue]
|
|
16949
16849
|
* @param {Array<string>} [ids]
|
|
16950
16850
|
* @param {string} [specialtyId]
|
|
16951
16851
|
* @param {boolean} [consultationEnabled]
|
|
16852
|
+
* @param {string} [languageCode]
|
|
16952
16853
|
* @param {string} [id]
|
|
16953
16854
|
* @param {string} [fullname]
|
|
16954
16855
|
* @param {string} [email]
|
|
16955
16856
|
* @param {Gender} [gender]
|
|
16956
16857
|
* @param {Date} [dateOfBirth]
|
|
16957
16858
|
* @param {Date} [created]
|
|
16958
|
-
* @param {boolean} [showHidden]
|
|
16959
16859
|
* @param {number} [page]
|
|
16960
16860
|
* @param {number} [limit]
|
|
16961
16861
|
* @param {Date} [lastRetrieved]
|
|
16962
16862
|
* @param {*} [options] Override http request option.
|
|
16963
16863
|
* @throws {RequiredError}
|
|
16964
16864
|
*/
|
|
16965
|
-
apiV2DoctorsGet(hospitalId?: string, hospitalName?: string,
|
|
16966
|
-
return localVarFp.apiV2DoctorsGet(hospitalId, hospitalName,
|
|
16865
|
+
apiV2DoctorsGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, languageCode?: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorsModel> {
|
|
16866
|
+
return localVarFp.apiV2DoctorsGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
16967
16867
|
},
|
|
16968
16868
|
/**
|
|
16969
16869
|
*
|
|
16970
16870
|
* @summary Get all Doctors.
|
|
16971
16871
|
* @param {string} [hospitalId]
|
|
16972
16872
|
* @param {string} [hospitalName]
|
|
16973
|
-
* @param {string} [languageCode]
|
|
16974
|
-
* @param {boolean} [returnDefaultValue]
|
|
16975
16873
|
* @param {Array<string>} [ids]
|
|
16976
16874
|
* @param {string} [specialtyId]
|
|
16977
16875
|
* @param {boolean} [consultationEnabled]
|
|
16876
|
+
* @param {string} [languageCode]
|
|
16978
16877
|
* @param {string} [id]
|
|
16979
16878
|
* @param {string} [fullname]
|
|
16980
16879
|
* @param {string} [email]
|
|
16981
16880
|
* @param {Gender} [gender]
|
|
16982
16881
|
* @param {Date} [dateOfBirth]
|
|
16983
16882
|
* @param {Date} [created]
|
|
16984
|
-
* @param {boolean} [showHidden]
|
|
16985
16883
|
* @param {number} [page]
|
|
16986
16884
|
* @param {number} [limit]
|
|
16987
16885
|
* @param {Date} [lastRetrieved]
|
|
16988
16886
|
* @param {*} [options] Override http request option.
|
|
16989
16887
|
* @throws {RequiredError}
|
|
16990
16888
|
*/
|
|
16991
|
-
apiV2DoctorsSimpleGet(hospitalId?: string, hospitalName?: string,
|
|
16992
|
-
return localVarFp.apiV2DoctorsSimpleGet(hospitalId, hospitalName,
|
|
16993
|
-
},
|
|
16994
|
-
/**
|
|
16995
|
-
*
|
|
16996
|
-
* @param {string} slug
|
|
16997
|
-
* @param {string} [languageCode]
|
|
16998
|
-
* @param {boolean} [returnDefaultValue]
|
|
16999
|
-
* @param {*} [options] Override http request option.
|
|
17000
|
-
* @throws {RequiredError}
|
|
17001
|
-
*/
|
|
17002
|
-
apiV2DoctorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<DoctorModel> {
|
|
17003
|
-
return localVarFp.apiV2DoctorsSlugGet(slug, languageCode, returnDefaultValue, options).then((request) => request(axios, basePath));
|
|
16889
|
+
apiV2DoctorsSimpleGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, languageCode?: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorsSimpleModel> {
|
|
16890
|
+
return localVarFp.apiV2DoctorsSimpleGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
17004
16891
|
},
|
|
17005
16892
|
};
|
|
17006
16893
|
};
|
|
@@ -17219,18 +17106,16 @@ export class DoctorsApi extends BaseAPI {
|
|
|
17219
17106
|
* @summary Get all Doctors.
|
|
17220
17107
|
* @param {string} [hospitalId]
|
|
17221
17108
|
* @param {string} [hospitalName]
|
|
17222
|
-
* @param {string} [languageCode]
|
|
17223
|
-
* @param {boolean} [returnDefaultValue]
|
|
17224
17109
|
* @param {Array<string>} [ids]
|
|
17225
17110
|
* @param {string} [specialtyId]
|
|
17226
17111
|
* @param {boolean} [consultationEnabled]
|
|
17112
|
+
* @param {string} [languageCode]
|
|
17227
17113
|
* @param {string} [id]
|
|
17228
17114
|
* @param {string} [fullname]
|
|
17229
17115
|
* @param {string} [email]
|
|
17230
17116
|
* @param {Gender} [gender]
|
|
17231
17117
|
* @param {Date} [dateOfBirth]
|
|
17232
17118
|
* @param {Date} [created]
|
|
17233
|
-
* @param {boolean} [showHidden]
|
|
17234
17119
|
* @param {number} [page]
|
|
17235
17120
|
* @param {number} [limit]
|
|
17236
17121
|
* @param {Date} [lastRetrieved]
|
|
@@ -17238,8 +17123,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
17238
17123
|
* @throws {RequiredError}
|
|
17239
17124
|
* @memberof DoctorsApi
|
|
17240
17125
|
*/
|
|
17241
|
-
public apiV2DoctorsGet(hospitalId?: string, hospitalName?: string,
|
|
17242
|
-
return DoctorsApiFp(this.configuration).apiV2DoctorsGet(hospitalId, hospitalName,
|
|
17126
|
+
public apiV2DoctorsGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, languageCode?: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
17127
|
+
return DoctorsApiFp(this.configuration).apiV2DoctorsGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
17243
17128
|
}
|
|
17244
17129
|
|
|
17245
17130
|
/**
|
|
@@ -17247,18 +17132,16 @@ export class DoctorsApi extends BaseAPI {
|
|
|
17247
17132
|
* @summary Get all Doctors.
|
|
17248
17133
|
* @param {string} [hospitalId]
|
|
17249
17134
|
* @param {string} [hospitalName]
|
|
17250
|
-
* @param {string} [languageCode]
|
|
17251
|
-
* @param {boolean} [returnDefaultValue]
|
|
17252
17135
|
* @param {Array<string>} [ids]
|
|
17253
17136
|
* @param {string} [specialtyId]
|
|
17254
17137
|
* @param {boolean} [consultationEnabled]
|
|
17138
|
+
* @param {string} [languageCode]
|
|
17255
17139
|
* @param {string} [id]
|
|
17256
17140
|
* @param {string} [fullname]
|
|
17257
17141
|
* @param {string} [email]
|
|
17258
17142
|
* @param {Gender} [gender]
|
|
17259
17143
|
* @param {Date} [dateOfBirth]
|
|
17260
17144
|
* @param {Date} [created]
|
|
17261
|
-
* @param {boolean} [showHidden]
|
|
17262
17145
|
* @param {number} [page]
|
|
17263
17146
|
* @param {number} [limit]
|
|
17264
17147
|
* @param {Date} [lastRetrieved]
|
|
@@ -17266,21 +17149,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
17266
17149
|
* @throws {RequiredError}
|
|
17267
17150
|
* @memberof DoctorsApi
|
|
17268
17151
|
*/
|
|
17269
|
-
public apiV2DoctorsSimpleGet(hospitalId?: string, hospitalName?: string,
|
|
17270
|
-
return DoctorsApiFp(this.configuration).apiV2DoctorsSimpleGet(hospitalId, hospitalName,
|
|
17271
|
-
}
|
|
17272
|
-
|
|
17273
|
-
/**
|
|
17274
|
-
*
|
|
17275
|
-
* @param {string} slug
|
|
17276
|
-
* @param {string} [languageCode]
|
|
17277
|
-
* @param {boolean} [returnDefaultValue]
|
|
17278
|
-
* @param {*} [options] Override http request option.
|
|
17279
|
-
* @throws {RequiredError}
|
|
17280
|
-
* @memberof DoctorsApi
|
|
17281
|
-
*/
|
|
17282
|
-
public apiV2DoctorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) {
|
|
17283
|
-
return DoctorsApiFp(this.configuration).apiV2DoctorsSlugGet(slug, languageCode, returnDefaultValue, options).then((request) => request(this.axios, this.basePath));
|
|
17152
|
+
public apiV2DoctorsSimpleGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, languageCode?: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
17153
|
+
return DoctorsApiFp(this.configuration).apiV2DoctorsSimpleGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
17284
17154
|
}
|
|
17285
17155
|
}
|
|
17286
17156
|
|