ch-admin-api-client-typescript 5.19.45 → 5.19.53

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.
@@ -1052,10 +1052,11 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
1052
1052
  * @summary Delete hospital contact
1053
1053
  * @param {string} hospitalId
1054
1054
  * @param {string} contactId
1055
+ * @param {boolean} [isPermanent]
1055
1056
  * @param {*} [options] Override http request option.
1056
1057
  * @throws {RequiredError}
1057
1058
  */
1058
- apiV1HospitalsHospitalIdContactsContactIdDelete: async (hospitalId: string, contactId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1059
+ apiV1HospitalsHospitalIdContactsContactIdDelete: async (hospitalId: string, contactId: string, isPermanent?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1059
1060
  // verify required parameter 'hospitalId' is not null or undefined
1060
1061
  assertParamExists('apiV1HospitalsHospitalIdContactsContactIdDelete', 'hospitalId', hospitalId)
1061
1062
  // verify required parameter 'contactId' is not null or undefined
@@ -1078,6 +1079,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
1078
1079
  // oauth required
1079
1080
  await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
1080
1081
 
1082
+ if (isPermanent !== undefined) {
1083
+ localVarQueryParameter['isPermanent'] = isPermanent;
1084
+ }
1085
+
1081
1086
 
1082
1087
 
1083
1088
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1185,13 +1190,14 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
1185
1190
  * @param {ContactType} [contactType]
1186
1191
  * @param {string} [name]
1187
1192
  * @param {string} [languageCode]
1193
+ * @param {boolean} [showHidden]
1188
1194
  * @param {number} [page]
1189
1195
  * @param {number} [limit]
1190
1196
  * @param {Date} [lastRetrieved]
1191
1197
  * @param {*} [options] Override http request option.
1192
1198
  * @throws {RequiredError}
1193
1199
  */
1194
- apiV1HospitalsHospitalIdContactsGet: async (hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1200
+ apiV1HospitalsHospitalIdContactsGet: async (hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1195
1201
  // verify required parameter 'hospitalId' is not null or undefined
1196
1202
  assertParamExists('apiV1HospitalsHospitalIdContactsGet', 'hospitalId', hospitalId)
1197
1203
  const localVarPath = `/api/v1/hospitals/{hospitalId}/contacts`
@@ -1227,6 +1233,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
1227
1233
  localVarQueryParameter['LanguageCode'] = languageCode;
1228
1234
  }
1229
1235
 
1236
+ if (showHidden !== undefined) {
1237
+ localVarQueryParameter['ShowHidden'] = showHidden;
1238
+ }
1239
+
1230
1240
  if (page !== undefined) {
1231
1241
  localVarQueryParameter['page'] = page;
1232
1242
  }
@@ -8373,11 +8383,12 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
8373
8383
  * @summary Delete hospital contact
8374
8384
  * @param {string} hospitalId
8375
8385
  * @param {string} contactId
8386
+ * @param {boolean} [isPermanent]
8376
8387
  * @param {*} [options] Override http request option.
8377
8388
  * @throws {RequiredError}
8378
8389
  */
8379
- async apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId: string, contactId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
8380
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId, contactId, options);
8390
+ async apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId: string, contactId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
8391
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId, contactId, isPermanent, options);
8381
8392
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
8382
8393
  },
8383
8394
  /**
@@ -8413,14 +8424,15 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
8413
8424
  * @param {ContactType} [contactType]
8414
8425
  * @param {string} [name]
8415
8426
  * @param {string} [languageCode]
8427
+ * @param {boolean} [showHidden]
8416
8428
  * @param {number} [page]
8417
8429
  * @param {number} [limit]
8418
8430
  * @param {Date} [lastRetrieved]
8419
8431
  * @param {*} [options] Override http request option.
8420
8432
  * @throws {RequiredError}
8421
8433
  */
