ch-admin-api-client-typescript 5.1.9 → 5.2.1

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.
Files changed (99) hide show
  1. package/lib/api/grades-api.d.ts +339 -0
  2. package/lib/api/grades-api.d.ts.map +1 -0
  3. package/lib/api/grades-api.js +600 -0
  4. package/lib/api/hospitals-api.d.ts +343 -0
  5. package/lib/api/hospitals-api.d.ts.map +1 -1
  6. package/lib/api/hospitals-api.js +497 -0
  7. package/lib/api/survey-results-api.d.ts +12 -3
  8. package/lib/api/survey-results-api.d.ts.map +1 -1
  9. package/lib/api/survey-results-api.js +12 -6
  10. package/lib/api.d.ts +1 -0
  11. package/lib/api.d.ts.map +1 -1
  12. package/lib/api.js +1 -0
  13. package/lib/models/contact-scope.d.ts +22 -0
  14. package/lib/models/contact-scope.d.ts.map +1 -0
  15. package/lib/models/contact-scope.js +25 -0
  16. package/lib/models/create-grade-command.d.ts +44 -0
  17. package/lib/models/create-grade-command.d.ts.map +1 -0
  18. package/lib/models/create-hospital-command.d.ts +6 -0
  19. package/lib/models/create-hospital-command.d.ts.map +1 -1
  20. package/lib/models/create-hospital-contact-command.d.ts +62 -0
  21. package/lib/models/create-hospital-contact-command.d.ts.map +1 -0
  22. package/lib/models/create-hospital-contact-command.js +15 -0
  23. package/lib/models/create-survey-form-command.d.ts +6 -0
  24. package/lib/models/create-survey-form-command.d.ts.map +1 -1
  25. package/lib/models/grade-item-model.d.ts +57 -0
  26. package/lib/models/grade-item-model.d.ts.map +1 -0
  27. package/lib/models/grade-item-model.js +15 -0
  28. package/lib/models/grade-model.d.ts +57 -0
  29. package/lib/models/grade-model.d.ts.map +1 -0
  30. package/lib/models/grade-model.js +15 -0
  31. package/lib/models/grade-targets.d.ts +22 -0
  32. package/lib/models/grade-targets.d.ts.map +1 -0
  33. package/lib/models/grade-targets.js +25 -0
  34. package/lib/models/grades-model.d.ts +33 -0
  35. package/lib/models/grades-model.d.ts.map +1 -0
  36. package/lib/models/grades-model.js +15 -0
  37. package/lib/models/hospital-contact-item-model.d.ts +80 -0
  38. package/lib/models/hospital-contact-item-model.d.ts.map +1 -0
  39. package/lib/models/hospital-contact-item-model.js +15 -0
  40. package/lib/models/hospital-contact-model.d.ts +80 -0
  41. package/lib/models/hospital-contact-model.d.ts.map +1 -0
  42. package/lib/models/hospital-contact-model.js +15 -0
  43. package/lib/models/hospital-contacts-model.d.ts +33 -0
  44. package/lib/models/hospital-contacts-model.d.ts.map +1 -0
  45. package/lib/models/hospital-contacts-model.js +15 -0
  46. package/lib/models/hospital-item-model.d.ts +13 -0
  47. package/lib/models/hospital-item-model.d.ts.map +1 -1
  48. package/lib/models/hospital-model.d.ts +13 -0
  49. package/lib/models/hospital-model.d.ts.map +1 -1
  50. package/lib/models/index.d.ts +12 -1
  51. package/lib/models/index.d.ts.map +1 -1
  52. package/lib/models/index.js +12 -1
  53. package/lib/models/survey-form-item-model.d.ts +6 -0
  54. package/lib/models/survey-form-item-model.d.ts.map +1 -1
  55. package/lib/models/survey-form-model.d.ts +6 -0
  56. package/lib/models/survey-form-model.d.ts.map +1 -1
  57. package/lib/models/survey-results-model.d.ts +3 -3
  58. package/lib/models/survey-results-model.d.ts.map +1 -1
  59. package/lib/models/update-grade-command.d.ts +37 -0
  60. package/lib/models/update-grade-command.d.ts.map +1 -0
  61. package/lib/models/update-grade-command.js +15 -0
  62. package/lib/models/update-hospital-command.d.ts +6 -0
  63. package/lib/models/update-hospital-command.d.ts.map +1 -1
  64. package/lib/models/update-hospital-contact-command.d.ts +62 -0
  65. package/lib/models/update-hospital-contact-command.d.ts.map +1 -0
  66. package/lib/models/update-hospital-contact-command.js +15 -0
  67. package/lib/models/update-survey-form-command.d.ts +6 -0
  68. package/lib/models/update-survey-form-command.d.ts.map +1 -1
  69. package/package.json +1 -1
  70. package/src/.openapi-generator/FILES +13 -1
  71. package/src/api/grades-api.ts +595 -0
  72. package/src/api/hospitals-api.ts +600 -0
  73. package/src/api/survey-results-api.ts +20 -6
  74. package/src/api.ts +1 -0
  75. package/src/models/contact-scope.ts +31 -0
  76. package/src/models/create-grade-command.ts +51 -0
  77. package/src/models/create-hospital-command.ts +6 -0
  78. package/src/models/create-hospital-contact-command.ts +69 -0
  79. package/src/models/create-survey-form-command.ts +6 -0
  80. package/src/models/grade-item-model.ts +66 -0
  81. package/src/models/grade-model.ts +66 -0
  82. package/src/models/grade-targets.ts +31 -0
  83. package/src/models/grades-model.ts +42 -0
  84. package/src/models/hospital-contact-item-model.ts +87 -0
  85. package/src/models/{survey-result-item-model.ts → hospital-contact-model.ts} +27 -21
  86. package/src/models/hospital-contacts-model.ts +42 -0
  87. package/src/models/hospital-item-model.ts +15 -0
  88. package/src/models/hospital-model.ts +15 -0
  89. package/src/models/index.ts +12 -1
  90. package/src/models/survey-form-item-model.ts +6 -0
  91. package/src/models/survey-form-model.ts +6 -0
  92. package/src/models/survey-results-model.ts +3 -3
  93. package/src/models/update-grade-command.ts +42 -0
  94. package/src/models/update-hospital-command.ts +6 -0
  95. package/src/models/update-hospital-contact-command.ts +69 -0
  96. package/src/models/update-survey-form-command.ts +6 -0
  97. package/lib/models/survey-result-item-model.d.ts +0 -74
  98. package/lib/models/survey-result-item-model.d.ts.map +0 -1
  99. /package/lib/models/{survey-result-item-model.js → create-grade-command.js} +0 -0
