ch-admin-api-client-typescript 5.19.69 → 5.19.71

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 (98) hide show
  1. package/lib/api/hospitals-api.d.ts +773 -6
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +1172 -69
  4. package/lib/models/create-hospital-rating-command.d.ts +61 -0
  5. package/lib/models/create-hospital-rating-command.d.ts.map +1 -0
  6. package/lib/models/create-hospital-rating-command.js +15 -0
  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/hospital-rating-item-model.d.ts +67 -0
  11. package/lib/models/hospital-rating-item-model.d.ts.map +1 -0
  12. package/lib/models/hospital-rating-item-model.js +15 -0
  13. package/lib/models/hospital-rating-model.d.ts +67 -0
  14. package/lib/models/hospital-rating-model.d.ts.map +1 -0
  15. package/lib/models/hospital-rating-model.js +15 -0
  16. package/lib/models/hospital-ratings-model.d.ts +33 -0
  17. package/lib/models/hospital-ratings-model.d.ts.map +1 -0
  18. package/lib/models/hospital-ratings-model.js +15 -0
  19. package/lib/models/index.d.ts +22 -0
  20. package/lib/models/index.d.ts.map +1 -1
  21. package/lib/models/index.js +22 -0
  22. package/lib/models/page-block-input-model.d.ts +101 -0
  23. package/lib/models/page-block-input-model.d.ts.map +1 -0
  24. package/lib/models/page-block-input-model.js +15 -0
  25. package/lib/models/page-block-link-input-model.d.ts +56 -0
  26. package/lib/models/page-block-link-input-model.d.ts.map +1 -0
  27. package/lib/models/page-block-link-input-model.js +15 -0
  28. package/lib/models/page-block-link-model.d.ts +68 -0
  29. package/lib/models/page-block-link-model.d.ts.map +1 -0
  30. package/lib/models/page-block-link-model.js +15 -0
  31. package/lib/models/page-block-link-type.d.ts +22 -0
  32. package/lib/models/page-block-link-type.d.ts.map +1 -0
  33. package/lib/models/page-block-link-type.js +25 -0
  34. package/lib/models/page-block-location-input-model.d.ts +49 -0
  35. package/lib/models/page-block-location-input-model.d.ts.map +1 -0
  36. package/lib/models/page-block-location-input-model.js +15 -0
  37. package/lib/models/page-block-location-model.d.ts +49 -0
  38. package/lib/models/page-block-location-model.d.ts.map +1 -0
  39. package/lib/models/page-block-location-model.js +15 -0
  40. package/lib/models/page-block-model.d.ts +113 -0
  41. package/lib/models/page-block-model.d.ts.map +1 -0
  42. package/lib/models/page-block-model.js +15 -0
  43. package/lib/models/page-block-type.d.ts +29 -0
  44. package/lib/models/page-block-type.d.ts.map +1 -0
  45. package/lib/models/page-block-type.js +32 -0
  46. package/lib/models/page-item-item-model.d.ts +69 -0
  47. package/lib/models/page-item-item-model.d.ts.map +1 -0
  48. package/lib/models/page-item-item-model.js +15 -0
  49. package/lib/models/page-item-model.d.ts +100 -0
  50. package/lib/models/page-item-model.d.ts.map +1 -0
  51. package/lib/models/page-item-model.js +15 -0
  52. package/lib/models/page-item-status.d.ts +23 -0
  53. package/lib/models/page-item-status.d.ts.map +1 -0
  54. package/lib/models/page-item-status.js +26 -0
  55. package/lib/models/page-items-model.d.ts +33 -0
  56. package/lib/models/page-items-model.d.ts.map +1 -0
  57. package/lib/models/page-items-model.js +15 -0
  58. package/lib/models/page-section-input-model.d.ts +51 -0
  59. package/lib/models/page-section-input-model.d.ts.map +1 -0
  60. package/lib/models/page-section-input-model.js +15 -0
  61. package/lib/models/page-section-list-type.d.ts +23 -0
  62. package/lib/models/page-section-list-type.d.ts.map +1 -0
  63. package/lib/models/page-section-list-type.js +26 -0
  64. package/lib/models/page-section-model.d.ts +51 -0
  65. package/lib/models/page-section-model.d.ts.map +1 -0
  66. package/lib/models/page-section-model.js +15 -0
  67. package/lib/models/update-hospital-rating-command.d.ts +61 -0
  68. package/lib/models/update-hospital-rating-command.d.ts.map +1 -0
  69. package/lib/models/update-hospital-rating-command.js +15 -0
  70. package/lib/models/update-page-command.d.ts +75 -0
  71. package/lib/models/update-page-command.d.ts.map +1 -0
  72. package/lib/models/update-page-command.js +15 -0
  73. package/package.json +1 -1
  74. package/src/.openapi-generator/FILES +22 -0
  75. package/src/api/hospitals-api.ts +1539 -201
  76. package/src/models/create-hospital-rating-command.ts +66 -0
  77. package/src/models/create-page-command.ts +84 -0
  78. package/src/models/hospital-rating-item-model.ts +72 -0
  79. package/src/models/hospital-rating-model.ts +72 -0
  80. package/src/models/hospital-ratings-model.ts +42 -0
  81. package/src/models/index.ts +22 -0
  82. package/src/models/page-block-input-model.ts +114 -0
  83. package/src/models/page-block-link-input-model.ts +63 -0
  84. package/src/models/page-block-link-model.ts +75 -0
  85. package/src/models/page-block-link-type.ts +31 -0
  86. package/src/models/page-block-location-input-model.ts +54 -0
  87. package/src/models/page-block-location-model.ts +54 -0
  88. package/src/models/page-block-model.ts +126 -0
  89. package/src/models/page-block-type.ts +38 -0
  90. package/src/models/page-item-item-model.ts +78 -0
  91. package/src/models/page-item-model.ts +111 -0
  92. package/src/models/page-item-status.ts +32 -0
  93. package/src/models/page-items-model.ts +42 -0
  94. package/src/models/page-section-input-model.ts +60 -0
  95. package/src/models/page-section-list-type.ts +32 -0
  96. package/src/models/page-section-model.ts +60 -0
  97. package/src/models/update-hospital-rating-command.ts +66 -0
  98. package/src/models/update-page-command.ts +84 -0