8422
- async apiV1HospitalsHospitalIdContactsGet(hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalContactsModel>> {
8423
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdContactsGet(hospitalId, contactId, contactType, name, languageCode, page, limit, lastRetrieved, options);
8434
+ async apiV1HospitalsHospitalIdContactsGet(hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalContactsModel>> {
8435
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdContactsGet(hospitalId, contactId, contactType, name, languageCode, showHidden, page, limit, lastRetrieved, options);
8424
8436
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
8425
8437
  },
8426
8438
  /**
@@ -10489,11 +10501,12 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
10489
10501
  * @summary Delete hospital contact
10490
10502
  * @param {string} hospitalId
10491
10503
  * @param {string} contactId
10504
+ * @param {boolean} [isPermanent]
10492
10505
  * @param {*} [options] Override http request option.
10493
10506
  * @throws {RequiredError}
10494
10507
  */
10495
- apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId: string, contactId: string, options?: any): AxiosPromise<boolean> {
10496
- return localVarFp.apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId, contactId, options).then((request) => request(axios, basePath));
10508
+ apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId: string, contactId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean> {
10509
+ return localVarFp.apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId, contactId, isPermanent, options).then((request) => request(axios, basePath));
10497
10510
  },
10498
10511
  /**
10499
10512
  *
@@ -10526,14 +10539,15 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
10526
10539
  * @param {ContactType} [contactType]
10527
10540
  * @param {string} [name]
10528
10541
  * @param {string} [languageCode]
10542
+ * @param {boolean} [showHidden]
10529
10543
  * @param {number} [page]
10530
10544
  * @param {number} [limit]
10531
10545
  * @param {Date} [lastRetrieved]
10532
10546
  * @param {*} [options] Override http request option.
10533
10547
  * @throws {RequiredError}
10534
10548
  */
10535
- apiV1HospitalsHospitalIdContactsGet(hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalContactsModel> {
10536
- return localVarFp.apiV1HospitalsHospitalIdContactsGet(hospitalId, contactId, contactType, name, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
10549
+ apiV1HospitalsHospitalIdContactsGet(hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalContactsModel> {
10550
+ return localVarFp.apiV1HospitalsHospitalIdContactsGet(hospitalId, contactId, contactType, name, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
10537
10551
  },
10538
10552
  /**
10539
10553
  *
@@ -12816,6 +12830,13 @@ export interface HospitalsApiApiV1HospitalsHospitalIdContactsContactIdDeleteRequ
12816
12830
  * @memberof HospitalsApiApiV1HospitalsHospitalIdContactsContactIdDelete
12817
12831
  */
12818
12832
  readonly contactId: string
12833
+
12834
+ /**
12835
+ *
12836
+ * @type {boolean}
12837
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdContactsContactIdDelete
12838
+ */
12839
+ readonly isPermanent?: boolean
12819
12840
  }
12820
12841
 
12821
12842
  /**
@@ -12908,6 +12929,13 @@ export interface HospitalsApiApiV1HospitalsHospitalIdContactsGetRequest {
12908
12929
  */
12909
12930
  readonly languageCode?: string
12910
12931
 
12932
+ /**
12933
+ *
12934
+ * @type {boolean}
12935
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdContactsGet
12936
+ */
12937
+ readonly showHidden?: boolean
12938
+
12911
12939
  /**
12912
12940
  *
12913
12941
  * @type {number}
@@ -17662,7 +17690,7 @@ export class HospitalsApi extends BaseAPI {
17662
17690
  * @memberof HospitalsApi
17663
17691
  */
17664
17692
  public apiV1HospitalsHospitalIdContactsContactIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdContactsContactIdDeleteRequest, options?: AxiosRequestConfig) {
17665
- return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdContactsContactIdDelete(requestParameters.hospitalId, requestParameters.contactId, options).then((request) => request(this.axios, this.basePath));
17693
+ return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdContactsContactIdDelete(requestParameters.hospitalId, requestParameters.contactId, requestParameters.isPermanent, options).then((request) => request(this.axios, this.basePath));
17666
17694
  }
17667
17695
 
17668
17696
  /**
@@ -17698,7 +17726,7 @@ export class HospitalsApi extends BaseAPI {
17698
17726
  * @memberof HospitalsApi
17699
17727
  */
17700
17728
  public apiV1HospitalsHospitalIdContactsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdContactsGetRequest, options?: AxiosRequestConfig) {
17701
- return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdContactsGet(requestParameters.hospitalId, requestParameters.contactId, requestParameters.contactType, requestParameters.name, requestParameters.languageCode, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
17729
+ return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdContactsGet(requestParameters.hospitalId, requestParameters.contactId, requestParameters.contactType, requestParameters.name, requestParameters.languageCode, requestParameters.showHidden, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
17702
17730
  }
17703
17731
 
17704
17732
  /**
@@ -96,13 +96,14 @@ export const WebAppsApiAxiosParamCreator = function (configuration?: Configurati
96
96
  * @param {string} [hostName]
97
97
  * @param {DeployStatus} [deployStatus]
98
98
  * @param {string} [languageCode]
99
+ * @param {boolean} [showHidden]
99
100
  * @param {number} [page]
100
101
  * @param {number} [limit]
101
102
  * @param {Date} [lastRetrieved]
102
103
  * @param {*} [options] Override http request option.
103
104
  * @throws {RequiredError}
104
105
  */
105
- apiV1WebappsGet: async (id?: string, hospitalId?: string, hospitalName?: string, appName?: string, hostName?: string, deployStatus?: DeployStatus, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
106
+ apiV1WebappsGet: async (id?: string, hospitalId?: string, hospitalName?: string, appName?: string, hostName?: string, deployStatus?: DeployStatus, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
106
107
  const localVarPath = `/api/v1/webapps`;
107
108
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
108
109
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -147,6 +148,10 @@ export const WebAppsApiAxiosParamCreator = function (configuration?: Configurati
147
148
  localVarQueryParameter['LanguageCode'] = languageCode;
148
149
  }
149
150
 
151
+ if (showHidden !== undefined) {
152
+ localVarQueryParameter['ShowHidden'] = showHidden;
153
+ }
154
+
150
155
  if (page !== undefined) {
151
156
  localVarQueryParameter['page'] = page;
152
157
  }
@@ -370,14 +375,15 @@ export const WebAppsApiFp = function(configuration?: Configuration) {
370
375
  * @param {string} [hostName]
371
376
  * @param {DeployStatus} [deployStatus]
372
377
  * @param {string} [languageCode]
378
+ * @param {boolean} [showHidden]
373
379
  * @param {number} [page]
374
380
  * @param {number} [limit]
375
381
  * @param {Date} [lastRetrieved]
376
382
  * @param {*} [options] Override http request option.
377
383
  * @throws {RequiredError}
378
384
  */
379
- async apiV1WebappsGet(id?: string, hospitalId?: string, hospitalName?: string, appName?: string, hostName?: string, deployStatus?: DeployStatus, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WebAppsModel>> {
380
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1WebappsGet(id, hospitalId, hospitalName, appName, hostName, deployStatus, languageCode, page, limit, lastRetrieved, options);
385
+ async apiV1WebappsGet(id?: string, hospitalId?: string, hospitalName?: string, appName?: string, hostName?: string, deployStatus?: DeployStatus, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WebAppsModel>> {
386
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1WebappsGet(id, hospitalId, hospitalName, appName, hostName, deployStatus, languageCode, showHidden, page, limit, lastRetrieved, options);
381
387
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
382
388
  },
383
389
  /**
@@ -458,14 +464,15 @@ export const WebAppsApiFactory = function (configuration?: Configuration, basePa
458
464
  * @param {string} [hostName]
459
465
  * @param {DeployStatus} [deployStatus]
460
466
  * @param {string} [languageCode]
467
+ * @param {boolean} [showHidden]
461
468
  * @param {number} [page]
462
469
  * @param {number} [limit]
463
470
  * @param {Date} [lastRetrieved]
464
471
  * @param {*} [options] Override http request option.
465
472
  * @throws {RequiredError}
466
473
  */
467
- apiV1WebappsGet(id?: string, hospitalId?: string, hospitalName?: string, appName?: string, hostName?: string, deployStatus?: DeployStatus, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<WebAppsModel> {
468
- return localVarFp.apiV1WebappsGet(id, hospitalId, hospitalName, appName, hostName, deployStatus, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
474
+ apiV1WebappsGet(id?: string, hospitalId?: string, hospitalName?: string, appName?: string, hostName?: string, deployStatus?: DeployStatus, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<WebAppsModel> {
475
+ return localVarFp.apiV1WebappsGet(id, hospitalId, hospitalName, appName, hostName, deployStatus, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
469
476
  },
470
477
  /**
471
478
  *
@@ -589,6 +596,13 @@ export interface WebAppsApiApiV1WebappsGetRequest {
589
596
  */
590
597
  readonly languageCode?: string
591
598
 
599
+ /**
600
+ *
601
+ * @type {boolean}
602
+ * @memberof WebAppsApiApiV1WebappsGet
603
+ */
604
+ readonly showHidden?: boolean
605
+
592
606
  /**
593
607
  *
594
608
  * @type {number}
@@ -716,7 +730,7 @@ export class WebAppsApi extends BaseAPI {
716
730
  * @memberof WebAppsApi
717
731
  */
718
732
  public apiV1WebappsGet(requestParameters: WebAppsApiApiV1WebappsGetRequest = {}, options?: AxiosRequestConfig) {
719
- return WebAppsApiFp(this.configuration).apiV1WebappsGet(requestParameters.id, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.appName, requestParameters.hostName, requestParameters.deployStatus, requestParameters.languageCode, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
733
+ return WebAppsApiFp(this.configuration).apiV1WebappsGet(requestParameters.id, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.appName, requestParameters.hostName, requestParameters.deployStatus, requestParameters.languageCode, requestParameters.showHidden, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
720
734
  }
721
735
 
722
736
  /**
@@ -77,6 +77,12 @@ export interface CreateServiceReviewCommand {
77
77
  * @memberof CreateServiceReviewCommand
78
78
  */
79
79
  'rate'?: number;
80
+ /**
81
+ *
82
+ * @type {Date}
83
+ * @memberof CreateServiceReviewCommand
84
+ */
85
+ 'surgeryDate'?: Date;
80
86
  /**
81
87
  *
82
88
  * @type {ReviewType}
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { AuditableEntityModel } from './auditable-entity-model';
16
19
  // May contain unused imports in some cases
17
20
  // @ts-ignore
18
21
  import { ContactType } from './contact-type';
@@ -83,5 +86,11 @@ export interface HospitalContactItemModel {
83
86
  * @memberof HospitalContactItemModel
84
87
  */
85
88
  'languageLocalizedName'?: string | null;
89
+ /**
90
+ *
91
+ * @type {AuditableEntityModel}
92
+ * @memberof HospitalContactItemModel
93
+ */
94
+ 'auditableEntity'?: AuditableEntityModel;
86
95
  }
87
96
 
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { AuditableEntityModel } from './auditable-entity-model';
16
19
  // May contain unused imports in some cases
17
20
  // @ts-ignore
18
21
  import { ContactType } from './contact-type';
@@ -83,5 +86,11 @@ export interface HospitalContactModel {
83
86
  * @memberof HospitalContactModel
84
87
  */
85
88
  'languageLocalizedName'?: string | null;
89
+ /**
90
+ *
91
+ * @type {AuditableEntityModel}
92
+ * @memberof HospitalContactModel
93
+ */
94
+ 'auditableEntity'?: AuditableEntityModel;
86
95
  }
87
96
 
@@ -15,7 +15,7 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { AuditableEntity } from './auditable-entity';
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import { MediaModel } from './media-model';
@@ -119,6 +119,12 @@ export interface ServiceReviewItemModel {
119
119
  * @memberof ServiceReviewItemModel
120
120
  */
121
121
  'rate'?: number;
122
+ /**
123
+ *
124
+ * @type {Date}
125
+ * @memberof ServiceReviewItemModel
126
+ */
127
+ 'surgeryDate'?: Date | null;
122
128
  /**
123
129
  *
124
130
  * @type {ReviewType}
@@ -133,9 +139,9 @@ export interface ServiceReviewItemModel {
133
139
  'medias'?: Array<MediaModel> | null;
134
140
  /**
135
141
  *
136
- * @type {AuditableEntity}
142
+ * @type {AuditableEntityModel}
137
143
  * @memberof ServiceReviewItemModel
138
144
  */
139
- 'auditableEntity'?: AuditableEntity;
145
+ 'auditableEntity'?: AuditableEntityModel;
140
146
  }
141
147
 
@@ -15,7 +15,7 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { AuditableEntity } from './auditable-entity';
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import { MediaModel } from './media-model';
@@ -119,6 +119,12 @@ export interface ServiceReviewModel {
119
119
  * @memberof ServiceReviewModel
120
120
  */
121
121
  'rate'?: number;
122
+ /**
123
+ *
124
+ * @type {Date}
125
+ * @memberof ServiceReviewModel
126
+ */
127
+ 'surgeryDate'?: Date | null;
122
128
  /**
123
129
  *
124
130
  * @type {ReviewType}
@@ -133,10 +139,10 @@ export interface ServiceReviewModel {
133
139
  'medias'?: Array<MediaModel> | null;
134
140
  /**
135
141
  *
136
- * @type {AuditableEntity}
142
+ * @type {AuditableEntityModel}
137
143
  * @memberof ServiceReviewModel
138
144
  */
139
- 'auditableEntity'?: AuditableEntity;
145
+ 'auditableEntity'?: AuditableEntityModel;
140
146
  /**
141
147
  *
142
148
  * @type {string}
@@ -68,6 +68,12 @@ export interface UpdateServiceReviewCommand {
68
68
  * @memberof UpdateServiceReviewCommand
69
69
  */
70
70
  'rate'?: number | null;
71
+ /**
72
+ *
73
+ * @type {Date}
74
+ * @memberof UpdateServiceReviewCommand
75
+ */
76
+ 'surgeryDate'?: Date | null;
71
77
  /**
72
78
  *
73
79
  * @type {boolean}