ch-admin-api-client-typescript 5.5.2 → 5.5.3

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.
@@ -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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface SearchCurationItemModel
21
+ */
22
+ export interface SearchCurationItemModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof SearchCurationItemModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof SearchCurationItemModel
33
+ */
34
+ 'name'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof SearchCurationItemModel
39
+ */
40
+ 'searchTerm'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof SearchCurationItemModel
45
+ */
46
+ 'description'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof SearchCurationItemModel
51
+ */
52
+ 'imageUrl'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof SearchCurationItemModel
57
+ */
58
+ 'imageThumbnailUrl'?: string | null;
59
+ /**
60
+ *
61
+ * @type {number}
62
+ * @memberof SearchCurationItemModel
63
+ */
64
+ 'level'?: number;
65
+ /**
66
+ *
67
+ * @type {number}
68
+ * @memberof SearchCurationItemModel
69
+ */
70
+ 'order'?: number;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof SearchCurationItemModel
75
+ */
76
+ 'parentId'?: string | null;
77
+ /**
78
+ *
79
+ * @type {Array<SearchCurationItemModel>}
80
+ * @memberof SearchCurationItemModel
81
+ */
82
+ 'subItems'?: Array<SearchCurationItemModel> | null;
83
+ }
84
+