@@ -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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface CreateHospitalRatingCommand
21
+ */
22
+ export interface CreateHospitalRatingCommand {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof CreateHospitalRatingCommand
27
+ */
28
+ 'vender'?: string | null;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof CreateHospitalRatingCommand
33
+ */
34
+ 'rating'?: number;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof CreateHospitalRatingCommand
39
+ */
40
+ 'order'?: number;
41
+ /**
42
+ *
43
+ * @type {boolean}
44
+ * @memberof CreateHospitalRatingCommand
45
+ */
46
+ 'isConfirmed'?: boolean;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof CreateHospitalRatingCommand
51
+ */
52
+ 'placeId'?: string | null;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof CreateHospitalRatingCommand
57
+ */
58
+ 'numberOfPeople'?: number;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof CreateHospitalRatingCommand
63
+ */
64
+ 'url'?: string | null;
65
+ }
66
+
@@ -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
+
@@ -0,0 +1,72 @@
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 HospitalRatingItemModel
21
+ */
22
+ export interface HospitalRatingItemModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof HospitalRatingItemModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof HospitalRatingItemModel
33
+ */
34
+ 'vender'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof HospitalRatingItemModel
39
+ */
40
+ 'rating'?: number;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof HospitalRatingItemModel
45
+ */
46
+ 'order'?: number;
47
+ /**
48
+ *
49
+ * @type {boolean}
50
+ * @memberof HospitalRatingItemModel
51
+ */
52
+ 'isConfirmed'?: boolean;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof HospitalRatingItemModel
57
+ */
58
+ 'placeId'?: string | null;
59
+ /**
60
+ *
61
+ * @type {number}
62
+ * @memberof HospitalRatingItemModel
63
+ */
64
+ 'numberOfPeople'?: number;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof HospitalRatingItemModel
69
+ */
70
+ 'url'?: string | null;
71
+ }
72
+
@@ -0,0 +1,72 @@
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 HospitalRatingModel
21
+ */
22
+ export interface HospitalRatingModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof HospitalRatingModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof HospitalRatingModel
33
+ */
34
+ 'vender'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof HospitalRatingModel
39
+ */
40
+ 'rating'?: number;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof HospitalRatingModel
45
+ */
46
+ 'order'?: number;
47
+ /**
48
+ *
49
+ * @type {boolean}
50
+ * @memberof HospitalRatingModel
51
+ */
52
+ 'isConfirmed'?: boolean;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof HospitalRatingModel
57
+ */
58
+ 'placeId'?: string | null;
59
+ /**
60
+ *
61
+ * @type {number}
62
+ * @memberof HospitalRatingModel
63
+ */
64
+ 'numberOfPeople'?: number;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof HospitalRatingModel
69
+ */
70
+ 'url'?: string | null;
71
+ }
72
+
@@ -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 { HospitalRatingItemModel } from './hospital-rating-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 HospitalRatingsModel
27
+ */
28
+ export interface HospitalRatingsModel {
29
+ /**
30
+ *
31
+ * @type {Array<HospitalRatingItemModel>}
32
+ * @memberof HospitalRatingsModel
33
+ */
34
+ 'items'?: Array<HospitalRatingItemModel> | null;
35
+ /**
36
+ *
37
+ * @type {PagedListMetaData}
38
+ * @memberof HospitalRatingsModel
39
+ */
40
+ 'metaData'?: PagedListMetaData;
41
+ }
42
+
@@ -132,6 +132,7 @@ export * from './create-hospital-evaluation-command';
132
132
  export * from './create-hospital-group-command';
