ch-admin-api-client-typescript 5.19.70 → 5.20.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 (82) hide show
  1. package/lib/api/hospitals-api.d.ts +464 -30
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +663 -51
  4. package/lib/api/search-api.d.ts +12 -3
  5. package/lib/api/search-api.d.ts.map +1 -1
  6. package/lib/api/search-api.js +12 -6
  7. package/lib/models/create-page-command.d.ts +75 -0
  8. package/lib/models/create-page-command.d.ts.map +1 -0
  9. package/lib/models/create-page-command.js +15 -0
  10. package/lib/models/index.d.ts +17 -0
  11. package/lib/models/index.d.ts.map +1 -1
  12. package/lib/models/index.js +17 -0
  13. package/lib/models/page-block-input-model.d.ts +101 -0
  14. package/lib/models/page-block-input-model.d.ts.map +1 -0
  15. package/lib/models/page-block-input-model.js +15 -0
  16. package/lib/models/page-block-link-input-model.d.ts +56 -0
  17. package/lib/models/page-block-link-input-model.d.ts.map +1 -0
  18. package/lib/models/page-block-link-input-model.js +15 -0
  19. package/lib/models/page-block-link-model.d.ts +68 -0
  20. package/lib/models/page-block-link-model.d.ts.map +1 -0
  21. package/lib/models/page-block-link-model.js +15 -0
  22. package/lib/models/page-block-link-type.d.ts +22 -0
  23. package/lib/models/page-block-link-type.d.ts.map +1 -0
  24. package/lib/models/page-block-link-type.js +25 -0
  25. package/lib/models/page-block-location-input-model.d.ts +49 -0
  26. package/lib/models/page-block-location-input-model.d.ts.map +1 -0
  27. package/lib/models/page-block-location-input-model.js +15 -0
  28. package/lib/models/page-block-location-model.d.ts +49 -0
  29. package/lib/models/page-block-location-model.d.ts.map +1 -0
  30. package/lib/models/page-block-location-model.js +15 -0
  31. package/lib/models/page-block-model.d.ts +113 -0
  32. package/lib/models/page-block-model.d.ts.map +1 -0
  33. package/lib/models/page-block-model.js +15 -0
  34. package/lib/models/page-block-type.d.ts +29 -0
  35. package/lib/models/page-block-type.d.ts.map +1 -0
  36. package/lib/models/page-block-type.js +32 -0
  37. package/lib/models/page-item-item-model.d.ts +69 -0
  38. package/lib/models/page-item-item-model.d.ts.map +1 -0
  39. package/lib/models/page-item-item-model.js +15 -0
  40. package/lib/models/page-item-model.d.ts +100 -0
  41. package/lib/models/page-item-model.d.ts.map +1 -0
  42. package/lib/models/page-item-model.js +15 -0
  43. package/lib/models/page-item-status.d.ts +23 -0
  44. package/lib/models/page-item-status.d.ts.map +1 -0
  45. package/lib/models/page-item-status.js +26 -0
  46. package/lib/models/page-items-model.d.ts +33 -0
  47. package/lib/models/page-items-model.d.ts.map +1 -0
  48. package/lib/models/page-items-model.js +15 -0
  49. package/lib/models/page-section-input-model.d.ts +51 -0
  50. package/lib/models/page-section-input-model.d.ts.map +1 -0
  51. package/lib/models/page-section-input-model.js +15 -0
  52. package/lib/models/page-section-list-type.d.ts +23 -0
  53. package/lib/models/page-section-list-type.d.ts.map +1 -0
  54. package/lib/models/page-section-list-type.js +26 -0
  55. package/lib/models/page-section-model.d.ts +51 -0
  56. package/lib/models/page-section-model.d.ts.map +1 -0
  57. package/lib/models/page-section-model.js +15 -0
  58. package/lib/models/update-page-command.d.ts +75 -0
  59. package/lib/models/update-page-command.d.ts.map +1 -0
  60. package/lib/models/update-page-command.js +15 -0
  61. package/package.json +1 -1
  62. package/src/.openapi-generator/FILES +17 -0
  63. package/src/api/hospitals-api.ts +817 -63
  64. package/src/api/search-api.ts +20 -6
  65. package/src/models/create-page-command.ts +84 -0
  66. package/src/models/index.ts +17 -0
  67. package/src/models/page-block-input-model.ts +114 -0
  68. package/src/models/page-block-link-input-model.ts +63 -0
  69. package/src/models/page-block-link-model.ts +75 -0
  70. package/src/models/page-block-link-type.ts +31 -0
  71. package/src/models/page-block-location-input-model.ts +54 -0
  72. package/src/models/page-block-location-model.ts +54 -0
  73. package/src/models/page-block-model.ts +126 -0
  74. package/src/models/page-block-type.ts +38 -0
  75. package/src/models/page-item-item-model.ts +78 -0
  76. package/src/models/page-item-model.ts +111 -0
  77. package/src/models/page-item-status.ts +32 -0
  78. package/src/models/page-items-model.ts +42 -0
  79. package/src/models/page-section-input-model.ts +60 -0
  80. package/src/models/page-section-list-type.ts +32 -0
  81. package/src/models/page-section-model.ts +60 -0
  82. package/src/models/update-page-command.ts +84 -0
