ch-api-client-typescript2 5.12.20 → 5.13.0
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/deals-api.d.ts +12 -3
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +12 -6
- package/lib/api/doctor-affiliations-api.d.ts +12 -3
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +12 -6
- package/lib/api/hospitals-api.d.ts +36 -9
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +36 -18
- package/lib/models/appointment-option-model.d.ts +6 -0
- package/lib/models/appointment-option-model.d.ts.map +1 -1
- package/lib/models/appointment-timetable-time-slot-model.d.ts +18 -0
- package/lib/models/appointment-timetable-time-slot-model.d.ts.map +1 -1
- package/lib/models/create-service-review-command.d.ts +0 -6
- package/lib/models/create-service-review-command.d.ts.map +1 -1
- package/lib/models/service-review-item-model.d.ts +6 -0
- package/lib/models/service-review-item-model.d.ts.map +1 -1
- package/lib/models/service-review-model.d.ts +6 -0
- package/lib/models/service-review-model.d.ts.map +1 -1
- package/lib/models/survey-form-model.d.ts +6 -0
- package/lib/models/survey-form-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api/deals-api.ts +20 -6
- package/src/api/doctor-affiliations-api.ts +20 -6
- package/src/api/hospitals-api.ts +60 -18
- package/src/models/appointment-option-model.ts +6 -0
- package/src/models/appointment-timetable-time-slot-model.ts +18 -0
- package/src/models/create-service-review-command.ts +0 -6
- package/src/models/service-review-item-model.ts +6 -0
- package/src/models/service-review-model.ts +6 -0
- package/src/models/survey-form-model.ts +6 -0
package/src/api/deals-api.ts
CHANGED
|
@@ -198,11 +198,12 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
198
198
|
* @param {number} [month]
|
|
199
199
|
* @param {string} [timeZone]
|
|
200
200
|
* @param {boolean} [isExternal]
|
|
201
|
+
* @param {boolean} [isOnline]
|
|
201
202
|
* @param {string} [appointmentIdExcluded]
|
|
202
203
|
* @param {*} [options] Override http request option.
|
|
203
204
|
* @throws {RequiredError}
|
|
204
205
|
*/
|
|
205
|
-
apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet: async (dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
206
|
+
apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet: async (dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
206
207
|
// verify required parameter 'dealId' is not null or undefined
|
|
207
208
|
assertParamExists('apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet', 'dealId', dealId)
|
|
208
209
|
// verify required parameter 'packageId' is not null or undefined
|
|
@@ -241,6 +242,10 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
241
242
|
localVarQueryParameter['IsExternal'] = isExternal;
|
|
242
243
|
}
|
|
243
244
|
|
|
245
|
+
if (isOnline !== undefined) {
|
|
246
|
+
localVarQueryParameter['IsOnline'] = isOnline;
|
|
247
|
+
}
|
|
248
|
+
|
|
244
249
|
if (appointmentIdExcluded !== undefined) {
|
|
245
250
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
246
251
|
}
|
|
@@ -787,12 +792,13 @@ export const DealsApiFp = function(configuration?: Configuration) {
|
|
|
787
792
|
* @param {number} [month]
|
|
788
793
|
* @param {string} [timeZone]
|
|
789
794
|
* @param {boolean} [isExternal]
|
|
795
|
+
* @param {boolean} [isOnline]
|
|
790
796
|
* @param {string} [appointmentIdExcluded]
|
|
791
797
|
* @param {*} [options] Override http request option.
|
|
792
798
|
* @throws {RequiredError}
|
|
793
799
|
*/
|
|
794
|
-
async apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
795
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(dealId, packageId, year, month, timeZone, isExternal, appointmentIdExcluded, options);
|
|
800
|
+
async apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
801
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(dealId, packageId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
796
802
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
797
803
|
},
|
|
798
804
|
/**
|
|
@@ -968,12 +974,13 @@ export const DealsApiFactory = function (configuration?: Configuration, basePath
|
|
|
968
974
|
* @param {number} [month]
|
|
969
975
|
* @param {string} [timeZone]
|
|
970
976
|
* @param {boolean} [isExternal]
|
|
977
|
+
* @param {boolean} [isOnline]
|
|
971
978
|
* @param {string} [appointmentIdExcluded]
|
|
972
979
|
* @param {*} [options] Override http request option.
|
|
973
980
|
* @throws {RequiredError}
|
|
974
981
|
*/
|
|
975
|
-
apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
976
|
-
return localVarFp.apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(dealId, packageId, year, month, timeZone, isExternal, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
982
|
+
apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
983
|
+
return localVarFp.apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(dealId, packageId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
977
984
|
},
|
|
978
985
|
/**
|
|
979
986
|
*
|
|
@@ -1272,6 +1279,13 @@ export interface DealsApiApiV2DealsDealIdPackagesPackageIdAppointmenttimetablesG
|
|
|
1272
1279
|
*/
|
|
1273
1280
|
readonly isExternal?: boolean
|
|
1274
1281
|
|
|
1282
|
+
/**
|
|
1283
|
+
*
|
|
1284
|
+
* @type {boolean}
|
|
1285
|
+
* @memberof DealsApiApiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet
|
|
1286
|
+
*/
|
|
1287
|
+
readonly isOnline?: boolean
|
|
1288
|
+
|
|
1275
1289
|
/**
|
|
1276
1290
|
*
|
|
1277
1291
|
* @type {string}
|
|
@@ -1775,7 +1789,7 @@ export class DealsApi extends BaseAPI {
|
|
|
1775
1789
|
* @memberof DealsApi
|
|
1776
1790
|
*/
|
|
1777
1791
|
public apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(requestParameters: DealsApiApiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGetRequest, options?: AxiosRequestConfig) {
|
|
1778
|
-
return DealsApiFp(this.configuration).apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(requestParameters.dealId, requestParameters.packageId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
1792
|
+
return DealsApiFp(this.configuration).apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(requestParameters.dealId, requestParameters.packageId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
1779
1793
|
}
|
|
1780
1794
|
|
|
1781
1795
|
/**
|
|
@@ -48,11 +48,12 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
48
48
|
* @param {number} [month]
|
|
49
49
|
* @param {string} [timeZone]
|
|
50
50
|
* @param {boolean} [isExternal]
|
|
51
|
+
* @param {boolean} [isOnline]
|
|
51
52
|
* @param {string} [appointmentIdExcluded]
|
|
52
53
|
* @param {*} [options] Override http request option.
|
|
53
54
|
* @throws {RequiredError}
|
|
54
55
|
*/
|
|
55
|
-
apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet: async (doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
56
|
+
apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet: async (doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
56
57
|
// verify required parameter 'doctorAffiliationId' is not null or undefined
|
|
57
58
|
assertParamExists('apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet', 'doctorAffiliationId', doctorAffiliationId)
|
|
58
59
|
const localVarPath = `/api/v2/doctoraffiliations/{doctorAffiliationId}/appointmenttimetables`
|
|
@@ -88,6 +89,10 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
88
89
|
localVarQueryParameter['IsExternal'] = isExternal;
|
|
89
90
|
}
|
|
90
91
|
|
|
92
|
+
if (isOnline !== undefined) {
|
|
93
|
+
localVarQueryParameter['IsOnline'] = isOnline;
|
|
94
|
+
}
|
|
95
|
+
|
|
91
96
|
if (appointmentIdExcluded !== undefined) {
|
|
92
97
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
93
98
|
}
|
|
@@ -405,12 +410,13 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
405
410
|
* @param {number} [month]
|
|
406
411
|
* @param {string} [timeZone]
|
|
407
412
|
* @param {boolean} [isExternal]
|
|
413
|
+
* @param {boolean} [isOnline]
|
|
408
414
|
* @param {string} [appointmentIdExcluded]
|
|
409
415
|
* @param {*} [options] Override http request option.
|
|
410
416
|
* @throws {RequiredError}
|
|
411
417
|
*/
|
|
412
|
-
async apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
413
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId, year, month, timeZone, isExternal, appointmentIdExcluded, options);
|
|
418
|
+
async apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
419
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
414
420
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
415
421
|
},
|
|
416
422
|
/**
|
|
@@ -508,12 +514,13 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
508
514
|
* @param {number} [month]
|
|
509
515
|
* @param {string} [timeZone]
|
|
510
516
|
* @param {boolean} [isExternal]
|
|
517
|
+
* @param {boolean} [isOnline]
|
|
511
518
|
* @param {string} [appointmentIdExcluded]
|
|
512
519
|
* @param {*} [options] Override http request option.
|
|
513
520
|
* @throws {RequiredError}
|
|
514
521
|
*/
|
|
515
|
-
apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
516
|
-
return localVarFp.apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId, year, month, timeZone, isExternal, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
522
|
+
apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
523
|
+
return localVarFp.apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
517
524
|
},
|
|
518
525
|
/**
|
|
519
526
|
*
|
|
@@ -631,6 +638,13 @@ export interface DoctorAffiliationsApiApiV2DoctoraffiliationsDoctorAffiliationId
|
|
|
631
638
|
*/
|
|
632
639
|
readonly isExternal?: boolean
|
|
633
640
|
|
|
641
|
+
/**
|
|
642
|
+
*
|
|
643
|
+
* @type {boolean}
|
|
644
|
+
* @memberof DoctorAffiliationsApiApiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet
|
|
645
|
+
*/
|
|
646
|
+
readonly isOnline?: boolean
|
|
647
|
+
|
|
634
648
|
/**
|
|
635
649
|
*
|
|
636
650
|
* @type {string}
|
|
@@ -879,7 +893,7 @@ export class DoctorAffiliationsApi extends BaseAPI {
|
|
|
879
893
|
* @memberof DoctorAffiliationsApi
|
|
880
894
|
*/
|
|
881
895
|
public apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(requestParameters: DoctorAffiliationsApiApiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGetRequest, options?: AxiosRequestConfig) {
|
|
882
|
-
return DoctorAffiliationsApiFp(this.configuration).apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(requestParameters.doctorAffiliationId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
896
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(requestParameters.doctorAffiliationId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
883
897
|
}
|
|
884
898
|
|
|
885
899
|
/**
|
package/src/api/hospitals-api.ts
CHANGED
|
@@ -376,11 +376,12 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
376
376
|
* @param {number} [month]
|
|
377
377
|
* @param {string} [timeZone]
|
|
378
378
|
* @param {boolean} [isExternal]
|
|
379
|
+
* @param {boolean} [isOnline]
|
|
379
380
|
* @param {string} [appointmentIdExcluded]
|
|
380
381
|
* @param {*} [options] Override http request option.
|
|
381
382
|
* @throws {RequiredError}
|
|
382
383
|
*/
|
|
383
|
-
apiV2HospitalsHospitalIdAppointmenttimetablesGet: async (hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
384
|
+
apiV2HospitalsHospitalIdAppointmenttimetablesGet: async (hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
384
385
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
385
386
|
assertParamExists('apiV2HospitalsHospitalIdAppointmenttimetablesGet', 'hospitalId', hospitalId)
|
|
386
387
|
const localVarPath = `/api/v2/hospitals/{hospitalId}/appointmenttimetables`
|
|
@@ -416,6 +417,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
416
417
|
localVarQueryParameter['IsExternal'] = isExternal;
|
|
417
418
|
}
|
|
418
419
|
|
|
420
|
+
if (isOnline !== undefined) {
|
|
421
|
+
localVarQueryParameter['IsOnline'] = isOnline;
|
|
422
|
+
}
|
|
423
|
+
|
|
419
424
|
if (appointmentIdExcluded !== undefined) {
|
|
420
425
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
421
426
|
}
|
|
@@ -1799,11 +1804,12 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1799
1804
|
* @param {number} [month]
|
|
1800
1805
|
* @param {string} [timeZone]
|
|
1801
1806
|
* @param {boolean} [isExternal]
|
|
1807
|
+
* @param {boolean} [isOnline]
|
|
1802
1808
|
* @param {string} [appointmentIdExcluded]
|
|
1803
1809
|
* @param {*} [options] Override http request option.
|
|
1804
1810
|
* @throws {RequiredError}
|
|
1805
1811
|
*/
|
|
1806
|
-
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet: async (hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1812
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet: async (hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1807
1813
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
1808
1814
|
assertParamExists('apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet', 'hospitalId', hospitalId)
|
|
1809
1815
|
// verify required parameter 'hospitalSpecialtyId' is not null or undefined
|
|
@@ -1842,6 +1848,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1842
1848
|
localVarQueryParameter['IsExternal'] = isExternal;
|
|
1843
1849
|
}
|
|
1844
1850
|
|
|
1851
|
+
if (isOnline !== undefined) {
|
|
1852
|
+
localVarQueryParameter['IsOnline'] = isOnline;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1845
1855
|
if (appointmentIdExcluded !== undefined) {
|
|
1846
1856
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
1847
1857
|
}
|
|
@@ -2278,11 +2288,12 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2278
2288
|
* @param {number} [month]
|
|
2279
2289
|
* @param {string} [timeZone]
|
|
2280
2290
|
* @param {boolean} [isExternal]
|
|
2291
|
+
* @param {boolean} [isOnline]
|
|
2281
2292
|
* @param {string} [appointmentIdExcluded]
|
|
2282
2293
|
* @param {*} [options] Override http request option.
|
|
2283
2294
|
* @throws {RequiredError}
|
|
2284
2295
|
*/
|
|
2285
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet: async (hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2296
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet: async (hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2286
2297
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
2287
2298
|
assertParamExists('apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet', 'hospitalId', hospitalId)
|
|
2288
2299
|
// verify required parameter 'specialtyId' is not null or undefined
|
|
@@ -2324,6 +2335,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2324
2335
|
localVarQueryParameter['IsExternal'] = isExternal;
|
|
2325
2336
|
}
|
|
2326
2337
|
|
|
2338
|
+
if (isOnline !== undefined) {
|
|
2339
|
+
localVarQueryParameter['IsOnline'] = isOnline;
|
|
2340
|
+
}
|
|
2341
|
+
|
|
2327
2342
|
if (appointmentIdExcluded !== undefined) {
|
|
2328
2343
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
2329
2344
|
}
|
|
@@ -2977,12 +2992,13 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
2977
2992
|
* @param {number} [month]
|
|
2978
2993
|
* @param {string} [timeZone]
|
|
2979
2994
|
* @param {boolean} [isExternal]
|
|
2995
|
+
* @param {boolean} [isOnline]
|
|
2980
2996
|
* @param {string} [appointmentIdExcluded]
|
|
2981
2997
|
* @param {*} [options] Override http request option.
|
|
2982
2998
|
* @throws {RequiredError}
|
|
2983
2999
|
*/
|
|
2984
|
-
async apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
2985
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId, year, month, timeZone, isExternal, appointmentIdExcluded, options);
|
|
3000
|
+
async apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
3001
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
2986
3002
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2987
3003
|
},
|
|
2988
3004
|
/**
|
|
@@ -3367,12 +3383,13 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
3367
3383
|
* @param {number} [month]
|
|
3368
3384
|
* @param {string} [timeZone]
|
|
3369
3385
|
* @param {boolean} [isExternal]
|
|
3386
|
+
* @param {boolean} [isOnline]
|
|
3370
3387
|
* @param {string} [appointmentIdExcluded]
|
|
3371
3388
|
* @param {*} [options] Override http request option.
|
|
3372
3389
|
* @throws {RequiredError}
|
|
3373
3390
|
*/
|
|
3374
|
-
async apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
3375
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, appointmentIdExcluded, options);
|
|
3391
|
+
async apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
3392
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
3376
3393
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3377
3394
|
},
|
|
3378
3395
|
/**
|
|
@@ -3492,12 +3509,13 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
3492
3509
|
* @param {number} [month]
|
|
3493
3510
|
* @param {string} [timeZone]
|
|
3494
3511
|
* @param {boolean} [isExternal]
|
|
3512
|
+
* @param {boolean} [isOnline]
|
|
3495
3513
|
* @param {string} [appointmentIdExcluded]
|
|
3496
3514
|
* @param {*} [options] Override http request option.
|
|
3497
3515
|
* @throws {RequiredError}
|
|
3498
3516
|
*/
|
|
3499
|
-
async apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
3500
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, appointmentIdExcluded, options);
|
|
3517
|
+
async apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
3518
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
3501
3519
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3502
3520
|
},
|
|
3503
3521
|
/**
|
|
@@ -3729,12 +3747,13 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
3729
3747
|
* @param {number} [month]
|
|
3730
3748
|
* @param {string} [timeZone]
|
|
3731
3749
|
* @param {boolean} [isExternal]
|
|
3750
|
+
* @param {boolean} [isOnline]
|
|
3732
3751
|
* @param {string} [appointmentIdExcluded]
|
|
3733
3752
|
* @param {*} [options] Override http request option.
|
|
3734
3753
|
* @throws {RequiredError}
|
|
3735
3754
|
*/
|
|
3736
|
-
apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
3737
|
-
return localVarFp.apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId, year, month, timeZone, isExternal, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
3755
|
+
apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
3756
|
+
return localVarFp.apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
3738
3757
|
},
|
|
3739
3758
|
/**
|
|
3740
3759
|
*
|
|
@@ -4093,12 +4112,13 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
4093
4112
|
* @param {number} [month]
|
|
4094
4113
|
* @param {string} [timeZone]
|
|
4095
4114
|
* @param {boolean} [isExternal]
|
|
4115
|
+
* @param {boolean} [isOnline]
|
|
4096
4116
|
* @param {string} [appointmentIdExcluded]
|
|
4097
4117
|
* @param {*} [options] Override http request option.
|
|
4098
4118
|
* @throws {RequiredError}
|
|
4099
4119
|
*/
|
|
4100
|
-
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
4101
|
-
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
4120
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
4121
|
+
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
4102
4122
|
},
|
|
4103
4123
|
/**
|
|
4104
4124
|
*
|
|
@@ -4211,12 +4231,13 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
4211
4231
|
* @param {number} [month]
|
|
4212
4232
|
* @param {string} [timeZone]
|
|
4213
4233
|
* @param {boolean} [isExternal]
|
|
4234
|
+
* @param {boolean} [isOnline]
|
|
4214
4235
|
* @param {string} [appointmentIdExcluded]
|
|
4215
4236
|
* @param {*} [options] Override http request option.
|
|
4216
4237
|
* @throws {RequiredError}
|
|
4217
4238
|
*/
|
|
4218
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
4219
|
-
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
4239
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
4240
|
+
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
4220
4241
|
},
|
|
4221
4242
|
/**
|
|
4222
4243
|
*
|
|
@@ -4631,6 +4652,13 @@ export interface HospitalsApiApiV2HospitalsHospitalIdAppointmenttimetablesGetReq
|
|
|
4631
4652
|
*/
|
|
4632
4653
|
readonly isExternal?: boolean
|
|
4633
4654
|
|
|
4655
|
+
/**
|
|
4656
|
+
*
|
|
4657
|
+
* @type {boolean}
|
|
4658
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdAppointmenttimetablesGet
|
|
4659
|
+
*/
|
|
4660
|
+
readonly isOnline?: boolean
|
|
4661
|
+
|
|
4634
4662
|
/**
|
|
4635
4663
|
*
|
|
4636
4664
|
* @type {string}
|
|
@@ -5723,6 +5751,13 @@ export interface HospitalsApiApiV2HospitalsHospitalIdSpecialtiesHospitalSpecialt
|
|
|
5723
5751
|
*/
|
|
5724
5752
|
readonly isExternal?: boolean
|
|
5725
5753
|
|
|
5754
|
+
/**
|
|
5755
|
+
*
|
|
5756
|
+
* @type {boolean}
|
|
5757
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet
|
|
5758
|
+
*/
|
|
5759
|
+
readonly isOnline?: boolean
|
|
5760
|
+
|
|
5726
5761
|
/**
|
|
5727
5762
|
*
|
|
5728
5763
|
* @type {string}
|
|
@@ -6157,6 +6192,13 @@ export interface HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServi
|
|
|
6157
6192
|
*/
|
|
6158
6193
|
readonly isExternal?: boolean
|
|
6159
6194
|
|
|
6195
|
+
/**
|
|
6196
|
+
*
|
|
6197
|
+
* @type {boolean}
|
|
6198
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet
|
|
6199
|
+
*/
|
|
6200
|
+
readonly isOnline?: boolean
|
|
6201
|
+
|
|
6160
6202
|
/**
|
|
6161
6203
|
*
|
|
6162
6204
|
* @type {string}
|
|
@@ -6690,7 +6732,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
6690
6732
|
* @memberof HospitalsApi
|
|
6691
6733
|
*/
|
|
6692
6734
|
public apiV2HospitalsHospitalIdAppointmenttimetablesGet(requestParameters: HospitalsApiApiV2HospitalsHospitalIdAppointmenttimetablesGetRequest, options?: AxiosRequestConfig) {
|
|
6693
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdAppointmenttimetablesGet(requestParameters.hospitalId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
6735
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdAppointmenttimetablesGet(requestParameters.hospitalId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
6694
6736
|
}
|
|
6695
6737
|
|
|
6696
6738
|
/**
|
|
@@ -7002,7 +7044,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
7002
7044
|
* @memberof HospitalsApi
|
|
7003
7045
|
*/
|
|
7004
7046
|
public apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(requestParameters: HospitalsApiApiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGetRequest, options?: AxiosRequestConfig) {
|
|
7005
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
7047
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
7006
7048
|
}
|
|
7007
7049
|
|
|
7008
7050
|
/**
|
|
@@ -7086,7 +7128,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
7086
7128
|
* @memberof HospitalsApi
|
|
7087
7129
|
*/
|
|
7088
7130
|
public apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(requestParameters: HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGetRequest, options?: AxiosRequestConfig) {
|
|
7089
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
7131
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
7090
7132
|
}
|
|
7091
7133
|
|
|
7092
7134
|
/**
|
|
@@ -44,6 +44,12 @@ export interface AppointmentOptionModel {
|
|
|
44
44
|
* @memberof AppointmentOptionModel
|
|
45
45
|
*/
|
|
46
46
|
'useTimetable'?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {boolean}
|
|
50
|
+
* @memberof AppointmentOptionModel
|
|
51
|
+
*/
|
|
52
|
+
'useAutoGeneratedTimeSlot'?: boolean;
|
|
47
53
|
/**
|
|
48
54
|
*
|
|
49
55
|
* @type {number}
|
|
@@ -59,5 +59,23 @@ export interface AppointmentTimetableTimeSlotModel {
|
|
|
59
59
|
* @memberof AppointmentTimetableTimeSlotModel
|
|
60
60
|
*/
|
|
61
61
|
'isAvailable'?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {boolean}
|
|
65
|
+
* @memberof AppointmentTimetableTimeSlotModel
|
|
66
|
+
*/
|
|
67
|
+
'isOnline'?: boolean;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {boolean}
|
|
71
|
+
* @memberof AppointmentTimetableTimeSlotModel
|
|
72
|
+
*/
|
|
73
|
+
'isOffline'?: boolean;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {number}
|
|
77
|
+
* @memberof AppointmentTimetableTimeSlotModel
|
|
78
|
+
*/
|
|
79
|
+
'quantity'?: number;
|
|
62
80
|
}
|
|
63
81
|
|
|
@@ -29,12 +29,6 @@ export interface CreateServiceReviewCommand {
|
|
|
29
29
|
* @memberof CreateServiceReviewCommand
|
|
30
30
|
*/
|
|
31
31
|
'serviceId'?: string;
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {string}
|
|
35
|
-
* @memberof CreateServiceReviewCommand
|
|
36
|
-
*/
|
|
37
|
-
'patientId'?: string | null;
|
|
38
32
|
/**
|
|
39
33
|
*
|
|
40
34
|
* @type {string}
|
|
@@ -119,6 +119,12 @@ export interface ServiceReviewItemModel {
|
|
|
119
119
|
* @memberof ServiceReviewItemModel
|
|
120
120
|
*/
|
|
121
121
|
'patientName'?: string | null;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {string}
|
|
125
|
+
* @memberof ServiceReviewItemModel
|
|
126
|
+
*/
|
|
127
|
+
'displayPatientName'?: string | null;
|
|
122
128
|
/**
|
|
123
129
|
*
|
|
124
130
|
* @type {string}
|
|
@@ -119,6 +119,12 @@ export interface ServiceReviewModel {
|
|
|
119
119
|
* @memberof ServiceReviewModel
|
|
120
120
|
*/
|
|
121
121
|
'patientName'?: string | null;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {string}
|
|
125
|
+
* @memberof ServiceReviewModel
|
|
126
|
+
*/
|
|
127
|
+
'displayPatientName'?: string | null;
|
|
122
128
|
/**
|
|
123
129
|
*
|
|
124
130
|
* @type {string}
|
|
@@ -98,6 +98,12 @@ export interface SurveyFormModel {
|
|
|
98
98
|
* @memberof SurveyFormModel
|
|
99
99
|
*/
|
|
100
100
|
'content'?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {Array<string>}
|
|
104
|
+
* @memberof SurveyFormModel
|
|
105
|
+
*/
|
|
106
|
+
'translatedLanguages'?: Array<string> | null;
|
|
101
107
|
/**
|
|
102
108
|
*
|
|
103
109
|
* @type {Array<SurveyFormElementModel>}
|