ch-api-client-typescript2 2.7.0 → 2.7.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 +1324 -18
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +2048 -8
- package/package.json +1 -1
- package/src/api.ts +2323 -18
package/lib/api.d.ts
CHANGED
|
@@ -740,6 +740,16 @@ export interface AuditableEntity {
|
|
|
740
740
|
*/
|
|
741
741
|
'isDeleted'?: boolean;
|
|
742
742
|
}
|
|
743
|
+
/**
|
|
744
|
+
*
|
|
745
|
+
* @export
|
|
746
|
+
* @enum {string}
|
|
747
|
+
*/
|
|
748
|
+
export declare enum AutocompleteMode {
|
|
749
|
+
OneTerm = "OneTerm",
|
|
750
|
+
TwoTerms = "TwoTerms",
|
|
751
|
+
OneTermWithContext = "OneTermWithContext"
|
|
752
|
+
}
|
|
743
753
|
/**
|
|
744
754
|
*
|
|
745
755
|
* @export
|
|
@@ -771,6 +781,69 @@ export interface AwardModel {
|
|
|
771
781
|
*/
|
|
772
782
|
'date'?: Date;
|
|
773
783
|
}
|
|
784
|
+
/**
|
|
785
|
+
*
|
|
786
|
+
* @export
|
|
787
|
+
* @interface AzureSearchModel
|
|
788
|
+
*/
|
|
789
|
+
export interface AzureSearchModel {
|
|
790
|
+
/**
|
|
791
|
+
*
|
|
792
|
+
* @type {number}
|
|
793
|
+
* @memberof AzureSearchModel
|
|
794
|
+
*/
|
|
795
|
+
'hospitals'?: number;
|
|
796
|
+
/**
|
|
797
|
+
*
|
|
798
|
+
* @type {number}
|
|
799
|
+
* @memberof AzureSearchModel
|
|
800
|
+
*/
|
|
801
|
+
'doctors'?: number;
|
|
802
|
+
/**
|
|
803
|
+
*
|
|
804
|
+
* @type {number}
|
|
805
|
+
* @memberof AzureSearchModel
|
|
806
|
+
*/
|
|
807
|
+
'deals'?: number;
|
|
808
|
+
/**
|
|
809
|
+
*
|
|
810
|
+
* @type {number}
|
|
811
|
+
* @memberof AzureSearchModel
|
|
812
|
+
*/
|
|
813
|
+
'specialties'?: number;
|
|
814
|
+
/**
|
|
815
|
+
*
|
|
816
|
+
* @type {number}
|
|
817
|
+
* @memberof AzureSearchModel
|
|
818
|
+
*/
|
|
819
|
+
'specialtyTypes'?: number;
|
|
820
|
+
}
|
|
821
|
+
/**
|
|
822
|
+
*
|
|
823
|
+
* @export
|
|
824
|
+
* @interface AzureSearchServiceAutocompleteModel
|
|
825
|
+
*/
|
|
826
|
+
export interface AzureSearchServiceAutocompleteModel {
|
|
827
|
+
/**
|
|
828
|
+
*
|
|
829
|
+
* @type {Array<string>}
|
|
830
|
+
* @memberof AzureSearchServiceAutocompleteModel
|
|
831
|
+
*/
|
|
832
|
+
'values'?: Array<string> | null;
|
|
833
|
+
}
|
|
834
|
+
/**
|
|
835
|
+
*
|
|
836
|
+
* @export
|
|
837
|
+
* @interface AzureSearchServiceSuggestModel
|
|
838
|
+
*/
|
|
839
|
+
export interface AzureSearchServiceSuggestModel {
|
|
840
|
+
/**
|
|
841
|
+
*
|
|
842
|
+
* @type {Array<string>}
|
|
843
|
+
* @memberof AzureSearchServiceSuggestModel
|
|
844
|
+
*/
|
|
845
|
+
'values'?: Array<string> | null;
|
|
846
|
+
}
|
|
774
847
|
/**
|
|
775
848
|
*
|
|
776
849
|
* @export
|
|
@@ -2673,6 +2746,43 @@ export interface CreateConsultationCommand {
|
|
|
2673
2746
|
*/
|
|
2674
2747
|
'timeZone'?: string | null;
|
|
2675
2748
|
}
|
|
2749
|
+
/**
|
|
2750
|
+
*
|
|
2751
|
+
* @export
|
|
2752
|
+
* @interface CreateMediaCommand
|
|
2753
|
+
*/
|
|
2754
|
+
export interface CreateMediaCommand {
|
|
2755
|
+
/**
|
|
2756
|
+
*
|
|
2757
|
+
* @type {MediaType}
|
|
2758
|
+
* @memberof CreateMediaCommand
|
|
2759
|
+
*/
|
|
2760
|
+
'mediaType'?: MediaType;
|
|
2761
|
+
/**
|
|
2762
|
+
*
|
|
2763
|
+
* @type {string}
|
|
2764
|
+
* @memberof CreateMediaCommand
|
|
2765
|
+
*/
|
|
2766
|
+
'url'?: string | null;
|
|
2767
|
+
/**
|
|
2768
|
+
*
|
|
2769
|
+
* @type {string}
|
|
2770
|
+
* @memberof CreateMediaCommand
|
|
2771
|
+
*/
|
|
2772
|
+
'thumbnailUrl'?: string | null;
|
|
2773
|
+
/**
|
|
2774
|
+
*
|
|
2775
|
+
* @type {string}
|
|
2776
|
+
* @memberof CreateMediaCommand
|
|
2777
|
+
*/
|
|
2778
|
+
'description'?: string | null;
|
|
2779
|
+
/**
|
|
2780
|
+
*
|
|
2781
|
+
* @type {number}
|
|
2782
|
+
* @memberof CreateMediaCommand
|
|
2783
|
+
*/
|
|
2784
|
+
'order'?: number;
|
|
2785
|
+
}
|
|
2676
2786
|
/**
|
|
2677
2787
|
*
|
|
2678
2788
|
* @export
|
|
@@ -2740,6 +2850,49 @@ export interface CreatePatientCommand {
|
|
|
2740
2850
|
*/
|
|
2741
2851
|
'timeZone'?: string | null;
|
|
2742
2852
|
}
|
|
2853
|
+
/**
|
|
2854
|
+
*
|
|
2855
|
+
* @export
|
|
2856
|
+
* @interface CreateServiceReviewCommand
|
|
2857
|
+
*/
|
|
2858
|
+
export interface CreateServiceReviewCommand {
|
|
2859
|
+
/**
|
|
2860
|
+
*
|
|
2861
|
+
* @type {string}
|
|
2862
|
+
* @memberof CreateServiceReviewCommand
|
|
2863
|
+
*/
|
|
2864
|
+
'serviceId'?: string;
|
|
2865
|
+
/**
|
|
2866
|
+
*
|
|
2867
|
+
* @type {string}
|
|
2868
|
+
* @memberof CreateServiceReviewCommand
|
|
2869
|
+
*/
|
|
2870
|
+
'patientId'?: string;
|
|
2871
|
+
/**
|
|
2872
|
+
*
|
|
2873
|
+
* @type {string}
|
|
2874
|
+
* @memberof CreateServiceReviewCommand
|
|
2875
|
+
*/
|
|
2876
|
+
'body'?: string | null;
|
|
2877
|
+
/**
|
|
2878
|
+
*
|
|
2879
|
+
* @type {boolean}
|
|
2880
|
+
* @memberof CreateServiceReviewCommand
|
|
2881
|
+
*/
|
|
2882
|
+
'recommended'?: boolean;
|
|
2883
|
+
/**
|
|
2884
|
+
*
|
|
2885
|
+
* @type {number}
|
|
2886
|
+
* @memberof CreateServiceReviewCommand
|
|
2887
|
+
*/
|
|
2888
|
+
'rate'?: number;
|
|
2889
|
+
/**
|
|
2890
|
+
*
|
|
2891
|
+
* @type {ReviewType}
|
|
2892
|
+
* @memberof CreateServiceReviewCommand
|
|
2893
|
+
*/
|
|
2894
|
+
'reviewType'?: ReviewType;
|
|
2895
|
+
}
|
|
2743
2896
|
/**
|
|
2744
2897
|
*
|
|
2745
2898
|
* @export
|
|
@@ -6379,6 +6532,12 @@ export interface NotificationModel {
|
|
|
6379
6532
|
* @memberof NotificationModel
|
|
6380
6533
|
*/
|
|
6381
6534
|
'isChecked'?: boolean;
|
|
6535
|
+
/**
|
|
6536
|
+
*
|
|
6537
|
+
* @type {boolean}
|
|
6538
|
+
* @memberof NotificationModel
|
|
6539
|
+
*/
|
|
6540
|
+
'isDeleted'?: boolean;
|
|
6382
6541
|
}
|
|
6383
6542
|
/**
|
|
6384
6543
|
*
|
|
@@ -6926,6 +7085,16 @@ export declare enum RejectReason {
|
|
|
6926
7085
|
ScheduleNotAvailable = "ScheduleNotAvailable",
|
|
6927
7086
|
OtherReason = "OtherReason"
|
|
6928
7087
|
}
|
|
7088
|
+
/**
|
|
7089
|
+
*
|
|
7090
|
+
* @export
|
|
7091
|
+
* @enum {string}
|
|
7092
|
+
*/
|
|
7093
|
+
export declare enum ReviewType {
|
|
7094
|
+
Photo = "Photo",
|
|
7095
|
+
SurgeryReview = "SurgeryReview",
|
|
7096
|
+
RealStory = "RealStory"
|
|
7097
|
+
}
|
|
6929
7098
|
/**
|
|
6930
7099
|
*
|
|
6931
7100
|
* @export
|
|
@@ -7031,6 +7200,159 @@ export interface ServiceCategoryModel {
|
|
|
7031
7200
|
*/
|
|
7032
7201
|
'serviceCount'?: number;
|
|
7033
7202
|
}
|
|
7203
|
+
/**
|
|
7204
|
+
*
|
|
7205
|
+
* @export
|
|
7206
|
+
* @interface ServiceReviewItemModel
|
|
7207
|
+
*/
|
|
7208
|
+
export interface ServiceReviewItemModel {
|
|
7209
|
+
/**
|
|
7210
|
+
*
|
|
7211
|
+
* @type {string}
|
|
7212
|
+
* @memberof ServiceReviewItemModel
|
|
7213
|
+
*/
|
|
7214
|
+
'id'?: string;
|
|
7215
|
+
/**
|
|
7216
|
+
*
|
|
7217
|
+
* @type {string}
|
|
7218
|
+
* @memberof ServiceReviewItemModel
|
|
7219
|
+
*/
|
|
7220
|
+
'serviceId'?: string;
|
|
7221
|
+
/**
|
|
7222
|
+
*
|
|
7223
|
+
* @type {string}
|
|
7224
|
+
* @memberof ServiceReviewItemModel
|
|
7225
|
+
*/
|
|
7226
|
+
'serviceName'?: string | null;
|
|
7227
|
+
/**
|
|
7228
|
+
*
|
|
7229
|
+
* @type {string}
|
|
7230
|
+
* @memberof ServiceReviewItemModel
|
|
7231
|
+
*/
|
|
7232
|
+
'patientId'?: string | null;
|
|
7233
|
+
/**
|
|
7234
|
+
*
|
|
7235
|
+
* @type {string}
|
|
7236
|
+
* @memberof ServiceReviewItemModel
|
|
7237
|
+
*/
|
|
7238
|
+
'patientName'?: string | null;
|
|
7239
|
+
/**
|
|
7240
|
+
*
|
|
7241
|
+
* @type {string}
|
|
7242
|
+
* @memberof ServiceReviewItemModel
|
|
7243
|
+
*/
|
|
7244
|
+
'body'?: string | null;
|
|
7245
|
+
/**
|
|
7246
|
+
*
|
|
7247
|
+
* @type {boolean}
|
|
7248
|
+
* @memberof ServiceReviewItemModel
|
|
7249
|
+
*/
|
|
7250
|
+
'recommended'?: boolean;
|
|
7251
|
+
/**
|
|
7252
|
+
*
|
|
7253
|
+
* @type {number}
|
|
7254
|
+
* @memberof ServiceReviewItemModel
|
|
7255
|
+
*/
|
|
7256
|
+
'rate'?: number;
|
|
7257
|
+
/**
|
|
7258
|
+
*
|
|
7259
|
+
* @type {ReviewType}
|
|
7260
|
+
* @memberof ServiceReviewItemModel
|
|
7261
|
+
*/
|
|
7262
|
+
'reviewType'?: ReviewType;
|
|
7263
|
+
/**
|
|
7264
|
+
*
|
|
7265
|
+
* @type {Array<MediaModel>}
|
|
7266
|
+
* @memberof ServiceReviewItemModel
|
|
7267
|
+
*/
|
|
7268
|
+
'medias'?: Array<MediaModel> | null;
|
|
7269
|
+
}
|
|
7270
|
+
/**
|
|
7271
|
+
*
|
|
7272
|
+
* @export
|
|
7273
|
+
* @interface ServiceReviewModel
|
|
7274
|
+
*/
|
|
7275
|
+
export interface ServiceReviewModel {
|
|
7276
|
+
/**
|
|
7277
|
+
*
|
|
7278
|
+
* @type {string}
|
|
7279
|
+
* @memberof ServiceReviewModel
|
|
7280
|
+
*/
|
|
7281
|
+
'id'?: string;
|
|
7282
|
+
/**
|
|
7283
|
+
*
|
|
7284
|
+
* @type {string}
|
|
7285
|
+
* @memberof ServiceReviewModel
|
|
7286
|
+
*/
|
|
7287
|
+
'serviceId'?: string;
|
|
7288
|
+
/**
|
|
7289
|
+
*
|
|
7290
|
+
* @type {string}
|
|
7291
|
+
* @memberof ServiceReviewModel
|
|
7292
|
+
*/
|
|
7293
|
+
'serviceName'?: string | null;
|
|
7294
|
+
/**
|
|
7295
|
+
*
|
|
7296
|
+
* @type {string}
|
|
7297
|
+
* @memberof ServiceReviewModel
|
|
7298
|
+
*/
|
|
7299
|
+
'patientId'?: string | null;
|
|
7300
|
+
/**
|
|
7301
|
+
*
|
|
7302
|
+
* @type {string}
|
|
7303
|
+
* @memberof ServiceReviewModel
|
|
7304
|
+
*/
|
|
7305
|
+
'patientName'?: string | null;
|
|
7306
|
+
/**
|
|
7307
|
+
*
|
|
7308
|
+
* @type {string}
|
|
7309
|
+
* @memberof ServiceReviewModel
|
|
7310
|
+
*/
|
|
7311
|
+
'body'?: string | null;
|
|
7312
|
+
/**
|
|
7313
|
+
*
|
|
7314
|
+
* @type {boolean}
|
|
7315
|
+
* @memberof ServiceReviewModel
|
|
7316
|
+
*/
|
|
7317
|
+
'recommended'?: boolean;
|
|
7318
|
+
/**
|
|
7319
|
+
*
|
|
7320
|
+
* @type {number}
|
|
7321
|
+
* @memberof ServiceReviewModel
|
|
7322
|
+
*/
|
|
7323
|
+
'rate'?: number;
|
|
7324
|
+
/**
|
|
7325
|
+
*
|
|
7326
|
+
* @type {ReviewType}
|
|
7327
|
+
* @memberof ServiceReviewModel
|
|
7328
|
+
*/
|
|
7329
|
+
'reviewType'?: ReviewType;
|
|
7330
|
+
/**
|
|
7331
|
+
*
|
|
7332
|
+
* @type {Array<MediaModel>}
|
|
7333
|
+
* @memberof ServiceReviewModel
|
|
7334
|
+
*/
|
|
7335
|
+
'medias'?: Array<MediaModel> | null;
|
|
7336
|
+
}
|
|
7337
|
+
/**
|
|
7338
|
+
*
|
|
7339
|
+
* @export
|
|
7340
|
+
* @interface ServiceReviewsModel
|
|
7341
|
+
*/
|
|
7342
|
+
export interface ServiceReviewsModel {
|
|
7343
|
+
/**
|
|
7344
|
+
*
|
|
7345
|
+
* @type {Array<ServiceReviewItemModel>}
|
|
7346
|
+
* @memberof ServiceReviewsModel
|
|
7347
|
+
*/
|
|
7348
|
+
'items'?: Array<ServiceReviewItemModel> | null;
|
|
7349
|
+
/**
|
|
7350
|
+
*
|
|
7351
|
+
* @type {PagedListMetaData}
|
|
7352
|
+
* @memberof ServiceReviewsModel
|
|
7353
|
+
*/
|
|
7354
|
+
'metaData'?: PagedListMetaData;
|
|
7355
|
+
}
|
|
7034
7356
|
/**
|
|
7035
7357
|
*
|
|
7036
7358
|
* @export
|
|
@@ -7805,39 +8127,76 @@ export interface UpdateConsultationCommand {
|
|
|
7805
8127
|
/**
|
|
7806
8128
|
*
|
|
7807
8129
|
* @export
|
|
7808
|
-
* @interface
|
|
8130
|
+
* @interface UpdateMediaCommand
|
|
7809
8131
|
*/
|
|
7810
|
-
export interface
|
|
8132
|
+
export interface UpdateMediaCommand {
|
|
7811
8133
|
/**
|
|
7812
8134
|
*
|
|
7813
|
-
* @type {
|
|
7814
|
-
* @memberof
|
|
8135
|
+
* @type {MediaType}
|
|
8136
|
+
* @memberof UpdateMediaCommand
|
|
7815
8137
|
*/
|
|
7816
|
-
'
|
|
8138
|
+
'mediaType'?: MediaType;
|
|
7817
8139
|
/**
|
|
7818
8140
|
*
|
|
7819
8141
|
* @type {string}
|
|
7820
|
-
* @memberof
|
|
8142
|
+
* @memberof UpdateMediaCommand
|
|
7821
8143
|
*/
|
|
7822
|
-
'
|
|
8144
|
+
'url'?: string | null;
|
|
7823
8145
|
/**
|
|
7824
8146
|
*
|
|
7825
8147
|
* @type {string}
|
|
7826
|
-
* @memberof
|
|
8148
|
+
* @memberof UpdateMediaCommand
|
|
7827
8149
|
*/
|
|
7828
|
-
'
|
|
8150
|
+
'thumbnailUrl'?: string | null;
|
|
7829
8151
|
/**
|
|
7830
8152
|
*
|
|
7831
8153
|
* @type {string}
|
|
7832
|
-
* @memberof
|
|
8154
|
+
* @memberof UpdateMediaCommand
|
|
7833
8155
|
*/
|
|
7834
|
-
'
|
|
8156
|
+
'description'?: string | null;
|
|
7835
8157
|
/**
|
|
7836
8158
|
*
|
|
7837
|
-
* @type {
|
|
7838
|
-
* @memberof
|
|
8159
|
+
* @type {number}
|
|
8160
|
+
* @memberof UpdateMediaCommand
|
|
7839
8161
|
*/
|
|
7840
|
-
'
|
|
8162
|
+
'order'?: number;
|
|
8163
|
+
}
|
|
8164
|
+
/**
|
|
8165
|
+
*
|
|
8166
|
+
* @export
|
|
8167
|
+
* @interface UpdatePatientCommand
|
|
8168
|
+
*/
|
|
8169
|
+
export interface UpdatePatientCommand {
|
|
8170
|
+
/**
|
|
8171
|
+
*
|
|
8172
|
+
* @type {string}
|
|
8173
|
+
* @memberof UpdatePatientCommand
|
|
8174
|
+
*/
|
|
8175
|
+
'userName'?: string | null;
|
|
8176
|
+
/**
|
|
8177
|
+
*
|
|
8178
|
+
* @type {string}
|
|
8179
|
+
* @memberof UpdatePatientCommand
|
|
8180
|
+
*/
|
|
8181
|
+
'email'?: string | null;
|
|
8182
|
+
/**
|
|
8183
|
+
*
|
|
8184
|
+
* @type {string}
|
|
8185
|
+
* @memberof UpdatePatientCommand
|
|
8186
|
+
*/
|
|
8187
|
+
'firstName'?: string | null;
|
|
8188
|
+
/**
|
|
8189
|
+
*
|
|
8190
|
+
* @type {string}
|
|
8191
|
+
* @memberof UpdatePatientCommand
|
|
8192
|
+
*/
|
|
8193
|
+
'lastName'?: string | null;
|
|
8194
|
+
/**
|
|
8195
|
+
*
|
|
8196
|
+
* @type {string}
|
|
8197
|
+
* @memberof UpdatePatientCommand
|
|
8198
|
+
*/
|
|
8199
|
+
'phone'?: string | null;
|
|
7841
8200
|
/**
|
|
7842
8201
|
*
|
|
7843
8202
|
* @type {string}
|
|
@@ -7930,6 +8289,31 @@ export interface UpdateProfileCommand {
|
|
|
7930
8289
|
*/
|
|
7931
8290
|
'locations'?: Array<UserLocationModel> | null;
|
|
7932
8291
|
}
|
|
8292
|
+
/**
|
|
8293
|
+
*
|
|
8294
|
+
* @export
|
|
8295
|
+
* @interface UpdateServiceReviewCommand
|
|
8296
|
+
*/
|
|
8297
|
+
export interface UpdateServiceReviewCommand {
|
|
8298
|
+
/**
|
|
8299
|
+
*
|
|
8300
|
+
* @type {string}
|
|
8301
|
+
* @memberof UpdateServiceReviewCommand
|
|
8302
|
+
*/
|
|
8303
|
+
'body'?: string | null;
|
|
8304
|
+
/**
|
|
8305
|
+
*
|
|
8306
|
+
* @type {boolean}
|
|
8307
|
+
* @memberof UpdateServiceReviewCommand
|
|
8308
|
+
*/
|
|
8309
|
+
'recommended'?: boolean | null;
|
|
8310
|
+
/**
|
|
8311
|
+
*
|
|
8312
|
+
* @type {number}
|
|
8313
|
+
* @memberof UpdateServiceReviewCommand
|
|
8314
|
+
*/
|
|
8315
|
+
'rate'?: number | null;
|
|
8316
|
+
}
|
|
7933
8317
|
/**
|
|
7934
8318
|
*
|
|
7935
8319
|
* @export
|
|
@@ -11019,6 +11403,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
11019
11403
|
* @param {string} [hospitalId]
|
|
11020
11404
|
* @param {string} [languageCode]
|
|
11021
11405
|
* @param {boolean} [returnDefaultValue]
|
|
11406
|
+
* @param {Array<string>} [ids]
|
|
11022
11407
|
* @param {string} [id]
|
|
11023
11408
|
* @param {string} [fullname]
|
|
11024
11409
|
* @param {string} [email]
|
|
@@ -11032,7 +11417,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
11032
11417
|
* @param {*} [options] Override http request option.
|
|
11033
11418
|
* @throws {RequiredError}
|
|
11034
11419
|
*/
|
|
11035
|
-
apiV2DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11420
|
+
apiV2DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11036
11421
|
/**
|
|
11037
11422
|
*
|
|
11038
11423
|
* @param {string} slug
|
|
@@ -11202,6 +11587,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
11202
11587
|
* @param {string} [hospitalId]
|
|
11203
11588
|
* @param {string} [languageCode]
|
|
11204
11589
|
* @param {boolean} [returnDefaultValue]
|
|
11590
|
+
* @param {Array<string>} [ids]
|
|
11205
11591
|
* @param {string} [id]
|
|
11206
11592
|
* @param {string} [fullname]
|
|
11207
11593
|
* @param {string} [email]
|
|
@@ -11215,7 +11601,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
11215
11601
|
* @param {*} [options] Override http request option.
|
|
11216
11602
|
* @throws {RequiredError}
|
|
11217
11603
|
*/
|
|
11218
|
-
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
11604
|
+
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
11219
11605
|
/**
|
|
11220
11606
|
*
|
|
11221
11607
|
* @param {string} slug
|
|
@@ -11385,6 +11771,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
11385
11771
|
* @param {string} [hospitalId]
|
|
11386
11772
|
* @param {string} [languageCode]
|
|
11387
11773
|
* @param {boolean} [returnDefaultValue]
|
|
11774
|
+
* @param {Array<string>} [ids]
|
|
11388
11775
|
* @param {string} [id]
|
|
11389
11776
|
* @param {string} [fullname]
|
|
11390
11777
|
* @param {string} [email]
|
|
@@ -11398,7 +11785,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
11398
11785
|
* @param {*} [options] Override http request option.
|
|
11399
11786
|
* @throws {RequiredError}
|
|
11400
11787
|
*/
|
|
11401
|
-
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
11788
|
+
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
11402
11789
|
/**
|
|
11403
11790
|
*
|
|
11404
11791
|
* @param {string} slug
|
|
@@ -11583,6 +11970,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
11583
11970
|
* @param {string} [hospitalId]
|
|
11584
11971
|
* @param {string} [languageCode]
|
|
11585
11972
|
* @param {boolean} [returnDefaultValue]
|
|
11973
|
+
* @param {Array<string>} [ids]
|
|
11586
11974
|
* @param {string} [id]
|
|
11587
11975
|
* @param {string} [fullname]
|
|
11588
11976
|
* @param {string} [email]
|
|
@@ -11597,7 +11985,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
11597
11985
|
* @throws {RequiredError}
|
|
11598
11986
|
* @memberof DoctorsApi
|
|
11599
11987
|
*/
|
|
11600
|
-
apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
11988
|
+
apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
11601
11989
|
/**
|
|
11602
11990
|
*
|
|
11603
11991
|
* @param {string} slug
|
|
@@ -14199,6 +14587,924 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
14199
14587
|
*/
|
|
14200
14588
|
apiV2ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
14201
14589
|
}
|
|
14590
|
+
/**
|
|
14591
|
+
* SearchApi - axios parameter creator
|
|
14592
|
+
* @export
|
|
14593
|
+
*/
|
|
14594
|
+
export declare const SearchApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
14595
|
+
/**
|
|
14596
|
+
*
|
|
14597
|
+
* @param {string} keyword
|
|
14598
|
+
* @param {AutocompleteMode} [mode]
|
|
14599
|
+
* @param {boolean} [fuzzy]
|
|
14600
|
+
* @param {boolean} [highlights]
|
|
14601
|
+
* @param {number} [size]
|
|
14602
|
+
* @param {number} [minimumCoverage]
|
|
14603
|
+
* @param {*} [options] Override http request option.
|
|
14604
|
+
* @throws {RequiredError}
|
|
14605
|
+
*/
|
|
14606
|
+
apiV2SearchAutocompleteGet: (keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14607
|
+
/**
|
|
14608
|
+
*
|
|
14609
|
+
* @param {string} [searchTerm]
|
|
14610
|
+
* @param {boolean} [countOnly]
|
|
14611
|
+
* @param {string} [countryId]
|
|
14612
|
+
* @param {string} [hospitalId]
|
|
14613
|
+
* @param {MarketingType} [marketingType]
|
|
14614
|
+
* @param {string} [languageCode]
|
|
14615
|
+
* @param {number} [page]
|
|
14616
|
+
* @param {number} [limit]
|
|
14617
|
+
* @param {Date} [lastRetrieved]
|
|
14618
|
+
* @param {*} [options] Override http request option.
|
|
14619
|
+
* @throws {RequiredError}
|
|
14620
|
+
*/
|
|
14621
|
+
apiV2SearchDealsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14622
|
+
/**
|
|
14623
|
+
*
|
|
14624
|
+
* @param {string} [searchTerm]
|
|
14625
|
+
* @param {boolean} [countOnly]
|
|
14626
|
+
* @param {string} [countryId]
|
|
14627
|
+
* @param {string} [hospitalId]
|
|
14628
|
+
* @param {MarketingType} [marketingType]
|
|
14629
|
+
* @param {string} [languageCode]
|
|
14630
|
+
* @param {number} [page]
|
|
14631
|
+
* @param {number} [limit]
|
|
14632
|
+
* @param {Date} [lastRetrieved]
|
|
14633
|
+
* @param {*} [options] Override http request option.
|
|
14634
|
+
* @throws {RequiredError}
|
|
14635
|
+
*/
|
|
14636
|
+
apiV2SearchDoctorsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14637
|
+
/**
|
|
14638
|
+
*
|
|
14639
|
+
* @param {string} [searchTerm]
|
|
14640
|
+
* @param {boolean} [countOnly]
|
|
14641
|
+
* @param {string} [countryId]
|
|
14642
|
+
* @param {string} [hospitalId]
|
|
14643
|
+
* @param {MarketingType} [marketingType]
|
|
14644
|
+
* @param {string} [languageCode]
|
|
14645
|
+
* @param {number} [page]
|
|
14646
|
+
* @param {number} [limit]
|
|
14647
|
+
* @param {Date} [lastRetrieved]
|
|
14648
|
+
* @param {*} [options] Override http request option.
|
|
14649
|
+
* @throws {RequiredError}
|
|
14650
|
+
*/
|
|
14651
|
+
apiV2SearchGetcountGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14652
|
+
/**
|
|
14653
|
+
*
|
|
14654
|
+
* @param {string} [searchTerm]
|
|
14655
|
+
* @param {boolean} [countOnly]
|
|
14656
|
+
* @param {string} [countryId]
|
|
14657
|
+
* @param {string} [hospitalId]
|
|
14658
|
+
* @param {MarketingType} [marketingType]
|
|
14659
|
+
* @param {string} [languageCode]
|
|
14660
|
+
* @param {number} [page]
|
|
14661
|
+
* @param {number} [limit]
|
|
14662
|
+
* @param {Date} [lastRetrieved]
|
|
14663
|
+
* @param {*} [options] Override http request option.
|
|
14664
|
+
* @throws {RequiredError}
|
|
14665
|
+
*/
|
|
14666
|
+
apiV2SearchHospitalsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14667
|
+
/**
|
|
14668
|
+
*
|
|
14669
|
+
* @param {string} [searchTerm]
|
|
14670
|
+
* @param {boolean} [countOnly]
|
|
14671
|
+
* @param {string} [countryId]
|
|
14672
|
+
* @param {string} [hospitalId]
|
|
14673
|
+
* @param {MarketingType} [marketingType]
|
|
14674
|
+
* @param {string} [languageCode]
|
|
14675
|
+
* @param {number} [page]
|
|
14676
|
+
* @param {number} [limit]
|
|
14677
|
+
* @param {Date} [lastRetrieved]
|
|
14678
|
+
* @param {*} [options] Override http request option.
|
|
14679
|
+
* @throws {RequiredError}
|
|
14680
|
+
*/
|
|
14681
|
+
apiV2SearchSpecialtiesGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14682
|
+
/**
|
|
14683
|
+
*
|
|
14684
|
+
* @param {string} [searchTerm]
|
|
14685
|
+
* @param {boolean} [countOnly]
|
|
14686
|
+
* @param {string} [countryId]
|
|
14687
|
+
* @param {string} [hospitalId]
|
|
14688
|
+
* @param {MarketingType} [marketingType]
|
|
14689
|
+
* @param {string} [languageCode]
|
|
14690
|
+
* @param {number} [page]
|
|
14691
|
+
* @param {number} [limit]
|
|
14692
|
+
* @param {Date} [lastRetrieved]
|
|
14693
|
+
* @param {*} [options] Override http request option.
|
|
14694
|
+
* @throws {RequiredError}
|
|
14695
|
+
*/
|
|
14696
|
+
apiV2SearchSpecialtytypesGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14697
|
+
/**
|
|
14698
|
+
*
|
|
14699
|
+
* @param {string} keyword
|
|
14700
|
+
* @param {boolean} [fuzzy]
|
|
14701
|
+
* @param {boolean} [highlights]
|
|
14702
|
+
* @param {number} [size]
|
|
14703
|
+
* @param {*} [options] Override http request option.
|
|
14704
|
+
* @throws {RequiredError}
|
|
14705
|
+
*/
|
|
14706
|
+
apiV2SearchSuggestGet: (keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14707
|
+
};
|
|
14708
|
+
/**
|
|
14709
|
+
* SearchApi - functional programming interface
|
|
14710
|
+
* @export
|
|
14711
|
+
*/
|
|
14712
|
+
export declare const SearchApiFp: (configuration?: Configuration | undefined) => {
|
|
14713
|
+
/**
|
|
14714
|
+
*
|
|
14715
|
+
* @param {string} keyword
|
|
14716
|
+
* @param {AutocompleteMode} [mode]
|
|
14717
|
+
* @param {boolean} [fuzzy]
|
|
14718
|
+
* @param {boolean} [highlights]
|
|
14719
|
+
* @param {number} [size]
|
|
14720
|
+
* @param {number} [minimumCoverage]
|
|
14721
|
+
* @param {*} [options] Override http request option.
|
|
14722
|
+
* @throws {RequiredError}
|
|
14723
|
+
*/
|
|
14724
|
+
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchServiceAutocompleteModel>>;
|
|
14725
|
+
/**
|
|
14726
|
+
*
|
|
14727
|
+
* @param {string} [searchTerm]
|
|
14728
|
+
* @param {boolean} [countOnly]
|
|
14729
|
+
* @param {string} [countryId]
|
|
14730
|
+
* @param {string} [hospitalId]
|
|
14731
|
+
* @param {MarketingType} [marketingType]
|
|
14732
|
+
* @param {string} [languageCode]
|
|
14733
|
+
* @param {number} [page]
|
|
14734
|
+
* @param {number} [limit]
|
|
14735
|
+
* @param {Date} [lastRetrieved]
|
|
14736
|
+
* @param {*} [options] Override http request option.
|
|
14737
|
+
* @throws {RequiredError}
|
|
14738
|
+
*/
|
|
14739
|
+
apiV2SearchDealsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
14740
|
+
/**
|
|
14741
|
+
*
|
|
14742
|
+
* @param {string} [searchTerm]
|
|
14743
|
+
* @param {boolean} [countOnly]
|
|
14744
|
+
* @param {string} [countryId]
|
|
14745
|
+
* @param {string} [hospitalId]
|
|
14746
|
+
* @param {MarketingType} [marketingType]
|
|
14747
|
+
* @param {string} [languageCode]
|
|
14748
|
+
* @param {number} [page]
|
|
14749
|
+
* @param {number} [limit]
|
|
14750
|
+
* @param {Date} [lastRetrieved]
|
|
14751
|
+
* @param {*} [options] Override http request option.
|
|
14752
|
+
* @throws {RequiredError}
|
|
14753
|
+
*/
|
|
14754
|
+
apiV2SearchDoctorsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
14755
|
+
/**
|
|
14756
|
+
*
|
|
14757
|
+
* @param {string} [searchTerm]
|
|
14758
|
+
* @param {boolean} [countOnly]
|
|
14759
|
+
* @param {string} [countryId]
|
|
14760
|
+
* @param {string} [hospitalId]
|
|
14761
|
+
* @param {MarketingType} [marketingType]
|
|
14762
|
+
* @param {string} [languageCode]
|
|
14763
|
+
* @param {number} [page]
|
|
14764
|
+
* @param {number} [limit]
|
|
14765
|
+
* @param {Date} [lastRetrieved]
|
|
14766
|
+
* @param {*} [options] Override http request option.
|
|
14767
|
+
* @throws {RequiredError}
|
|
14768
|
+
*/
|
|
14769
|
+
apiV2SearchGetcountGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchModel>>;
|
|
14770
|
+
/**
|
|
14771
|
+
*
|
|
14772
|
+
* @param {string} [searchTerm]
|
|
14773
|
+
* @param {boolean} [countOnly]
|
|
14774
|
+
* @param {string} [countryId]
|
|
14775
|
+
* @param {string} [hospitalId]
|
|
14776
|
+
* @param {MarketingType} [marketingType]
|
|
14777
|
+
* @param {string} [languageCode]
|
|
14778
|
+
* @param {number} [page]
|
|
14779
|
+
* @param {number} [limit]
|
|
14780
|
+
* @param {Date} [lastRetrieved]
|
|
14781
|
+
* @param {*} [options] Override http request option.
|
|
14782
|
+
* @throws {RequiredError}
|
|
14783
|
+
*/
|
|
14784
|
+
apiV2SearchHospitalsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
14785
|
+
/**
|
|
14786
|
+
*
|
|
14787
|
+
* @param {string} [searchTerm]
|
|
14788
|
+
* @param {boolean} [countOnly]
|
|
14789
|
+
* @param {string} [countryId]
|
|
14790
|
+
* @param {string} [hospitalId]
|
|
14791
|
+
* @param {MarketingType} [marketingType]
|
|
14792
|
+
* @param {string} [languageCode]
|
|
14793
|
+
* @param {number} [page]
|
|
14794
|
+
* @param {number} [limit]
|
|
14795
|
+
* @param {Date} [lastRetrieved]
|
|
14796
|
+
* @param {*} [options] Override http request option.
|
|
14797
|
+
* @throws {RequiredError}
|
|
14798
|
+
*/
|
|
14799
|
+
apiV2SearchSpecialtiesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
14800
|
+
/**
|
|
14801
|
+
*
|
|
14802
|
+
* @param {string} [searchTerm]
|
|
14803
|
+
* @param {boolean} [countOnly]
|
|
14804
|
+
* @param {string} [countryId]
|
|
14805
|
+
* @param {string} [hospitalId]
|
|
14806
|
+
* @param {MarketingType} [marketingType]
|
|
14807
|
+
* @param {string} [languageCode]
|
|
14808
|
+
* @param {number} [page]
|
|
14809
|
+
* @param {number} [limit]
|
|
14810
|
+
* @param {Date} [lastRetrieved]
|
|
14811
|
+
* @param {*} [options] Override http request option.
|
|
14812
|
+
* @throws {RequiredError}
|
|
14813
|
+
*/
|
|
14814
|
+
apiV2SearchSpecialtytypesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesModel>>;
|
|
14815
|
+
/**
|
|
14816
|
+
*
|
|
14817
|
+
* @param {string} keyword
|
|
14818
|
+
* @param {boolean} [fuzzy]
|
|
14819
|
+
* @param {boolean} [highlights]
|
|
14820
|
+
* @param {number} [size]
|
|
14821
|
+
* @param {*} [options] Override http request option.
|
|
14822
|
+
* @throws {RequiredError}
|
|
14823
|
+
*/
|
|
14824
|
+
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchServiceSuggestModel>>;
|
|
14825
|
+
};
|
|
14826
|
+
/**
|
|
14827
|
+
* SearchApi - factory interface
|
|
14828
|
+
* @export
|
|
14829
|
+
*/
|
|
14830
|
+
export declare const SearchApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
14831
|
+
/**
|
|
14832
|
+
*
|
|
14833
|
+
* @param {string} keyword
|
|
14834
|
+
* @param {AutocompleteMode} [mode]
|
|
14835
|
+
* @param {boolean} [fuzzy]
|
|
14836
|
+
* @param {boolean} [highlights]
|
|
14837
|
+
* @param {number} [size]
|
|
14838
|
+
* @param {number} [minimumCoverage]
|
|
14839
|
+
* @param {*} [options] Override http request option.
|
|
14840
|
+
* @throws {RequiredError}
|
|
14841
|
+
*/
|
|
14842
|
+
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: any): AxiosPromise<AzureSearchServiceAutocompleteModel>;
|
|
14843
|
+
/**
|
|
14844
|
+
*
|
|
14845
|
+
* @param {string} [searchTerm]
|
|
14846
|
+
* @param {boolean} [countOnly]
|
|
14847
|
+
* @param {string} [countryId]
|
|
14848
|
+
* @param {string} [hospitalId]
|
|
14849
|
+
* @param {MarketingType} [marketingType]
|
|
14850
|
+
* @param {string} [languageCode]
|
|
14851
|
+
* @param {number} [page]
|
|
14852
|
+
* @param {number} [limit]
|
|
14853
|
+
* @param {Date} [lastRetrieved]
|
|
14854
|
+
* @param {*} [options] Override http request option.
|
|
14855
|
+
* @throws {RequiredError}
|
|
14856
|
+
*/
|
|
14857
|
+
apiV2SearchDealsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
14858
|
+
/**
|
|
14859
|
+
*
|
|
14860
|
+
* @param {string} [searchTerm]
|
|
14861
|
+
* @param {boolean} [countOnly]
|
|
14862
|
+
* @param {string} [countryId]
|
|
14863
|
+
* @param {string} [hospitalId]
|
|
14864
|
+
* @param {MarketingType} [marketingType]
|
|
14865
|
+
* @param {string} [languageCode]
|
|
14866
|
+
* @param {number} [page]
|
|
14867
|
+
* @param {number} [limit]
|
|
14868
|
+
* @param {Date} [lastRetrieved]
|
|
14869
|
+
* @param {*} [options] Override http request option.
|
|
14870
|
+
* @throws {RequiredError}
|
|
14871
|
+
*/
|
|
14872
|
+
apiV2SearchDoctorsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
14873
|
+
/**
|
|
14874
|
+
*
|
|
14875
|
+
* @param {string} [searchTerm]
|
|
14876
|
+
* @param {boolean} [countOnly]
|
|
14877
|
+
* @param {string} [countryId]
|
|
14878
|
+
* @param {string} [hospitalId]
|
|
14879
|
+
* @param {MarketingType} [marketingType]
|
|
14880
|
+
* @param {string} [languageCode]
|
|
14881
|
+
* @param {number} [page]
|
|
14882
|
+
* @param {number} [limit]
|
|
14883
|
+
* @param {Date} [lastRetrieved]
|
|
14884
|
+
* @param {*} [options] Override http request option.
|
|
14885
|
+
* @throws {RequiredError}
|
|
14886
|
+
*/
|
|
14887
|
+
apiV2SearchGetcountGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AzureSearchModel>;
|
|
14888
|
+
/**
|
|
14889
|
+
*
|
|
14890
|
+
* @param {string} [searchTerm]
|
|
14891
|
+
* @param {boolean} [countOnly]
|
|
14892
|
+
* @param {string} [countryId]
|
|
14893
|
+
* @param {string} [hospitalId]
|
|
14894
|
+
* @param {MarketingType} [marketingType]
|
|
14895
|
+
* @param {string} [languageCode]
|
|
14896
|
+
* @param {number} [page]
|
|
14897
|
+
* @param {number} [limit]
|
|
14898
|
+
* @param {Date} [lastRetrieved]
|
|
14899
|
+
* @param {*} [options] Override http request option.
|
|
14900
|
+
* @throws {RequiredError}
|
|
14901
|
+
*/
|
|
14902
|
+
apiV2SearchHospitalsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
|
|
14903
|
+
/**
|
|
14904
|
+
*
|
|
14905
|
+
* @param {string} [searchTerm]
|
|
14906
|
+
* @param {boolean} [countOnly]
|
|
14907
|
+
* @param {string} [countryId]
|
|
14908
|
+
* @param {string} [hospitalId]
|
|
14909
|
+
* @param {MarketingType} [marketingType]
|
|
14910
|
+
* @param {string} [languageCode]
|
|
14911
|
+
* @param {number} [page]
|
|
14912
|
+
* @param {number} [limit]
|
|
14913
|
+
* @param {Date} [lastRetrieved]
|
|
14914
|
+
* @param {*} [options] Override http request option.
|
|
14915
|
+
* @throws {RequiredError}
|
|
14916
|
+
*/
|
|
14917
|
+
apiV2SearchSpecialtiesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesModel>;
|
|
14918
|
+
/**
|
|
14919
|
+
*
|
|
14920
|
+
* @param {string} [searchTerm]
|
|
14921
|
+
* @param {boolean} [countOnly]
|
|
14922
|
+
* @param {string} [countryId]
|
|
14923
|
+
* @param {string} [hospitalId]
|
|
14924
|
+
* @param {MarketingType} [marketingType]
|
|
14925
|
+
* @param {string} [languageCode]
|
|
14926
|
+
* @param {number} [page]
|
|
14927
|
+
* @param {number} [limit]
|
|
14928
|
+
* @param {Date} [lastRetrieved]
|
|
14929
|
+
* @param {*} [options] Override http request option.
|
|
14930
|
+
* @throws {RequiredError}
|
|
14931
|
+
*/
|
|
14932
|
+
apiV2SearchSpecialtytypesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesModel>;
|
|
14933
|
+
/**
|
|
14934
|
+
*
|
|
14935
|
+
* @param {string} keyword
|
|
14936
|
+
* @param {boolean} [fuzzy]
|
|
14937
|
+
* @param {boolean} [highlights]
|
|
14938
|
+
* @param {number} [size]
|
|
14939
|
+
* @param {*} [options] Override http request option.
|
|
14940
|
+
* @throws {RequiredError}
|
|
14941
|
+
*/
|
|
14942
|
+
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: any): AxiosPromise<AzureSearchServiceSuggestModel>;
|
|
14943
|
+
};
|
|
14944
|
+
/**
|
|
14945
|
+
* SearchApi - object-oriented interface
|
|
14946
|
+
* @export
|
|
14947
|
+
* @class SearchApi
|
|
14948
|
+
* @extends {BaseAPI}
|
|
14949
|
+
*/
|
|
14950
|
+
export declare class SearchApi extends BaseAPI {
|
|
14951
|
+
/**
|
|
14952
|
+
*
|
|
14953
|
+
* @param {string} keyword
|
|
14954
|
+
* @param {AutocompleteMode} [mode]
|
|
14955
|
+
* @param {boolean} [fuzzy]
|
|
14956
|
+
* @param {boolean} [highlights]
|
|
14957
|
+
* @param {number} [size]
|
|
14958
|
+
* @param {number} [minimumCoverage]
|
|
14959
|
+
* @param {*} [options] Override http request option.
|
|
14960
|
+
* @throws {RequiredError}
|
|
14961
|
+
* @memberof SearchApi
|
|
14962
|
+
*/
|
|
14963
|
+
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode, fuzzy?: boolean, highlights?: boolean, size?: number, minimumCoverage?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchServiceAutocompleteModel>>;
|
|
14964
|
+
/**
|
|
14965
|
+
*
|
|
14966
|
+
* @param {string} [searchTerm]
|
|
14967
|
+
* @param {boolean} [countOnly]
|
|
14968
|
+
* @param {string} [countryId]
|
|
14969
|
+
* @param {string} [hospitalId]
|
|
14970
|
+
* @param {MarketingType} [marketingType]
|
|
14971
|
+
* @param {string} [languageCode]
|
|
14972
|
+
* @param {number} [page]
|
|
14973
|
+
* @param {number} [limit]
|
|
14974
|
+
* @param {Date} [lastRetrieved]
|
|
14975
|
+
* @param {*} [options] Override http request option.
|
|
14976
|
+
* @throws {RequiredError}
|
|
14977
|
+
* @memberof SearchApi
|
|
14978
|
+
*/
|
|
14979
|
+
apiV2SearchDealsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
14980
|
+
/**
|
|
14981
|
+
*
|
|
14982
|
+
* @param {string} [searchTerm]
|
|
14983
|
+
* @param {boolean} [countOnly]
|
|
14984
|
+
* @param {string} [countryId]
|
|
14985
|
+
* @param {string} [hospitalId]
|
|
14986
|
+
* @param {MarketingType} [marketingType]
|
|
14987
|
+
* @param {string} [languageCode]
|
|
14988
|
+
* @param {number} [page]
|
|
14989
|
+
* @param {number} [limit]
|
|
14990
|
+
* @param {Date} [lastRetrieved]
|
|
14991
|
+
* @param {*} [options] Override http request option.
|
|
14992
|
+
* @throws {RequiredError}
|
|
14993
|
+
* @memberof SearchApi
|
|
14994
|
+
*/
|
|
14995
|
+
apiV2SearchDoctorsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
14996
|
+
/**
|
|
14997
|
+
*
|
|
14998
|
+
* @param {string} [searchTerm]
|
|
14999
|
+
* @param {boolean} [countOnly]
|
|
15000
|
+
* @param {string} [countryId]
|
|
15001
|
+
* @param {string} [hospitalId]
|
|
15002
|
+
* @param {MarketingType} [marketingType]
|
|
15003
|
+
* @param {string} [languageCode]
|
|
15004
|
+
* @param {number} [page]
|
|
15005
|
+
* @param {number} [limit]
|
|
15006
|
+
* @param {Date} [lastRetrieved]
|
|
15007
|
+
* @param {*} [options] Override http request option.
|
|
15008
|
+
* @throws {RequiredError}
|
|
15009
|
+
* @memberof SearchApi
|
|
15010
|
+
*/
|
|
15011
|
+
apiV2SearchGetcountGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchModel>>;
|
|
15012
|
+
/**
|
|
15013
|
+
*
|
|
15014
|
+
* @param {string} [searchTerm]
|
|
15015
|
+
* @param {boolean} [countOnly]
|
|
15016
|
+
* @param {string} [countryId]
|
|
15017
|
+
* @param {string} [hospitalId]
|
|
15018
|
+
* @param {MarketingType} [marketingType]
|
|
15019
|
+
* @param {string} [languageCode]
|
|
15020
|
+
* @param {number} [page]
|
|
15021
|
+
* @param {number} [limit]
|
|
15022
|
+
* @param {Date} [lastRetrieved]
|
|
15023
|
+
* @param {*} [options] Override http request option.
|
|
15024
|
+
* @throws {RequiredError}
|
|
15025
|
+
* @memberof SearchApi
|
|
15026
|
+
*/
|
|
15027
|
+
apiV2SearchHospitalsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
|
|
15028
|
+
/**
|
|
15029
|
+
*
|
|
15030
|
+
* @param {string} [searchTerm]
|
|
15031
|
+
* @param {boolean} [countOnly]
|
|
15032
|
+
* @param {string} [countryId]
|
|
15033
|
+
* @param {string} [hospitalId]
|
|
15034
|
+
* @param {MarketingType} [marketingType]
|
|
15035
|
+
* @param {string} [languageCode]
|
|
15036
|
+
* @param {number} [page]
|
|
15037
|
+
* @param {number} [limit]
|
|
15038
|
+
* @param {Date} [lastRetrieved]
|
|
15039
|
+
* @param {*} [options] Override http request option.
|
|
15040
|
+
* @throws {RequiredError}
|
|
15041
|
+
* @memberof SearchApi
|
|
15042
|
+
*/
|
|
15043
|
+
apiV2SearchSpecialtiesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel>>;
|
|
15044
|
+
/**
|
|
15045
|
+
*
|
|
15046
|
+
* @param {string} [searchTerm]
|
|
15047
|
+
* @param {boolean} [countOnly]
|
|
15048
|
+
* @param {string} [countryId]
|
|
15049
|
+
* @param {string} [hospitalId]
|
|
15050
|
+
* @param {MarketingType} [marketingType]
|
|
15051
|
+
* @param {string} [languageCode]
|
|
15052
|
+
* @param {number} [page]
|
|
15053
|
+
* @param {number} [limit]
|
|
15054
|
+
* @param {Date} [lastRetrieved]
|
|
15055
|
+
* @param {*} [options] Override http request option.
|
|
15056
|
+
* @throws {RequiredError}
|
|
15057
|
+
* @memberof SearchApi
|
|
15058
|
+
*/
|
|
15059
|
+
apiV2SearchSpecialtytypesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesModel>>;
|
|
15060
|
+
/**
|
|
15061
|
+
*
|
|
15062
|
+
* @param {string} keyword
|
|
15063
|
+
* @param {boolean} [fuzzy]
|
|
15064
|
+
* @param {boolean} [highlights]
|
|
15065
|
+
* @param {number} [size]
|
|
15066
|
+
* @param {*} [options] Override http request option.
|
|
15067
|
+
* @throws {RequiredError}
|
|
15068
|
+
* @memberof SearchApi
|
|
15069
|
+
*/
|
|
15070
|
+
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean, highlights?: boolean, size?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchServiceSuggestModel>>;
|
|
15071
|
+
}
|
|
15072
|
+
/**
|
|
15073
|
+
* ServiceReviewsApi - axios parameter creator
|
|
15074
|
+
* @export
|
|
15075
|
+
*/
|
|
15076
|
+
export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
15077
|
+
/**
|
|
15078
|
+
*
|
|
15079
|
+
* @summary Get all ServiceReviews.
|
|
15080
|
+
* @param {string} [hospitalId]
|
|
15081
|
+
* @param {string} [serviceId]
|
|
15082
|
+
* @param {string} [serviceName]
|
|
15083
|
+
* @param {string} [patientId]
|
|
15084
|
+
* @param {string} [patientName]
|
|
15085
|
+
* @param {boolean} [recommended]
|
|
15086
|
+
* @param {number} [rate]
|
|
15087
|
+
* @param {ReviewType} [reviewType]
|
|
15088
|
+
* @param {number} [page]
|
|
15089
|
+
* @param {number} [limit]
|
|
15090
|
+
* @param {Date} [lastRetrieved]
|
|
15091
|
+
* @param {*} [options] Override http request option.
|
|
15092
|
+
* @throws {RequiredError}
|
|
15093
|
+
*/
|
|
15094
|
+
apiV2ServicereviewsGet: (hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15095
|
+
/**
|
|
15096
|
+
*
|
|
15097
|
+
* @summary Create a ServiceReview.
|
|
15098
|
+
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
15099
|
+
* @param {*} [options] Override http request option.
|
|
15100
|
+
* @throws {RequiredError}
|
|
15101
|
+
*/
|
|
15102
|
+
apiV2ServicereviewsPost: (createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15103
|
+
/**
|
|
15104
|
+
*
|
|
15105
|
+
* @summary Delete ServiceReview.
|
|
15106
|
+
* @param {string} serviceReviewId
|
|
15107
|
+
* @param {*} [options] Override http request option.
|
|
15108
|
+
* @throws {RequiredError}
|
|
15109
|
+
*/
|
|
15110
|
+
apiV2ServicereviewsServiceReviewIdDelete: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15111
|
+
/**
|
|
15112
|
+
*
|
|
15113
|
+
* @param {string} serviceReviewId
|
|
15114
|
+
* @param {*} [options] Override http request option.
|
|
15115
|
+
* @throws {RequiredError}
|
|
15116
|
+
*/
|
|
15117
|
+
apiV2ServicereviewsServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15118
|
+
/**
|
|
15119
|
+
*
|
|
15120
|
+
* @summary Get all ServiceReviewMedias.
|
|
15121
|
+
* @param {string} serviceReviewId
|
|
15122
|
+
* @param {string} [id]
|
|
15123
|
+
* @param {MediaType} [mediaType]
|
|
15124
|
+
* @param {number} [page]
|
|
15125
|
+
* @param {number} [limit]
|
|
15126
|
+
* @param {Date} [lastRetrieved]
|
|
15127
|
+
* @param {*} [options] Override http request option.
|
|
15128
|
+
* @throws {RequiredError}
|
|
15129
|
+
*/
|
|
15130
|
+
apiV2ServicereviewsServiceReviewIdMediasGet: (serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15131
|
+
/**
|
|
15132
|
+
*
|
|
15133
|
+
* @summary Delete ServiceReviewMedia
|
|
15134
|
+
* @param {string} serviceReviewId
|
|
15135
|
+
* @param {string} mediaId
|
|
15136
|
+
* @param {*} [options] Override http request option.
|
|
15137
|
+
* @throws {RequiredError}
|
|
15138
|
+
*/
|
|
15139
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdDelete: (serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15140
|
+
/**
|
|
15141
|
+
*
|
|
15142
|
+
* @summary Get ServiceReviewMedia.
|
|
15143
|
+
* @param {string} serviceReviewId
|
|
15144
|
+
* @param {string} mediaId
|
|
15145
|
+
* @param {*} [options] Override http request option.
|
|
15146
|
+
* @throws {RequiredError}
|
|
15147
|
+
*/
|
|
15148
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdGet: (serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15149
|
+
/**
|
|
15150
|
+
*
|
|
15151
|
+
* @summary Update ServiceReviewMedia.
|
|
15152
|
+
* @param {string} serviceReviewId
|
|
15153
|
+
* @param {string} mediaId
|
|
15154
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
15155
|
+
* @param {*} [options] Override http request option.
|
|
15156
|
+
* @throws {RequiredError}
|
|
15157
|
+
*/
|
|
15158
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdPut: (serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15159
|
+
/**
|
|
15160
|
+
*
|
|
15161
|
+
* @summary Create ServiceReviewMedia.
|
|
15162
|
+
* @param {string} serviceReviewId
|
|
15163
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
15164
|
+
* @param {*} [options] Override http request option.
|
|
15165
|
+
* @throws {RequiredError}
|
|
15166
|
+
*/
|
|
15167
|
+
apiV2ServicereviewsServiceReviewIdMediasPost: (serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15168
|
+
/**
|
|
15169
|
+
*
|
|
15170
|
+
* @summary Update ServiceReview.
|
|
15171
|
+
* @param {string} serviceReviewId
|
|
15172
|
+
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
15173
|
+
* @param {*} [options] Override http request option.
|
|
15174
|
+
* @throws {RequiredError}
|
|
15175
|
+
*/
|
|
15176
|
+
apiV2ServicereviewsServiceReviewIdPut: (serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15177
|
+
};
|
|
15178
|
+
/**
|
|
15179
|
+
* ServiceReviewsApi - functional programming interface
|
|
15180
|
+
* @export
|
|
15181
|
+
*/
|
|
15182
|
+
export declare const ServiceReviewsApiFp: (configuration?: Configuration | undefined) => {
|
|
15183
|
+
/**
|
|
15184
|
+
*
|
|
15185
|
+
* @summary Get all ServiceReviews.
|
|
15186
|
+
* @param {string} [hospitalId]
|
|
15187
|
+
* @param {string} [serviceId]
|
|
15188
|
+
* @param {string} [serviceName]
|
|
15189
|
+
* @param {string} [patientId]
|
|
15190
|
+
* @param {string} [patientName]
|
|
15191
|
+
* @param {boolean} [recommended]
|
|
15192
|
+
* @param {number} [rate]
|
|
15193
|
+
* @param {ReviewType} [reviewType]
|
|
15194
|
+
* @param {number} [page]
|
|
15195
|
+
* @param {number} [limit]
|
|
15196
|
+
* @param {Date} [lastRetrieved]
|
|
15197
|
+
* @param {*} [options] Override http request option.
|
|
15198
|
+
* @throws {RequiredError}
|
|
15199
|
+
*/
|
|
15200
|
+
apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
15201
|
+
/**
|
|
15202
|
+
*
|
|
15203
|
+
* @summary Create a ServiceReview.
|
|
15204
|
+
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
15205
|
+
* @param {*} [options] Override http request option.
|
|
15206
|
+
* @throws {RequiredError}
|
|
15207
|
+
*/
|
|
15208
|
+
apiV2ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
15209
|
+
/**
|
|
15210
|
+
*
|
|
15211
|
+
* @summary Delete ServiceReview.
|
|
15212
|
+
* @param {string} serviceReviewId
|
|
15213
|
+
* @param {*} [options] Override http request option.
|
|
15214
|
+
* @throws {RequiredError}
|
|
15215
|
+
*/
|
|
15216
|
+
apiV2ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
15217
|
+
/**
|
|
15218
|
+
*
|
|
15219
|
+
* @param {string} serviceReviewId
|
|
15220
|
+
* @param {*} [options] Override http request option.
|
|
15221
|
+
* @throws {RequiredError}
|
|
15222
|
+
*/
|
|
15223
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
15224
|
+
/**
|
|
15225
|
+
*
|
|
15226
|
+
* @summary Get all ServiceReviewMedias.
|
|
15227
|
+
* @param {string} serviceReviewId
|
|
15228
|
+
* @param {string} [id]
|
|
15229
|
+
* @param {MediaType} [mediaType]
|
|
15230
|
+
* @param {number} [page]
|
|
15231
|
+
* @param {number} [limit]
|
|
15232
|
+
* @param {Date} [lastRetrieved]
|
|
15233
|
+
* @param {*} [options] Override http request option.
|
|
15234
|
+
* @throws {RequiredError}
|
|
15235
|
+
*/
|
|
15236
|
+
apiV2ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
15237
|
+
/**
|
|
15238
|
+
*
|
|
15239
|
+
* @summary Delete ServiceReviewMedia
|
|
15240
|
+
* @param {string} serviceReviewId
|
|
15241
|
+
* @param {string} mediaId
|
|
15242
|
+
* @param {*} [options] Override http request option.
|
|
15243
|
+
* @throws {RequiredError}
|
|
15244
|
+
*/
|
|
15245
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
15246
|
+
/**
|
|
15247
|
+
*
|
|
15248
|
+
* @summary Get ServiceReviewMedia.
|
|
15249
|
+
* @param {string} serviceReviewId
|
|
15250
|
+
* @param {string} mediaId
|
|
15251
|
+
* @param {*} [options] Override http request option.
|
|
15252
|
+
* @throws {RequiredError}
|
|
15253
|
+
*/
|
|
15254
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15255
|
+
/**
|
|
15256
|
+
*
|
|
15257
|
+
* @summary Update ServiceReviewMedia.
|
|
15258
|
+
* @param {string} serviceReviewId
|
|
15259
|
+
* @param {string} mediaId
|
|
15260
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
15261
|
+
* @param {*} [options] Override http request option.
|
|
15262
|
+
* @throws {RequiredError}
|
|
15263
|
+
*/
|
|
15264
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15265
|
+
/**
|
|
15266
|
+
*
|
|
15267
|
+
* @summary Create ServiceReviewMedia.
|
|
15268
|
+
* @param {string} serviceReviewId
|
|
15269
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
15270
|
+
* @param {*} [options] Override http request option.
|
|
15271
|
+
* @throws {RequiredError}
|
|
15272
|
+
*/
|
|
15273
|
+
apiV2ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15274
|
+
/**
|
|
15275
|
+
*
|
|
15276
|
+
* @summary Update ServiceReview.
|
|
15277
|
+
* @param {string} serviceReviewId
|
|
15278
|
+
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
15279
|
+
* @param {*} [options] Override http request option.
|
|
15280
|
+
* @throws {RequiredError}
|
|
15281
|
+
*/
|
|
15282
|
+
apiV2ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
15283
|
+
};
|
|
15284
|
+
/**
|
|
15285
|
+
* ServiceReviewsApi - factory interface
|
|
15286
|
+
* @export
|
|
15287
|
+
*/
|
|
15288
|
+
export declare const ServiceReviewsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
15289
|
+
/**
|
|
15290
|
+
*
|
|
15291
|
+
* @summary Get all ServiceReviews.
|
|
15292
|
+
* @param {string} [hospitalId]
|
|
15293
|
+
* @param {string} [serviceId]
|
|
15294
|
+
* @param {string} [serviceName]
|
|
15295
|
+
* @param {string} [patientId]
|
|
15296
|
+
* @param {string} [patientName]
|
|
15297
|
+
* @param {boolean} [recommended]
|
|
15298
|
+
* @param {number} [rate]
|
|
15299
|
+
* @param {ReviewType} [reviewType]
|
|
15300
|
+
* @param {number} [page]
|
|
15301
|
+
* @param {number} [limit]
|
|
15302
|
+
* @param {Date} [lastRetrieved]
|
|
15303
|
+
* @param {*} [options] Override http request option.
|
|
15304
|
+
* @throws {RequiredError}
|
|
15305
|
+
*/
|
|
15306
|
+
apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
15307
|
+
/**
|
|
15308
|
+
*
|
|
15309
|
+
* @summary Create a ServiceReview.
|
|
15310
|
+
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
15311
|
+
* @param {*} [options] Override http request option.
|
|
15312
|
+
* @throws {RequiredError}
|
|
15313
|
+
*/
|
|
15314
|
+
apiV2ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
15315
|
+
/**
|
|
15316
|
+
*
|
|
15317
|
+
* @summary Delete ServiceReview.
|
|
15318
|
+
* @param {string} serviceReviewId
|
|
15319
|
+
* @param {*} [options] Override http request option.
|
|
15320
|
+
* @throws {RequiredError}
|
|
15321
|
+
*/
|
|
15322
|
+
apiV2ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: any): AxiosPromise<boolean>;
|
|
15323
|
+
/**
|
|
15324
|
+
*
|
|
15325
|
+
* @param {string} serviceReviewId
|
|
15326
|
+
* @param {*} [options] Override http request option.
|
|
15327
|
+
* @throws {RequiredError}
|
|
15328
|
+
*/
|
|
15329
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
15330
|
+
/**
|
|
15331
|
+
*
|
|
15332
|
+
* @summary Get all ServiceReviewMedias.
|
|
15333
|
+
* @param {string} serviceReviewId
|
|
15334
|
+
* @param {string} [id]
|
|
15335
|
+
* @param {MediaType} [mediaType]
|
|
15336
|
+
* @param {number} [page]
|
|
15337
|
+
* @param {number} [limit]
|
|
15338
|
+
* @param {Date} [lastRetrieved]
|
|
15339
|
+
* @param {*} [options] Override http request option.
|
|
15340
|
+
* @throws {RequiredError}
|
|
15341
|
+
*/
|
|
15342
|
+
apiV2ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
15343
|
+
/**
|
|
15344
|
+
*
|
|
15345
|
+
* @summary Delete ServiceReviewMedia
|
|
15346
|
+
* @param {string} serviceReviewId
|
|
15347
|
+
* @param {string} mediaId
|
|
15348
|
+
* @param {*} [options] Override http request option.
|
|
15349
|
+
* @throws {RequiredError}
|
|
15350
|
+
*/
|
|
15351
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
15352
|
+
/**
|
|
15353
|
+
*
|
|
15354
|
+
* @summary Get ServiceReviewMedia.
|
|
15355
|
+
* @param {string} serviceReviewId
|
|
15356
|
+
* @param {string} mediaId
|
|
15357
|
+
* @param {*} [options] Override http request option.
|
|
15358
|
+
* @throws {RequiredError}
|
|
15359
|
+
*/
|
|
15360
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
15361
|
+
/**
|
|
15362
|
+
*
|
|
15363
|
+
* @summary Update ServiceReviewMedia.
|
|
15364
|
+
* @param {string} serviceReviewId
|
|
15365
|
+
* @param {string} mediaId
|
|
15366
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
15367
|
+
* @param {*} [options] Override http request option.
|
|
15368
|
+
* @throws {RequiredError}
|
|
15369
|
+
*/
|
|
15370
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
15371
|
+
/**
|
|
15372
|
+
*
|
|
15373
|
+
* @summary Create ServiceReviewMedia.
|
|
15374
|
+
* @param {string} serviceReviewId
|
|
15375
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
15376
|
+
* @param {*} [options] Override http request option.
|
|
15377
|
+
* @throws {RequiredError}
|
|
15378
|
+
*/
|
|
15379
|
+
apiV2ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
15380
|
+
/**
|
|
15381
|
+
*
|
|
15382
|
+
* @summary Update ServiceReview.
|
|
15383
|
+
* @param {string} serviceReviewId
|
|
15384
|
+
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
15385
|
+
* @param {*} [options] Override http request option.
|
|
15386
|
+
* @throws {RequiredError}
|
|
15387
|
+
*/
|
|
15388
|
+
apiV2ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
15389
|
+
};
|
|
15390
|
+
/**
|
|
15391
|
+
* ServiceReviewsApi - object-oriented interface
|
|
15392
|
+
* @export
|
|
15393
|
+
* @class ServiceReviewsApi
|
|
15394
|
+
* @extends {BaseAPI}
|
|
15395
|
+
*/
|
|
15396
|
+
export declare class ServiceReviewsApi extends BaseAPI {
|
|
15397
|
+
/**
|
|
15398
|
+
*
|
|
15399
|
+
* @summary Get all ServiceReviews.
|
|
15400
|
+
* @param {string} [hospitalId]
|
|
15401
|
+
* @param {string} [serviceId]
|
|
15402
|
+
* @param {string} [serviceName]
|
|
15403
|
+
* @param {string} [patientId]
|
|
15404
|
+
* @param {string} [patientName]
|
|
15405
|
+
* @param {boolean} [recommended]
|
|
15406
|
+
* @param {number} [rate]
|
|
15407
|
+
* @param {ReviewType} [reviewType]
|
|
15408
|
+
* @param {number} [page]
|
|
15409
|
+
* @param {number} [limit]
|
|
15410
|
+
* @param {Date} [lastRetrieved]
|
|
15411
|
+
* @param {*} [options] Override http request option.
|
|
15412
|
+
* @throws {RequiredError}
|
|
15413
|
+
* @memberof ServiceReviewsApi
|
|
15414
|
+
*/
|
|
15415
|
+
apiV2ServicereviewsGet(hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
|
|
15416
|
+
/**
|
|
15417
|
+
*
|
|
15418
|
+
* @summary Create a ServiceReview.
|
|
15419
|
+
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
15420
|
+
* @param {*} [options] Override http request option.
|
|
15421
|
+
* @throws {RequiredError}
|
|
15422
|
+
* @memberof ServiceReviewsApi
|
|
15423
|
+
*/
|
|
15424
|
+
apiV2ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
15425
|
+
/**
|
|
15426
|
+
*
|
|
15427
|
+
* @summary Delete ServiceReview.
|
|
15428
|
+
* @param {string} serviceReviewId
|
|
15429
|
+
* @param {*} [options] Override http request option.
|
|
15430
|
+
* @throws {RequiredError}
|
|
15431
|
+
* @memberof ServiceReviewsApi
|
|
15432
|
+
*/
|
|
15433
|
+
apiV2ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15434
|
+
/**
|
|
15435
|
+
*
|
|
15436
|
+
* @param {string} serviceReviewId
|
|
15437
|
+
* @param {*} [options] Override http request option.
|
|
15438
|
+
* @throws {RequiredError}
|
|
15439
|
+
* @memberof ServiceReviewsApi
|
|
15440
|
+
*/
|
|
15441
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
15442
|
+
/**
|
|
15443
|
+
*
|
|
15444
|
+
* @summary Get all ServiceReviewMedias.
|
|
15445
|
+
* @param {string} serviceReviewId
|
|
15446
|
+
* @param {string} [id]
|
|
15447
|
+
* @param {MediaType} [mediaType]
|
|
15448
|
+
* @param {number} [page]
|
|
15449
|
+
* @param {number} [limit]
|
|
15450
|
+
* @param {Date} [lastRetrieved]
|
|
15451
|
+
* @param {*} [options] Override http request option.
|
|
15452
|
+
* @throws {RequiredError}
|
|
15453
|
+
* @memberof ServiceReviewsApi
|
|
15454
|
+
*/
|
|
15455
|
+
apiV2ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
15456
|
+
/**
|
|
15457
|
+
*
|
|
15458
|
+
* @summary Delete ServiceReviewMedia
|
|
15459
|
+
* @param {string} serviceReviewId
|
|
15460
|
+
* @param {string} mediaId
|
|
15461
|
+
* @param {*} [options] Override http request option.
|
|
15462
|
+
* @throws {RequiredError}
|
|
15463
|
+
* @memberof ServiceReviewsApi
|
|
15464
|
+
*/
|
|
15465
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15466
|
+
/**
|
|
15467
|
+
*
|
|
15468
|
+
* @summary Get ServiceReviewMedia.
|
|
15469
|
+
* @param {string} serviceReviewId
|
|
15470
|
+
* @param {string} mediaId
|
|
15471
|
+
* @param {*} [options] Override http request option.
|
|
15472
|
+
* @throws {RequiredError}
|
|
15473
|
+
* @memberof ServiceReviewsApi
|
|
15474
|
+
*/
|
|
15475
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
15476
|
+
/**
|
|
15477
|
+
*
|
|
15478
|
+
* @summary Update ServiceReviewMedia.
|
|
15479
|
+
* @param {string} serviceReviewId
|
|
15480
|
+
* @param {string} mediaId
|
|
15481
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
15482
|
+
* @param {*} [options] Override http request option.
|
|
15483
|
+
* @throws {RequiredError}
|
|
15484
|
+
* @memberof ServiceReviewsApi
|
|
15485
|
+
*/
|
|
15486
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
15487
|
+
/**
|
|
15488
|
+
*
|
|
15489
|
+
* @summary Create ServiceReviewMedia.
|
|
15490
|
+
* @param {string} serviceReviewId
|
|
15491
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
15492
|
+
* @param {*} [options] Override http request option.
|
|
15493
|
+
* @throws {RequiredError}
|
|
15494
|
+
* @memberof ServiceReviewsApi
|
|
15495
|
+
*/
|
|
15496
|
+
apiV2ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
15497
|
+
/**
|
|
15498
|
+
*
|
|
15499
|
+
* @summary Update ServiceReview.
|
|
15500
|
+
* @param {string} serviceReviewId
|
|
15501
|
+
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
15502
|
+
* @param {*} [options] Override http request option.
|
|
15503
|
+
* @throws {RequiredError}
|
|
15504
|
+
* @memberof ServiceReviewsApi
|
|
15505
|
+
*/
|
|
15506
|
+
apiV2ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
15507
|
+
}
|
|
14202
15508
|
/**
|
|
14203
15509
|
* ServicesApi - axios parameter creator
|
|
14204
15510
|
* @export
|