@@ -32,10 +32,11 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
32
32
  *
33
33
  * @summary Recreate Index
34
34
  * @param {Array<SearchIndexType>} selectedIndextypes
35
+ * @param {boolean} [recreateIndex]
35
36
  * @param {*} [options] Override http request option.
36
37
  * @throws {RequiredError}
37
38
  */
38
- apiV1SearchRecreatePost: async (selectedIndextypes: Array<SearchIndexType>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
39
+ apiV1SearchRecreatePost: async (selectedIndextypes: Array<SearchIndexType>, recreateIndex?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
39
40
  // verify required parameter 'selectedIndextypes' is not null or undefined
40
41
  assertParamExists('apiV1SearchRecreatePost', 'selectedIndextypes', selectedIndextypes)
41
42
  const localVarPath = `/api/v1/search/recreate`;
@@ -54,6 +55,10 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
54
55
  // oauth required
55
56
  await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
56
57
 
58
+ if (recreateIndex !== undefined) {
59
+ localVarQueryParameter['recreateIndex'] = recreateIndex;
60
+ }
61
+
57
62
  if (selectedIndextypes) {
58
63
  localVarQueryParameter['selectedIndextypes'] = selectedIndextypes;
59
64
  }
@@ -83,11 +88,12 @@ export const SearchApiFp = function(configuration?: Configuration) {
83
88
  *
84
89
  * @summary Recreate Index
85
90
  * @param {Array<SearchIndexType>} selectedIndextypes
91
+ * @param {boolean} [recreateIndex]
86
92
  * @param {*} [options] Override http request option.
87
93
  * @throws {RequiredError}
88
94
  */
89
- async apiV1SearchRecreatePost(selectedIndextypes: Array<SearchIndexType>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
90
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SearchRecreatePost(selectedIndextypes, options);
95
+ async apiV1SearchRecreatePost(selectedIndextypes: Array<SearchIndexType>, recreateIndex?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
96
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SearchRecreatePost(selectedIndextypes, recreateIndex, options);
91
97
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
92
98
  },
93
99
  }
@@ -104,11 +110,12 @@ export const SearchApiFactory = function (configuration?: Configuration, basePat
104
110
  *
105
111
  * @summary Recreate Index
106
112
  * @param {Array<SearchIndexType>} selectedIndextypes
113
+ * @param {boolean} [recreateIndex]
107
114
  * @param {*} [options] Override http request option.
108
115
  * @throws {RequiredError}
109
116
  */
110
- apiV1SearchRecreatePost(selectedIndextypes: Array<SearchIndexType>, options?: any): AxiosPromise<string> {
111
- return localVarFp.apiV1SearchRecreatePost(selectedIndextypes, options).then((request) => request(axios, basePath));
117
+ apiV1SearchRecreatePost(selectedIndextypes: Array<SearchIndexType>, recreateIndex?: boolean, options?: any): AxiosPromise<string> {
118
+ return localVarFp.apiV1SearchRecreatePost(selectedIndextypes, recreateIndex, options).then((request) => request(axios, basePath));
112
119
  },
113
120
  };
114
121
  };
@@ -125,6 +132,13 @@ export interface SearchApiApiV1SearchRecreatePostRequest {
125
132
  * @memberof SearchApiApiV1SearchRecreatePost
126
133
  */
127
134
  readonly selectedIndextypes: Array<SearchIndexType>
135
+
136
+ /**
137
+ *
138
+ * @type {boolean}
139
+ * @memberof SearchApiApiV1SearchRecreatePost
140
+ */
141
+ readonly recreateIndex?: boolean
128
142
  }
129
143
 
130
144
  /**
@@ -143,6 +157,6 @@ export class SearchApi extends BaseAPI {
143
157
  * @memberof SearchApi
144
158
  */
145
159
  public apiV1SearchRecreatePost(requestParameters: SearchApiApiV1SearchRecreatePostRequest, options?: AxiosRequestConfig) {
146
- return SearchApiFp(this.configuration).apiV1SearchRecreatePost(requestParameters.selectedIndextypes, options).then((request) => request(this.axios, this.basePath));
160
+ return SearchApiFp(this.configuration).apiV1SearchRecreatePost(requestParameters.selectedIndextypes, requestParameters.recreateIndex, options).then((request) => request(this.axios, this.basePath));
147
161
  }
148
162
  }
@@ -0,0 +1,84 @@
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 { PageItemStatus } from './page-item-status';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PageSectionInputModel } from './page-section-input-model';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface CreatePageCommand
27
+ */
28
+ export interface CreatePageCommand {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof CreatePageCommand
33
+ */
34
+ 'languageCode'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof CreatePageCommand
39
+ */
40
+ 'name'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof CreatePageCommand
45
+ */
46
+ 'description'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof CreatePageCommand
51
+ */
52
+ 'overview'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof CreatePageCommand
57
+ */
58
+ 'content'?: string | null;
59
+ /**
60
+ *
61
+ * @type {boolean}
62
+ * @memberof CreatePageCommand
63
+ */
64
+ 'isConfirmed'?: boolean;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof CreatePageCommand
69
+ */
70
+ 'customStyle'?: string | null;
71
+ /**
72
+ *
73
+ * @type {PageItemStatus}
74
+ * @memberof CreatePageCommand
75
+ */
76
+ 'status'?: PageItemStatus;
77
+ /**
78
+ *
79
+ * @type {Array<PageSectionInputModel>}
80
+ * @memberof CreatePageCommand
81
+ */
82
+ 'sections'?: Array<PageSectionInputModel> | null;
83
+ }
84
+
@@ -144,6 +144,7 @@ export * from './create-manager-affiliation-command';
144
144
  export * from './create-manager-command';
145
145
  export * from './create-media-command';
146
146
  export * from './create-notice-command';
147
+ export * from './create-page-command';
147
148
  export * from './create-patient-command';
148
149
  export * from './create-plan-command';
149
150
  export * from './create-plan-hospital-command';
@@ -327,6 +328,21 @@ export * from './notifications-model';
327
328
  export * from './number';
328
329
  export * from './number-transaction-response';
329
330
  export * from './numbers-search-response';
331
+ export * from './page-block-input-model';
332
+ export * from './page-block-link-input-model';
333
+ export * from './page-block-link-model';
334
+ export * from './page-block-link-type';
335
+ export * from './page-block-location-input-model';
336
+ export * from './page-block-location-model';
337
+ export * from './page-block-model';
338
+ export * from './page-block-type';
339
+ export * from './page-item-item-model';
340
+ export * from './page-item-model';
341
+ export * from './page-item-status';
342
+ export * from './page-items-model';
343
+ export * from './page-section-input-model';
344
+ export * from './page-section-list-type';
345
+ export * from './page-section-model';
330
346
  export * from './paged-list-meta-data';
331
347
  export * from './patient-item-model';
332
348
  export * from './patient-model';
@@ -509,6 +525,7 @@ export * from './update-manager-command';
509
525
  export * from './update-media-command';
510
526
  export * from './update-notice-command';
511
527
  export * from './update-number-command';
528
+ export * from './update-page-command';
512
529
  export * from './update-patient-command';
513
530
  export * from './update-plan-command';
514
531
  export * from './update-plan-hospital-command';
@@ -0,0 +1,114 @@
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 { MediaModel } from './media-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PageBlockLinkInputModel } from './page-block-link-input-model';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import { PageBlockLocationInputModel } from './page-block-location-input-model';
25
+ // May contain unused imports in some cases
26
+ // @ts-ignore
27
+ import { PageBlockType } from './page-block-type';
28
+
29
+ /**
30
+ *
31
+ * @export
32
+ * @interface PageBlockInputModel
33
+ */
34
+ export interface PageBlockInputModel {
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof PageBlockInputModel
39
+ */
40
+ 'id'?: string | null;
41
+ /**
42
+ *
43
+ * @type {PageBlockType}
44
+ * @memberof PageBlockInputModel
45
+ */
46
+ 'blockType'?: PageBlockType;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof PageBlockInputModel
51
+ */
52
+ 'icon'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof PageBlockInputModel
57
+ */
58
+ 'customStyle'?: string | null;
59
+ /**
60
+ *
61
+ * @type {number}
62
+ * @memberof PageBlockInputModel
63
+ */
64
+ 'order'?: number;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof PageBlockInputModel
69
+ */
70
+ 'name'?: string | null;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof PageBlockInputModel
75
+ */
76
+ 'subtitle'?: string | null;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof PageBlockInputModel
81
+ */
82
+ 'description'?: string | null;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof PageBlockInputModel
87
+ */
88
+ 'overview'?: string | null;
89
+ /**
90
+ *
91
+ * @type {string}
92
+ * @memberof PageBlockInputModel
93
+ */
94
+ 'content'?: string | null;
95
+ /**
96
+ *
97
+ * @type {Array<MediaModel>}
98
+ * @memberof PageBlockInputModel
99
+ */
100
+ 'medias'?: Array<MediaModel> | null;
101
+ /**
102
+ *
103
+ * @type {Array<PageBlockLinkInputModel>}
104
+ * @memberof PageBlockInputModel
105
+ */
106
+ 'links'?: Array<PageBlockLinkInputModel> | null;
107
+ /**
108
+ *
109
+ * @type {Array<PageBlockLocationInputModel>}
110
+ * @memberof PageBlockInputModel
111
+ */
112
+ 'locations'?: Array<PageBlockLocationInputModel> | null;
113
+ }
114
+
@@ -0,0 +1,63 @@
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 { PageBlockLinkType } from './page-block-link-type';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface PageBlockLinkInputModel
24
+ */
25
+ export interface PageBlockLinkInputModel {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof PageBlockLinkInputModel
30
+ */
31
+ 'id'?: string | null;
32
+ /**
33
+ *
34
+ * @type {PageBlockLinkType}
35
+ * @memberof PageBlockLinkInputModel
36
+ */
37
+ 'linkType'?: PageBlockLinkType;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof PageBlockLinkInputModel
42
+ */
43
+ 'name'?: string | null;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof PageBlockLinkInputModel
48
+ */
49
+ 'url'?: string | null;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof PageBlockLinkInputModel
54
+ */
55
+ 'customStyle'?: string | null;
56
+ /**
57
+ *
58
+ * @type {number}
59
+ * @memberof PageBlockLinkInputModel
60
+ */
61
+ 'order'?: number;
62
+ }
63
+
@@ -0,0 +1,75 @@
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 { PageBlockLinkType } from './page-block-link-type';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface PageBlockLinkModel
24
+ */
25
+ export interface PageBlockLinkModel {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof PageBlockLinkModel
30
+ */
31
+ 'id'?: string;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof PageBlockLinkModel
36
+ */
37
+ 'languageCode'?: string | null;
38
+ /**
39
+ *
40
+ * @type {PageBlockLinkType}
41
+ * @memberof PageBlockLinkModel
42
+ */
43
+ 'linkType'?: PageBlockLinkType;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof PageBlockLinkModel
48
+ */
49
+ 'customStyle'?: string | null;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof PageBlockLinkModel
54
+ */
55
+ 'name'?: string | null;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof PageBlockLinkModel
60
+ */
61
+ 'url'?: string | null;
62
+ /**
63
+ *
64
+ * @type {boolean}
65
+ * @memberof PageBlockLinkModel
66
+ */
67
+ 'isConfirmed'?: boolean;
68
+ /**
69
+ *
70
+ * @type {number}
71
+ * @memberof PageBlockLinkModel
72
+ */
73
+ 'order'?: number;
74
+ }
75
+
@@ -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 PageBlockLinkType = {
24
+ Button: 'Button',
25
+ Anchor: 'Anchor'
26
+ } as const;
27
+
28
+ export type PageBlockLinkType = typeof PageBlockLinkType[keyof typeof PageBlockLinkType];
29
+
30
+
31
+
@@ -0,0 +1,54 @@
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
+ * @interface PageBlockLocationInputModel
21
+ */
22
+ export interface PageBlockLocationInputModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof PageBlockLocationInputModel
27
+ */
28
+ 'id'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PageBlockLocationInputModel
33
+ */
34
+ 'vender'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof PageBlockLocationInputModel
39
+ */
40
+ 'rating'?: number;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PageBlockLocationInputModel
45
+ */
46
+ 'placeId'?: string | null;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof PageBlockLocationInputModel
51
+ */
52
+ 'order'?: number;
53
+ }
54
+
@@ -0,0 +1,54 @@
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
+ * @interface PageBlockLocationModel
21
+ */
22
+ export interface PageBlockLocationModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof PageBlockLocationModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PageBlockLocationModel
33
+ */
34
+ 'vender'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof PageBlockLocationModel
39
+ */
40
+ 'rating'?: number;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PageBlockLocationModel
45
+ */
46
+ 'placeId'?: string | null;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof PageBlockLocationModel
51
+ */
52
+ 'order'?: number;
53
+ }
54
+