@@ -37,6 +37,7 @@ export const SurveyResultsApiAxiosParamCreator = function (configuration?: Confi
37
37
  * @summary Get survey results
38
38
  * @param {string} [id]
39
39
  * @param {string} [hospitalId]
40
+ * @param {string} [surveyFormId]
40
41
  * @param {string} [name]
41
42
  * @param {string} [languageCode]
42
43
  * @param {number} [page]
@@ -45,7 +46,7 @@ export const SurveyResultsApiAxiosParamCreator = function (configuration?: Confi
45
46
  * @param {*} [options] Override http request option.
46
47
  * @throws {RequiredError}
47
48
  */
48
- apiV1SurveyresultsGet: async (id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
49
+ apiV1SurveyresultsGet: async (id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
49
50
  const localVarPath = `/api/v1/surveyresults`;
50
51
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
51
52
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -70,6 +71,10 @@ export const SurveyResultsApiAxiosParamCreator = function (configuration?: Confi
70
71
  localVarQueryParameter['HospitalId'] = hospitalId;
71
72
  }
72
73
 
74
+ if (surveyFormId !== undefined) {
75
+ localVarQueryParameter['SurveyFormId'] = surveyFormId;
76
+ }
77
+
73
78
  if (name !== undefined) {
74
79
  localVarQueryParameter['Name'] = name;
75
80
  }
@@ -194,6 +199,7 @@ export const SurveyResultsApiFp = function(configuration?: Configuration) {
194
199
  * @summary Get survey results
195
200
  * @param {string} [id]
196
201
  * @param {string} [hospitalId]
202
+ * @param {string} [surveyFormId]
197
203
  * @param {string} [name]
198
204
  * @param {string} [languageCode]
199
205
  * @param {number} [page]
@@ -202,8 +208,8 @@ export const SurveyResultsApiFp = function(configuration?: Configuration) {
202
208
  * @param {*} [options] Override http request option.
203
209
  * @throws {RequiredError}
204
210
  */
205
- async apiV1SurveyresultsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyResultsModel>> {
206
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SurveyresultsGet(id, hospitalId, name, languageCode, page, limit, lastRetrieved, options);
211
+ async apiV1SurveyresultsGet(id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyResultsModel>> {
212
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SurveyresultsGet(id, hospitalId, surveyFormId, name, languageCode, page, limit, lastRetrieved, options);
207
213
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
208
214
  },
209
215
  /**
@@ -243,6 +249,7 @@ export const SurveyResultsApiFactory = function (configuration?: Configuration,
243
249
  * @summary Get survey results
244
250
  * @param {string} [id]
245
251
  * @param {string} [hospitalId]
252
+ * @param {string} [surveyFormId]
246
253
  * @param {string} [name]
247
254
  * @param {string} [languageCode]
248
255
  * @param {number} [page]
@@ -251,8 +258,8 @@ export const SurveyResultsApiFactory = function (configuration?: Configuration,
251
258
  * @param {*} [options] Override http request option.
252
259
  * @throws {RequiredError}
253
260
  */
254
- apiV1SurveyresultsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SurveyResultsModel> {
255
- return localVarFp.apiV1SurveyresultsGet(id, hospitalId, name, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
261
+ apiV1SurveyresultsGet(id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SurveyResultsModel> {
262
+ return localVarFp.apiV1SurveyresultsGet(id, hospitalId, surveyFormId, name, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
256
263
  },
257
264
  /**
258
265
  *
@@ -297,6 +304,13 @@ export interface SurveyResultsApiApiV1SurveyresultsGetRequest {
297
304
  */
298
305
  readonly hospitalId?: string
299
306
 
307
+ /**
308
+ *
309
+ * @type {string}
310
+ * @memberof SurveyResultsApiApiV1SurveyresultsGet
311
+ */
312
+ readonly surveyFormId?: string
313
+
300
314
  /**
301
315
  *
302
316
  * @type {string}
@@ -377,7 +391,7 @@ export class SurveyResultsApi extends BaseAPI {
377
391
  * @memberof SurveyResultsApi
378
392
  */
379
393
  public apiV1SurveyresultsGet(requestParameters: SurveyResultsApiApiV1SurveyresultsGetRequest = {}, options?: AxiosRequestConfig) {
380
- return SurveyResultsApiFp(this.configuration).apiV1SurveyresultsGet(requestParameters.id, requestParameters.hospitalId, requestParameters.name, requestParameters.languageCode, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
394
+ return SurveyResultsApiFp(this.configuration).apiV1SurveyresultsGet(requestParameters.id, requestParameters.hospitalId, requestParameters.surveyFormId, requestParameters.name, requestParameters.languageCode, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
381
395
  }
382
396
 
383
397
  /**
package/src/api.ts CHANGED
@@ -34,6 +34,7 @@ export * from './api/doctors-api';
34
34
  export * from './api/email-marketings-api';
35
35
  export * from './api/faq-categories-api';
36
36
  export * from './api/faqs-api';
37
+ export * from './api/grades-api';
37
38
  export * from './api/group-channels-api';
38
39
  export * from './api/header-navigations-api';
39
40
  export * from './api/hospitals-api';
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+
23
+ export const ContactScope = {
24
+ Domestic: 'Domestic',
25
+ International: 'International'
26
+ } as const;
27
+
28
+ export type ContactScope = typeof ContactScope[keyof typeof ContactScope];
29
+
30
+
31
+
@@ -0,0 +1,51 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { GradeTargets } from './grade-targets';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface CreateGradeCommand
24
+ */
25
+ export interface CreateGradeCommand {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof CreateGradeCommand
30
+ */
31
+ 'name'?: string | null;
32
+ /**
33
+ *
34
+ * @type {number}
35
+ * @memberof CreateGradeCommand
36
+ */
37
+ 'searchBonus'?: number;
38
+ /**
39
+ *
40
+ * @type {GradeTargets}
41
+ * @memberof CreateGradeCommand
42
+ */
43
+ 'gradeTarget'?: GradeTargets;
44
+ /**
45
+ *
46
+ * @type {number}
47
+ * @memberof CreateGradeCommand
48
+ */
49
+ 'order'?: number;
50
+ }
51
+
@@ -158,6 +158,12 @@ export interface CreateHospitalCommand {
158
158
  * @memberof CreateHospitalCommand
159
159
  */
160
160
  'paymentEnabled'?: boolean;
161
+ /**
162
+ *
163
+ * @type {string}
164
+ * @memberof CreateHospitalCommand
165
+ */
166
+ 'gradeId'?: string | null;
161
167
  /**
162
168
  *
163
169
  * @type {LocationModel}
@@ -0,0 +1,69 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { ContactScope } from './contact-scope';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface CreateHospitalContactCommand
24
+ */
25
+ export interface CreateHospitalContactCommand {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof CreateHospitalContactCommand
30
+ */
31
+ 'name'?: string | null;
32
+ /**
33
+ *
34
+ * @type {ContactScope}
35
+ * @memberof CreateHospitalContactCommand
36
+ */
37
+ 'scope'?: ContactScope;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof CreateHospitalContactCommand
42
+ */
43
+ 'tel'?: string | null;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof CreateHospitalContactCommand
48
+ */
49
+ 'targetTel'?: string | null;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof CreateHospitalContactCommand
54
+ */
55
+ 'email'?: string | null;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof CreateHospitalContactCommand
60
+ */
61
+ 'languageCode'?: string | null;
62
+ /**
63
+ *
64
+ * @type {number}
65
+ * @memberof CreateHospitalContactCommand
66
+ */
67
+ 'order'?: number;
68
+ }
69
+
@@ -44,6 +44,12 @@ export interface CreateSurveyFormCommand {
44
44
  * @memberof CreateSurveyFormCommand
45
45
  */
46
46
  'status'?: SurveyFormStatus;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof CreateSurveyFormCommand
51
+ */
52
+ 'urlAfterDone'?: string | null;
47
53
  /**
48
54
  *
49
55
  * @type {string}
@@ -0,0 +1,66 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { GradeTargets } from './grade-targets';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface GradeItemModel
27
+ */
28
+ export interface GradeItemModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof GradeItemModel
33
+ */
34
+ 'id'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof GradeItemModel
39
+ */
40
+ 'name'?: string | null;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof GradeItemModel
45
+ */
46
+ 'searchBonus'?: number;
47
+ /**
48
+ *
49
+ * @type {GradeTargets}
50
+ * @memberof GradeItemModel
51
+ */
52
+ 'gradeTarget'?: GradeTargets;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof GradeItemModel
57
+ */
58
+ 'order'?: number;
59
+ /**
60
+ *
61
+ * @type {AuditableEntityModel}
62
+ * @memberof GradeItemModel
63
+ */
64
+ 'auditableEntity'?: AuditableEntityModel;
65
+ }
66
+
@@ -0,0 +1,66 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { GradeTargets } from './grade-targets';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface GradeModel
27
+ */
28
+ export interface GradeModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof GradeModel
33
+ */
34
+ 'id'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof GradeModel
39
+ */
40
+ 'name'?: string | null;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof GradeModel
45
+ */
46
+ 'searchBonus'?: number;
47
+ /**
48
+ *
49
+ * @type {GradeTargets}
50
+ * @memberof GradeModel
51
+ */
52
+ 'gradeTarget'?: GradeTargets;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof GradeModel
57
+ */
58
+ 'order'?: number;
59
+ /**
60
+ *
61
+ * @type {AuditableEntityModel}
62
+ * @memberof GradeModel
63
+ */
64
+ 'auditableEntity'?: AuditableEntityModel;
65
+ }
66
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+
23
+ export const GradeTargets = {
24
+ None: 'None',
25
+ Hospital: 'Hospital'
26
+ } as const;
27
+
28
+ export type GradeTargets = typeof GradeTargets[keyof typeof GradeTargets];
29
+
30
+
31
+
@@ -0,0 +1,42 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { GradeItemModel } from './grade-item-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PagedListMetaData } from './paged-list-meta-data';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface GradesModel
27
+ */
28
+ export interface GradesModel {
29
+ /**
30
+ *
31
+ * @type {Array<GradeItemModel>}
32
+ * @memberof GradesModel
33
+ */
34
+ 'items'?: Array<GradeItemModel> | null;
35
+ /**
36
+ *
37
+ * @type {PagedListMetaData}
38
+ * @memberof GradesModel
39
+ */
40
+ 'metaData'?: PagedListMetaData;
41
+ }
42
+
@@ -0,0 +1,87 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { ContactScope } from './contact-scope';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface HospitalContactItemModel
24
+ */
25
+ export interface HospitalContactItemModel {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof HospitalContactItemModel
30
+ */
31
+ 'id'?: string;
32
+ /**
33
+ *
34
+ * @type {ContactScope}
35
+ * @memberof HospitalContactItemModel
36
+ */
37
+ 'scope'?: ContactScope;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof HospitalContactItemModel
42
+ */
43
+ 'name'?: string | null;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof HospitalContactItemModel
48
+ */
49
+ 'tel'?: string | null;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof HospitalContactItemModel
54
+ */
55
+ 'targetTel'?: string | null;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof HospitalContactItemModel
60
+ */
61
+ 'email'?: string | null;
62
+ /**
63
+ *
64
+ * @type {string}
65
+ * @memberof HospitalContactItemModel
66
+ */
67
+ 'languageCode'?: string | null;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof HospitalContactItemModel
72
+ */
73
+ 'hospitalId'?: string;
74
+ /**
75
+ *
76
+ * @type {number}
77
+ * @memberof HospitalContactItemModel
78
+ */
79
+ 'order'?: number;
80
+ /**
81
+ *
82
+ * @type {string}
83
+ * @memberof HospitalContactItemModel
84
+ */
85
+ 'languageLocalizedName'?: string | null;
86
+ }
87
+
@@ -15,67 +15,73 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { SurveyResultUserModel } from './survey-result-user-model';
18
+ import { ContactScope } from './contact-scope';
19
19
 
20
20
  /**
21
21
  *
22
22
  * @export
23
- * @interface SurveyResultItemModel
23
+ * @interface HospitalContactModel
24
24
  */
25
- export interface SurveyResultItemModel {
25
+ export interface HospitalContactModel {
26
26
  /**
27
27
  *
28
28
  * @type {string}
29
- * @memberof SurveyResultItemModel
29
+ * @memberof HospitalContactModel
30
30
  */
31
31
  'id'?: string;
32
+ /**
33
+ *
34
+ * @type {ContactScope}
35
+ * @memberof HospitalContactModel
36
+ */
37
+ 'scope'?: ContactScope;
32
38
  /**
33
39
  *
34
40
  * @type {string}
35
- * @memberof SurveyResultItemModel
41
+ * @memberof HospitalContactModel
36
42
  */
37
- 'surveyFormId'?: string;
43
+ 'name'?: string | null;
38
44
  /**
39
45
  *
40
46
  * @type {string}
41
- * @memberof SurveyResultItemModel
47
+ * @memberof HospitalContactModel
42
48
  */
43
- 'surveyFormName'?: string | null;
49
+ 'tel'?: string | null;
44
50
  /**
45
51
  *
46
52
  * @type {string}
47
- * @memberof SurveyResultItemModel
53
+ * @memberof HospitalContactModel
48
54
  */
49
- 'hospitalId'?: string;
55
+ 'targetTel'?: string | null;
50
56
  /**
51
57
  *
52
58
  * @type {string}
53
- * @memberof SurveyResultItemModel
59
+ * @memberof HospitalContactModel
54
60
  */
55
- 'hospitalName'?: string | null;
61
+ 'email'?: string | null;
56
62
  /**
57
63
  *
58
64
  * @type {string}
59
- * @memberof SurveyResultItemModel
65
+ * @memberof HospitalContactModel
60
66
  */
61
67
  'languageCode'?: string | null;
62
68
  /**
63
69
  *
64
70
  * @type {string}
65
- * @memberof SurveyResultItemModel
71
+ * @memberof HospitalContactModel
66
72
  */
67
- 'userId'?: string | null;
73
+ 'hospitalId'?: string;
68
74
  /**
69
75
  *
70
- * @type {SurveyResultUserModel}
71
- * @memberof SurveyResultItemModel
76
+ * @type {number}
77
+ * @memberof HospitalContactModel
72
78
  */
73
- 'user'?: SurveyResultUserModel;
79
+ 'order'?: number;
74
80
  /**
75
81
  *
76
- * @type {Date}
77
- * @memberof SurveyResultItemModel
82
+ * @type {string}
83
+ * @memberof HospitalContactModel
78
84
  */
79
- 'createdDate'?: Date;
85
+ 'languageLocalizedName'?: string | null;
80
86
  }
81
87