133
133
  export * from './create-hospital-language-command';
134
134
  export * from './create-hospital-payment-method-command';
135
+ export * from './create-hospital-rating-command';
135
136
  export * from './create-hospital-service-command';
136
137
  export * from './create-hospital-sns-handle-command';
137
138
  export * from './create-hospital-specialty-command';
@@ -143,6 +144,7 @@ export * from './create-manager-affiliation-command';
143
144
  export * from './create-manager-command';
144
145
  export * from './create-media-command';
145
146
  export * from './create-notice-command';
147
+ export * from './create-page-command';
146
148
  export * from './create-patient-command';
147
149
  export * from './create-plan-command';
148
150
  export * from './create-plan-hospital-command';
@@ -258,6 +260,9 @@ export * from './hospital-payment-gateway-model';
258
260
  export * from './hospital-payment-method-item-model';
259
261
  export * from './hospital-payment-method-model';
260
262
  export * from './hospital-payment-methods-model';
263
+ export * from './hospital-rating-item-model';
264
+ export * from './hospital-rating-model';
265
+ export * from './hospital-ratings-model';
261
266
  export * from './hospital-service-item-model';
262
267
  export * from './hospital-service-model';
263
268
  export * from './hospital-services-model';
@@ -323,6 +328,21 @@ export * from './notifications-model';
323
328
  export * from './number';
324
329
  export * from './number-transaction-response';
325
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';
326
346
  export * from './paged-list-meta-data';
327
347
  export * from './patient-item-model';
328
348
  export * from './patient-model';
@@ -494,6 +514,7 @@ export * from './update-hospital-equipment-command';
494
514
  export * from './update-hospital-group-command';
495
515
  export * from './update-hospital-language-command';
496
516
  export * from './update-hospital-payment-method-command';
517
+ export * from './update-hospital-rating-command';
497
518
  export * from './update-hospital-service-command';
498
519
  export * from './update-hospital-sns-handle-command';
499
520
  export * from './update-hospital-specialty-command';
@@ -504,6 +525,7 @@ export * from './update-manager-command';
504
525
  export * from './update-media-command';
505
526
  export * from './update-notice-command';
506
527
  export * from './update-number-command';
528
+ export * from './update-page-command';
507
529
  export * from './update-patient-command';
508
530
  export * from './update-plan-command';
509
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
+