ch-api-client-typescript2 3.5.2 → 3.5.3
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 +107 -19
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +42 -14
- package/package.json +1 -1
- package/src/api.ts +129 -25
package/lib/api.js
CHANGED
|
@@ -6361,9 +6361,12 @@ var DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
|
|
|
6361
6361
|
* @summary Get all doctor affiliations.
|
|
6362
6362
|
* @param {string} [hospitalId]
|
|
6363
6363
|
* @param {string} [hospitalName]
|
|
6364
|
+
* @param {string} [specialtyId]
|
|
6364
6365
|
* @param {string} [doctorId]
|
|
6365
6366
|
* @param {string} [doctorName]
|
|
6366
6367
|
* @param {string} [doctorSlug]
|
|
6368
|
+
* @param {string} [exceptDoctorId]
|
|
6369
|
+
* @param {boolean} [consultationEnabled]
|
|
6367
6370
|
* @param {string} [languageCode]
|
|
6368
6371
|
* @param {number} [page]
|
|
6369
6372
|
* @param {number} [limit]
|
|
@@ -6371,7 +6374,7 @@ var DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
|
|
|
6371
6374
|
* @param {*} [options] Override http request option.
|
|
6372
6375
|
* @throws {RequiredError}
|
|
6373
6376
|
*/
|
|
6374
|
-
apiV2DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options) {
|
|
6377
|
+
apiV2DoctoraffiliationsGet: function (hospitalId, hospitalName, specialtyId, doctorId, doctorName, doctorSlug, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options) {
|
|
6375
6378
|
if (options === void 0) { options = {}; }
|
|
6376
6379
|
return __awaiter(_this, void 0, void 0, function () {
|
|
6377
6380
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -6390,6 +6393,9 @@ var DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
|
|
|
6390
6393
|
if (hospitalName !== undefined) {
|
|
6391
6394
|
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
6392
6395
|
}
|
|
6396
|
+
if (specialtyId !== undefined) {
|
|
6397
|
+
localVarQueryParameter['SpecialtyId'] = specialtyId;
|
|
6398
|
+
}
|
|
6393
6399
|
if (doctorId !== undefined) {
|
|
6394
6400
|
localVarQueryParameter['DoctorId'] = doctorId;
|
|
6395
6401
|
}
|
|
@@ -6399,6 +6405,12 @@ var DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
|
|
|
6399
6405
|
if (doctorSlug !== undefined) {
|
|
6400
6406
|
localVarQueryParameter['DoctorSlug'] = doctorSlug;
|
|
6401
6407
|
}
|
|
6408
|
+
if (exceptDoctorId !== undefined) {
|
|
6409
|
+
localVarQueryParameter['ExceptDoctorId'] = exceptDoctorId;
|
|
6410
|
+
}
|
|
6411
|
+
if (consultationEnabled !== undefined) {
|
|
6412
|
+
localVarQueryParameter['ConsultationEnabled'] = consultationEnabled;
|
|
6413
|
+
}
|
|
6402
6414
|
if (languageCode !== undefined) {
|
|
6403
6415
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
6404
6416
|
}
|
|
@@ -6511,9 +6523,12 @@ var DoctorAffiliationsApiFp = function (configuration) {
|
|
|
6511
6523
|
* @summary Get all doctor affiliations.
|
|
6512
6524
|
* @param {string} [hospitalId]
|
|
6513
6525
|
* @param {string} [hospitalName]
|
|
6526
|
+
* @param {string} [specialtyId]
|
|
6514
6527
|
* @param {string} [doctorId]
|
|
6515
6528
|
* @param {string} [doctorName]
|
|
6516
6529
|
* @param {string} [doctorSlug]
|
|
6530
|
+
* @param {string} [exceptDoctorId]
|
|
6531
|
+
* @param {boolean} [consultationEnabled]
|
|
6517
6532
|
* @param {string} [languageCode]
|
|
6518
6533
|
* @param {number} [page]
|
|
6519
6534
|
* @param {number} [limit]
|
|
@@ -6521,12 +6536,12 @@ var DoctorAffiliationsApiFp = function (configuration) {
|
|
|
6521
6536
|
* @param {*} [options] Override http request option.
|
|
6522
6537
|
* @throws {RequiredError}
|
|
6523
6538
|
*/
|
|
6524
|
-
apiV2DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options) {
|
|
6539
|
+
apiV2DoctoraffiliationsGet: function (hospitalId, hospitalName, specialtyId, doctorId, doctorName, doctorSlug, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options) {
|
|
6525
6540
|
return __awaiter(this, void 0, void 0, function () {
|
|
6526
6541
|
var localVarAxiosArgs;
|
|
6527
6542
|
return __generator(this, function (_a) {
|
|
6528
6543
|
switch (_a.label) {
|
|
6529
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options)];
|
|
6544
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, specialtyId, doctorId, doctorName, doctorSlug, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options)];
|
|
6530
6545
|
case 1:
|
|
6531
6546
|
localVarAxiosArgs = _a.sent();
|
|
6532
6547
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -6590,9 +6605,12 @@ var DoctorAffiliationsApiFactory = function (configuration, basePath, axios) {
|
|
|
6590
6605
|
* @summary Get all doctor affiliations.
|
|
6591
6606
|
* @param {string} [hospitalId]
|
|
6592
6607
|
* @param {string} [hospitalName]
|
|
6608
|
+
* @param {string} [specialtyId]
|
|
6593
6609
|
* @param {string} [doctorId]
|
|
6594
6610
|
* @param {string} [doctorName]
|
|
6595
6611
|
* @param {string} [doctorSlug]
|
|
6612
|
+
* @param {string} [exceptDoctorId]
|
|
6613
|
+
* @param {boolean} [consultationEnabled]
|
|
6596
6614
|
* @param {string} [languageCode]
|
|
6597
6615
|
* @param {number} [page]
|
|
6598
6616
|
* @param {number} [limit]
|
|
@@ -6600,8 +6618,8 @@ var DoctorAffiliationsApiFactory = function (configuration, basePath, axios) {
|
|
|
6600
6618
|
* @param {*} [options] Override http request option.
|
|
6601
6619
|
* @throws {RequiredError}
|
|
6602
6620
|
*/
|
|
6603
|
-
apiV2DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options) {
|
|
6604
|
-
return localVarFp.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
6621
|
+
apiV2DoctoraffiliationsGet: function (hospitalId, hospitalName, specialtyId, doctorId, doctorName, doctorSlug, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options) {
|
|
6622
|
+
return localVarFp.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, specialtyId, doctorId, doctorName, doctorSlug, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
6605
6623
|
},
|
|
6606
6624
|
/**
|
|
6607
6625
|
*
|
|
@@ -6643,9 +6661,12 @@ var DoctorAffiliationsApi = /** @class */ (function (_super) {
|
|
|
6643
6661
|
* @summary Get all doctor affiliations.
|
|
6644
6662
|
* @param {string} [hospitalId]
|
|
6645
6663
|
* @param {string} [hospitalName]
|
|
6664
|
+
* @param {string} [specialtyId]
|
|
6646
6665
|
* @param {string} [doctorId]
|
|
6647
6666
|
* @param {string} [doctorName]
|
|
6648
6667
|
* @param {string} [doctorSlug]
|
|
6668
|
+
* @param {string} [exceptDoctorId]
|
|
6669
|
+
* @param {boolean} [consultationEnabled]
|
|
6649
6670
|
* @param {string} [languageCode]
|
|
6650
6671
|
* @param {number} [page]
|
|
6651
6672
|
* @param {number} [limit]
|
|
@@ -6654,9 +6675,9 @@ var DoctorAffiliationsApi = /** @class */ (function (_super) {
|
|
|
6654
6675
|
* @throws {RequiredError}
|
|
6655
6676
|
* @memberof DoctorAffiliationsApi
|
|
6656
6677
|
*/
|
|
6657
|
-
DoctorAffiliationsApi.prototype.apiV2DoctoraffiliationsGet = function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options) {
|
|
6678
|
+
DoctorAffiliationsApi.prototype.apiV2DoctoraffiliationsGet = function (hospitalId, hospitalName, specialtyId, doctorId, doctorName, doctorSlug, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options) {
|
|
6658
6679
|
var _this = this;
|
|
6659
|
-
return (0, exports.DoctorAffiliationsApiFp)(this.configuration).apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
6680
|
+
return (0, exports.DoctorAffiliationsApiFp)(this.configuration).apiV2DoctoraffiliationsGet(hospitalId, hospitalName, specialtyId, doctorId, doctorName, doctorSlug, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
6660
6681
|
};
|
|
6661
6682
|
/**
|
|
6662
6683
|
*
|
|
@@ -15439,6 +15460,7 @@ var ServiceReviewsApiAxiosParamCreator = function (configuration) {
|
|
|
15439
15460
|
*
|
|
15440
15461
|
* @summary Get all ServiceReviews.
|
|
15441
15462
|
* @param {string} [id]
|
|
15463
|
+
* @param {string} [hospitalId]
|
|
15442
15464
|
* @param {string} [serviceId]
|
|
15443
15465
|
* @param {string} [serviceName]
|
|
15444
15466
|
* @param {string} [patientId]
|
|
@@ -15455,7 +15477,7 @@ var ServiceReviewsApiAxiosParamCreator = function (configuration) {
|
|
|
15455
15477
|
* @param {*} [options] Override http request option.
|
|
15456
15478
|
* @throws {RequiredError}
|
|
15457
15479
|
*/
|
|
15458
|
-
apiV2ServicereviewsGet: function (id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
15480
|
+
apiV2ServicereviewsGet: function (id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
15459
15481
|
if (options === void 0) { options = {}; }
|
|
15460
15482
|
return __awaiter(_this, void 0, void 0, function () {
|
|
15461
15483
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -15471,6 +15493,9 @@ var ServiceReviewsApiAxiosParamCreator = function (configuration) {
|
|
|
15471
15493
|
if (id !== undefined) {
|
|
15472
15494
|
localVarQueryParameter['Id'] = id;
|
|
15473
15495
|
}
|
|
15496
|
+
if (hospitalId !== undefined) {
|
|
15497
|
+
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
15498
|
+
}
|
|
15474
15499
|
if (serviceId !== undefined) {
|
|
15475
15500
|
localVarQueryParameter['ServiceId'] = serviceId;
|
|
15476
15501
|
}
|
|
@@ -15938,6 +15963,7 @@ var ServiceReviewsApiFp = function (configuration) {
|
|
|
15938
15963
|
*
|
|
15939
15964
|
* @summary Get all ServiceReviews.
|
|
15940
15965
|
* @param {string} [id]
|
|
15966
|
+
* @param {string} [hospitalId]
|
|
15941
15967
|
* @param {string} [serviceId]
|
|
15942
15968
|
* @param {string} [serviceName]
|
|
15943
15969
|
* @param {string} [patientId]
|
|
@@ -15954,12 +15980,12 @@ var ServiceReviewsApiFp = function (configuration) {
|
|
|
15954
15980
|
* @param {*} [options] Override http request option.
|
|
15955
15981
|
* @throws {RequiredError}
|
|
15956
15982
|
*/
|
|
15957
|
-
apiV2ServicereviewsGet: function (id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
15983
|
+
apiV2ServicereviewsGet: function (id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
15958
15984
|
return __awaiter(this, void 0, void 0, function () {
|
|
15959
15985
|
var localVarAxiosArgs;
|
|
15960
15986
|
return __generator(this, function (_a) {
|
|
15961
15987
|
switch (_a.label) {
|
|
15962
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ServicereviewsGet(id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
15988
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ServicereviewsGet(id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
15963
15989
|
case 1:
|
|
15964
15990
|
localVarAxiosArgs = _a.sent();
|
|
15965
15991
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -16172,6 +16198,7 @@ var ServiceReviewsApiFactory = function (configuration, basePath, axios) {
|
|
|
16172
16198
|
*
|
|
16173
16199
|
* @summary Get all ServiceReviews.
|
|
16174
16200
|
* @param {string} [id]
|
|
16201
|
+
* @param {string} [hospitalId]
|
|
16175
16202
|
* @param {string} [serviceId]
|
|
16176
16203
|
* @param {string} [serviceName]
|
|
16177
16204
|
* @param {string} [patientId]
|
|
@@ -16188,8 +16215,8 @@ var ServiceReviewsApiFactory = function (configuration, basePath, axios) {
|
|
|
16188
16215
|
* @param {*} [options] Override http request option.
|
|
16189
16216
|
* @throws {RequiredError}
|
|
16190
16217
|
*/
|
|
16191
|
-
apiV2ServicereviewsGet: function (id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
16192
|
-
return localVarFp.apiV2ServicereviewsGet(id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
16218
|
+
apiV2ServicereviewsGet: function (id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
16219
|
+
return localVarFp.apiV2ServicereviewsGet(id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
16193
16220
|
},
|
|
16194
16221
|
/**
|
|
16195
16222
|
*
|
|
@@ -16310,6 +16337,7 @@ var ServiceReviewsApi = /** @class */ (function (_super) {
|
|
|
16310
16337
|
*
|
|
16311
16338
|
* @summary Get all ServiceReviews.
|
|
16312
16339
|
* @param {string} [id]
|
|
16340
|
+
* @param {string} [hospitalId]
|
|
16313
16341
|
* @param {string} [serviceId]
|
|
16314
16342
|
* @param {string} [serviceName]
|
|
16315
16343
|
* @param {string} [patientId]
|
|
@@ -16327,9 +16355,9 @@ var ServiceReviewsApi = /** @class */ (function (_super) {
|
|
|
16327
16355
|
* @throws {RequiredError}
|
|
16328
16356
|
* @memberof ServiceReviewsApi
|
|
16329
16357
|
*/
|
|
16330
|
-
ServiceReviewsApi.prototype.apiV2ServicereviewsGet = function (id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
16358
|
+
ServiceReviewsApi.prototype.apiV2ServicereviewsGet = function (id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
16331
16359
|
var _this = this;
|
|
16332
|
-
return (0, exports.ServiceReviewsApiFp)(this.configuration).apiV2ServicereviewsGet(id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
16360
|
+
return (0, exports.ServiceReviewsApiFp)(this.configuration).apiV2ServicereviewsGet(id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
16333
16361
|
};
|
|
16334
16362
|
/**
|
|
16335
16363
|
*
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -571,6 +571,12 @@ export interface ArticleItemModel {
|
|
|
571
571
|
* @memberof ArticleItemModel
|
|
572
572
|
*/
|
|
573
573
|
'slug'?: string | null;
|
|
574
|
+
/**
|
|
575
|
+
*
|
|
576
|
+
* @type {string}
|
|
577
|
+
* @memberof ArticleItemModel
|
|
578
|
+
*/
|
|
579
|
+
'description'?: string | null;
|
|
574
580
|
/**
|
|
575
581
|
*
|
|
576
582
|
* @type {boolean}
|
|
@@ -668,6 +674,12 @@ export interface ArticleModel {
|
|
|
668
674
|
* @memberof ArticleModel
|
|
669
675
|
*/
|
|
670
676
|
'slug'?: string | null;
|
|
677
|
+
/**
|
|
678
|
+
*
|
|
679
|
+
* @type {string}
|
|
680
|
+
* @memberof ArticleModel
|
|
681
|
+
*/
|
|
682
|
+
'description'?: string | null;
|
|
671
683
|
/**
|
|
672
684
|
*
|
|
673
685
|
* @type {boolean}
|
|
@@ -734,12 +746,6 @@ export interface ArticleModel {
|
|
|
734
746
|
* @memberof ArticleModel
|
|
735
747
|
*/
|
|
736
748
|
'auditableEntity'?: AuditableEntity;
|
|
737
|
-
/**
|
|
738
|
-
*
|
|
739
|
-
* @type {string}
|
|
740
|
-
* @memberof ArticleModel
|
|
741
|
-
*/
|
|
742
|
-
'description'?: string | null;
|
|
743
749
|
/**
|
|
744
750
|
*
|
|
745
751
|
* @type {string}
|
|
@@ -3063,6 +3069,12 @@ export interface DealItemModel {
|
|
|
3063
3069
|
* @memberof DealItemModel
|
|
3064
3070
|
*/
|
|
3065
3071
|
'slug'?: string | null;
|
|
3072
|
+
/**
|
|
3073
|
+
*
|
|
3074
|
+
* @type {string}
|
|
3075
|
+
* @memberof DealItemModel
|
|
3076
|
+
*/
|
|
3077
|
+
'description'?: string | null;
|
|
3066
3078
|
/**
|
|
3067
3079
|
*
|
|
3068
3080
|
* @type {boolean}
|
|
@@ -3105,6 +3117,18 @@ export interface DealItemModel {
|
|
|
3105
3117
|
* @memberof DealItemModel
|
|
3106
3118
|
*/
|
|
3107
3119
|
'photoThumbnail'?: string | null;
|
|
3120
|
+
/**
|
|
3121
|
+
*
|
|
3122
|
+
* @type {number}
|
|
3123
|
+
* @memberof DealItemModel
|
|
3124
|
+
*/
|
|
3125
|
+
'lowestPrice'?: number;
|
|
3126
|
+
/**
|
|
3127
|
+
*
|
|
3128
|
+
* @type {number}
|
|
3129
|
+
* @memberof DealItemModel
|
|
3130
|
+
*/
|
|
3131
|
+
'dealServicesCount'?: number;
|
|
3108
3132
|
/**
|
|
3109
3133
|
*
|
|
3110
3134
|
* @type {number}
|
|
@@ -3185,6 +3209,12 @@ export interface DealModel {
|
|
|
3185
3209
|
* @memberof DealModel
|
|
3186
3210
|
*/
|
|
3187
3211
|
'slug'?: string | null;
|
|
3212
|
+
/**
|
|
3213
|
+
*
|
|
3214
|
+
* @type {string}
|
|
3215
|
+
* @memberof DealModel
|
|
3216
|
+
*/
|
|
3217
|
+
'description'?: string | null;
|
|
3188
3218
|
/**
|
|
3189
3219
|
*
|
|
3190
3220
|
* @type {boolean}
|
|
@@ -3232,19 +3262,25 @@ export interface DealModel {
|
|
|
3232
3262
|
* @type {number}
|
|
3233
3263
|
* @memberof DealModel
|
|
3234
3264
|
*/
|
|
3235
|
-
'
|
|
3265
|
+
'lowestPrice'?: number;
|
|
3236
3266
|
/**
|
|
3237
3267
|
*
|
|
3238
|
-
* @type {
|
|
3268
|
+
* @type {number}
|
|
3239
3269
|
* @memberof DealModel
|
|
3240
3270
|
*/
|
|
3241
|
-
'
|
|
3271
|
+
'dealServicesCount'?: number;
|
|
3242
3272
|
/**
|
|
3243
3273
|
*
|
|
3244
|
-
* @type {
|
|
3274
|
+
* @type {number}
|
|
3245
3275
|
* @memberof DealModel
|
|
3246
3276
|
*/
|
|
3247
|
-
'
|
|
3277
|
+
'order'?: number;
|
|
3278
|
+
/**
|
|
3279
|
+
*
|
|
3280
|
+
* @type {AuditableEntity}
|
|
3281
|
+
* @memberof DealModel
|
|
3282
|
+
*/
|
|
3283
|
+
'auditableEntity'?: AuditableEntity;
|
|
3248
3284
|
/**
|
|
3249
3285
|
*
|
|
3250
3286
|
* @type {string}
|
|
@@ -3668,6 +3704,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
3668
3704
|
* @memberof DoctorAffiliationItemModel
|
|
3669
3705
|
*/
|
|
3670
3706
|
'hospitalSlug'?: string | null;
|
|
3707
|
+
/**
|
|
3708
|
+
*
|
|
3709
|
+
* @type {string}
|
|
3710
|
+
* @memberof DoctorAffiliationItemModel
|
|
3711
|
+
*/
|
|
3712
|
+
'doctorId'?: string | null;
|
|
3671
3713
|
/**
|
|
3672
3714
|
*
|
|
3673
3715
|
* @type {string}
|
|
@@ -3710,6 +3752,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
3710
3752
|
* @memberof DoctorAffiliationItemModel
|
|
3711
3753
|
*/
|
|
3712
3754
|
'consultationFee'?: number | null;
|
|
3755
|
+
/**
|
|
3756
|
+
*
|
|
3757
|
+
* @type {string}
|
|
3758
|
+
* @memberof DoctorAffiliationItemModel
|
|
3759
|
+
*/
|
|
3760
|
+
'specialtiesSummerized'?: string | null;
|
|
3713
3761
|
/**
|
|
3714
3762
|
*
|
|
3715
3763
|
* @type {number}
|
|
@@ -3753,6 +3801,12 @@ export interface DoctorAffiliationModel {
|
|
|
3753
3801
|
* @memberof DoctorAffiliationModel
|
|
3754
3802
|
*/
|
|
3755
3803
|
'hospitalSlug'?: string | null;
|
|
3804
|
+
/**
|
|
3805
|
+
*
|
|
3806
|
+
* @type {string}
|
|
3807
|
+
* @memberof DoctorAffiliationModel
|
|
3808
|
+
*/
|
|
3809
|
+
'doctorId'?: string | null;
|
|
3756
3810
|
/**
|
|
3757
3811
|
*
|
|
3758
3812
|
* @type {string}
|
|
@@ -3795,6 +3849,12 @@ export interface DoctorAffiliationModel {
|
|
|
3795
3849
|
* @memberof DoctorAffiliationModel
|
|
3796
3850
|
*/
|
|
3797
3851
|
'consultationFee'?: number | null;
|
|
3852
|
+
/**
|
|
3853
|
+
*
|
|
3854
|
+
* @type {string}
|
|
3855
|
+
* @memberof DoctorAffiliationModel
|
|
3856
|
+
*/
|
|
3857
|
+
'specialtiesSummerized'?: string | null;
|
|
3798
3858
|
/**
|
|
3799
3859
|
*
|
|
3800
3860
|
* @type {number}
|
|
@@ -5857,6 +5917,18 @@ export interface HospitalServiceItemModel {
|
|
|
5857
5917
|
* @memberof HospitalServiceItemModel
|
|
5858
5918
|
*/
|
|
5859
5919
|
'confirmed'?: boolean;
|
|
5920
|
+
/**
|
|
5921
|
+
*
|
|
5922
|
+
* @type {string}
|
|
5923
|
+
* @memberof HospitalServiceItemModel
|
|
5924
|
+
*/
|
|
5925
|
+
'hospitalSpecialtyName'?: string | null;
|
|
5926
|
+
/**
|
|
5927
|
+
*
|
|
5928
|
+
* @type {string}
|
|
5929
|
+
* @memberof HospitalServiceItemModel
|
|
5930
|
+
*/
|
|
5931
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
5860
5932
|
/**
|
|
5861
5933
|
*
|
|
5862
5934
|
* @type {number}
|
|
@@ -15244,9 +15316,12 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
15244
15316
|
* @summary Get all doctor affiliations.
|
|
15245
15317
|
* @param {string} [hospitalId]
|
|
15246
15318
|
* @param {string} [hospitalName]
|
|
15319
|
+
* @param {string} [specialtyId]
|
|
15247
15320
|
* @param {string} [doctorId]
|
|
15248
15321
|
* @param {string} [doctorName]
|
|
15249
15322
|
* @param {string} [doctorSlug]
|
|
15323
|
+
* @param {string} [exceptDoctorId]
|
|
15324
|
+
* @param {boolean} [consultationEnabled]
|
|
15250
15325
|
* @param {string} [languageCode]
|
|
15251
15326
|
* @param {number} [page]
|
|
15252
15327
|
* @param {number} [limit]
|
|
@@ -15254,7 +15329,7 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
15254
15329
|
* @param {*} [options] Override http request option.
|
|
15255
15330
|
* @throws {RequiredError}
|
|
15256
15331
|
*/
|
|
15257
|
-
apiV2DoctoraffiliationsGet: async (hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
15332
|
+
apiV2DoctoraffiliationsGet: async (hospitalId?: string, hospitalName?: string, specialtyId?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, exceptDoctorId?: string, consultationEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
15258
15333
|
const localVarPath = `/api/v2/doctoraffiliations`;
|
|
15259
15334
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
15260
15335
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -15275,6 +15350,10 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
15275
15350
|
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
15276
15351
|
}
|
|
15277
15352
|
|
|
15353
|
+
if (specialtyId !== undefined) {
|
|
15354
|
+
localVarQueryParameter['SpecialtyId'] = specialtyId;
|
|
15355
|
+
}
|
|
15356
|
+
|
|
15278
15357
|
if (doctorId !== undefined) {
|
|
15279
15358
|
localVarQueryParameter['DoctorId'] = doctorId;
|
|
15280
15359
|
}
|
|
@@ -15287,6 +15366,14 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
15287
15366
|
localVarQueryParameter['DoctorSlug'] = doctorSlug;
|
|
15288
15367
|
}
|
|
15289
15368
|
|
|
15369
|
+
if (exceptDoctorId !== undefined) {
|
|
15370
|
+
localVarQueryParameter['ExceptDoctorId'] = exceptDoctorId;
|
|
15371
|
+
}
|
|
15372
|
+
|
|
15373
|
+
if (consultationEnabled !== undefined) {
|
|
15374
|
+
localVarQueryParameter['ConsultationEnabled'] = consultationEnabled;
|
|
15375
|
+
}
|
|
15376
|
+
|
|
15290
15377
|
if (languageCode !== undefined) {
|
|
15291
15378
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
15292
15379
|
}
|
|
@@ -15408,9 +15495,12 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
15408
15495
|
* @summary Get all doctor affiliations.
|
|
15409
15496
|
* @param {string} [hospitalId]
|
|
15410
15497
|
* @param {string} [hospitalName]
|
|
15498
|
+
* @param {string} [specialtyId]
|
|
15411
15499
|
* @param {string} [doctorId]
|
|
15412
15500
|
* @param {string} [doctorName]
|
|
15413
15501
|
* @param {string} [doctorSlug]
|
|
15502
|
+
* @param {string} [exceptDoctorId]
|
|
15503
|
+
* @param {boolean} [consultationEnabled]
|
|
15414
15504
|
* @param {string} [languageCode]
|
|
15415
15505
|
* @param {number} [page]
|
|
15416
15506
|
* @param {number} [limit]
|
|
@@ -15418,8 +15508,8 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
15418
15508
|
* @param {*} [options] Override http request option.
|
|
15419
15509
|
* @throws {RequiredError}
|
|
15420
15510
|
*/
|
|
15421
|
-
async apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
|
|
15422
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options);
|
|
15511
|
+
async apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, specialtyId?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, exceptDoctorId?: string, consultationEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
|
|
15512
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, specialtyId, doctorId, doctorName, doctorSlug, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options);
|
|
15423
15513
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
15424
15514
|
},
|
|
15425
15515
|
/**
|
|
@@ -15460,9 +15550,12 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
15460
15550
|
* @summary Get all doctor affiliations.
|
|
15461
15551
|
* @param {string} [hospitalId]
|
|
15462
15552
|
* @param {string} [hospitalName]
|
|
15553
|
+
* @param {string} [specialtyId]
|
|
15463
15554
|
* @param {string} [doctorId]
|
|
15464
15555
|
* @param {string} [doctorName]
|
|
15465
15556
|
* @param {string} [doctorSlug]
|
|
15557
|
+
* @param {string} [exceptDoctorId]
|
|
15558
|
+
* @param {boolean} [consultationEnabled]
|
|
15466
15559
|
* @param {string} [languageCode]
|
|
15467
15560
|
* @param {number} [page]
|
|
15468
15561
|
* @param {number} [limit]
|
|
@@ -15470,8 +15563,8 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
15470
15563
|
* @param {*} [options] Override http request option.
|
|
15471
15564
|
* @throws {RequiredError}
|
|
15472
15565
|
*/
|
|
15473
|
-
apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
|
|
15474
|
-
return localVarFp.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
15566
|
+
apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, specialtyId?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, exceptDoctorId?: string, consultationEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
|
|
15567
|
+
return localVarFp.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, specialtyId, doctorId, doctorName, doctorSlug, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
15475
15568
|
},
|
|
15476
15569
|
/**
|
|
15477
15570
|
*
|
|
@@ -15509,9 +15602,12 @@ export class DoctorAffiliationsApi extends BaseAPI {
|
|
|
15509
15602
|
* @summary Get all doctor affiliations.
|
|
15510
15603
|
* @param {string} [hospitalId]
|
|
15511
15604
|
* @param {string} [hospitalName]
|
|
15605
|
+
* @param {string} [specialtyId]
|
|
15512
15606
|
* @param {string} [doctorId]
|
|
15513
15607
|
* @param {string} [doctorName]
|
|
15514
15608
|
* @param {string} [doctorSlug]
|
|
15609
|
+
* @param {string} [exceptDoctorId]
|
|
15610
|
+
* @param {boolean} [consultationEnabled]
|
|
15515
15611
|
* @param {string} [languageCode]
|
|
15516
15612
|
* @param {number} [page]
|
|
15517
15613
|
* @param {number} [limit]
|
|
@@ -15520,8 +15616,8 @@ export class DoctorAffiliationsApi extends BaseAPI {
|
|
|
15520
15616
|
* @throws {RequiredError}
|
|
15521
15617
|
* @memberof DoctorAffiliationsApi
|
|
15522
15618
|
*/
|
|
15523
|
-
public apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
15524
|
-
return DoctorAffiliationsApiFp(this.configuration).apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
15619
|
+
public apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, specialtyId?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, exceptDoctorId?: string, consultationEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
15620
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV2DoctoraffiliationsGet(hospitalId, hospitalName, specialtyId, doctorId, doctorName, doctorSlug, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
15525
15621
|
}
|
|
15526
15622
|
|
|
15527
15623
|
/**
|
|
@@ -23771,6 +23867,7 @@ export const ServiceReviewsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
23771
23867
|
*
|
|
23772
23868
|
* @summary Get all ServiceReviews.
|
|
23773
23869
|
* @param {string} [id]
|
|
23870
|
+
* @param {string} [hospitalId]
|
|
23774
23871
|
* @param {string} [serviceId]
|
|
23775
23872
|
* @param {string} [serviceName]
|
|
23776
23873
|
* @param {string} [patientId]
|
|
@@ -23787,7 +23884,7 @@ export const ServiceReviewsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
23787
23884
|
* @param {*} [options] Override http request option.
|
|
23788
23885
|
* @throws {RequiredError}
|
|
23789
23886
|
*/
|
|
23790
|
-
apiV2ServicereviewsGet: async (id?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
23887
|
+
apiV2ServicereviewsGet: async (id?: string, hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
23791
23888
|
const localVarPath = `/api/v2/servicereviews`;
|
|
23792
23889
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23793
23890
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -23804,6 +23901,10 @@ export const ServiceReviewsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
23804
23901
|
localVarQueryParameter['Id'] = id;
|
|
23805
23902
|
}
|
|
23806
23903
|
|
|
23904
|
+
if (hospitalId !== undefined) {
|
|
23905
|
+
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
23906
|
+
}
|
|
23907
|
+
|
|
23807
23908
|
if (serviceId !== undefined) {
|
|
23808
23909
|
localVarQueryParameter['ServiceId'] = serviceId;
|
|
23809
23910
|
}
|
|
@@ -24268,6 +24369,7 @@ export const ServiceReviewsApiFp = function(configuration?: Configuration) {
|
|
|
24268
24369
|
*
|
|
24269
24370
|
* @summary Get all ServiceReviews.
|
|
24270
24371
|
* @param {string} [id]
|
|
24372
|
+
* @param {string} [hospitalId]
|
|
24271
24373
|
* @param {string} [serviceId]
|
|
24272
24374
|
* @param {string} [serviceName]
|
|
24273
24375
|
* @param {string} [patientId]
|
|
@@ -24284,8 +24386,8 @@ export const ServiceReviewsApiFp = function(configuration?: Configuration) {
|
|
|
24284
24386
|
* @param {*} [options] Override http request option.
|
|
24285
24387
|
* @throws {RequiredError}
|
|
24286
24388
|
*/
|
|
24287
|
-
async apiV2ServicereviewsGet(id?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceReviewsModel>> {
|
|
24288
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2ServicereviewsGet(id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
24389
|
+
async apiV2ServicereviewsGet(id?: string, hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceReviewsModel>> {
|
|
24390
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2ServicereviewsGet(id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
24289
24391
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24290
24392
|
},
|
|
24291
24393
|
/**
|
|
@@ -24412,6 +24514,7 @@ export const ServiceReviewsApiFactory = function (configuration?: Configuration,
|
|
|
24412
24514
|
*
|
|
24413
24515
|
* @summary Get all ServiceReviews.
|
|
24414
24516
|
* @param {string} [id]
|
|
24517
|
+
* @param {string} [hospitalId]
|
|
24415
24518
|
* @param {string} [serviceId]
|
|
24416
24519
|
* @param {string} [serviceName]
|
|
24417
24520
|
* @param {string} [patientId]
|
|
@@ -24428,8 +24531,8 @@ export const ServiceReviewsApiFactory = function (configuration?: Configuration,
|
|
|
24428
24531
|
* @param {*} [options] Override http request option.
|
|
24429
24532
|
* @throws {RequiredError}
|
|
24430
24533
|
*/
|
|
24431
|
-
apiV2ServicereviewsGet(id?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ServiceReviewsModel> {
|
|
24432
|
-
return localVarFp.apiV2ServicereviewsGet(id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
24534
|
+
apiV2ServicereviewsGet(id?: string, hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ServiceReviewsModel> {
|
|
24535
|
+
return localVarFp.apiV2ServicereviewsGet(id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
24433
24536
|
},
|
|
24434
24537
|
/**
|
|
24435
24538
|
*
|
|
@@ -24546,6 +24649,7 @@ export class ServiceReviewsApi extends BaseAPI {
|
|
|
24546
24649
|
*
|
|
24547
24650
|
* @summary Get all ServiceReviews.
|
|
24548
24651
|
* @param {string} [id]
|
|
24652
|
+
* @param {string} [hospitalId]
|
|
24549
24653
|
* @param {string} [serviceId]
|
|
24550
24654
|
* @param {string} [serviceName]
|
|
24551
24655
|
* @param {string} [patientId]
|
|
@@ -24563,8 +24667,8 @@ export class ServiceReviewsApi extends BaseAPI {
|
|
|
24563
24667
|
* @throws {RequiredError}
|
|
24564
24668
|
* @memberof ServiceReviewsApi
|
|
24565
24669
|
*/
|
|
24566
|
-
public apiV2ServicereviewsGet(id?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
24567
|
-
return ServiceReviewsApiFp(this.configuration).apiV2ServicereviewsGet(id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
24670
|
+
public apiV2ServicereviewsGet(id?: string, hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
24671
|
+
return ServiceReviewsApiFp(this.configuration).apiV2ServicereviewsGet(id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
24568
24672
|
}
|
|
24569
24673
|
|
|
24570
24674
|
/**
|