ch-api-client-typescript2 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 (60) hide show
  1. package/lib/api/hospitals-api.d.ts +234 -0
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +291 -0
  4. package/lib/models/hospital-item-model.d.ts +7 -0
  5. package/lib/models/hospital-item-model.d.ts.map +1 -1
  6. package/lib/models/hospital-model.d.ts +7 -0
  7. package/lib/models/hospital-model.d.ts.map +1 -1
  8. package/lib/models/hospital-rating-item-model.d.ts +67 -0
  9. package/lib/models/hospital-rating-item-model.d.ts.map +1 -0
  10. package/lib/models/hospital-rating-item-model.js +15 -0
  11. package/lib/models/hospital-ratings-model.d.ts +33 -0
  12. package/lib/models/hospital-ratings-model.d.ts.map +1 -0
  13. package/lib/models/hospital-ratings-model.js +15 -0
  14. package/lib/models/index.d.ts +11 -0
  15. package/lib/models/index.d.ts.map +1 -1
  16. package/lib/models/index.js +11 -0
  17. package/lib/models/page-block-link-model.d.ts +68 -0
  18. package/lib/models/page-block-link-model.d.ts.map +1 -0
  19. package/lib/models/page-block-link-model.js +15 -0
  20. package/lib/models/page-block-link-type.d.ts +22 -0
  21. package/lib/models/page-block-link-type.d.ts.map +1 -0
  22. package/lib/models/page-block-link-type.js +25 -0
  23. package/lib/models/page-block-location-model.d.ts +43 -0
  24. package/lib/models/page-block-location-model.d.ts.map +1 -0
  25. package/lib/models/page-block-location-model.js +15 -0
  26. package/lib/models/page-block-model.d.ts +113 -0
  27. package/lib/models/page-block-model.d.ts.map +1 -0
  28. package/lib/models/page-block-model.js +15 -0
  29. package/lib/models/page-block-type.d.ts +29 -0
  30. package/lib/models/page-block-type.d.ts.map +1 -0
  31. package/lib/models/page-block-type.js +32 -0
  32. package/lib/models/page-item-model.d.ts +93 -0
  33. package/lib/models/page-item-model.d.ts.map +1 -0
  34. package/lib/models/page-item-model.js +15 -0
  35. package/lib/models/page-item-status.d.ts +23 -0
  36. package/lib/models/page-item-status.d.ts.map +1 -0
  37. package/lib/models/page-item-status.js +26 -0
  38. package/lib/models/page-section-list-type.d.ts +23 -0
  39. package/lib/models/page-section-list-type.d.ts.map +1 -0
  40. package/lib/models/page-section-list-type.js +26 -0
  41. package/lib/models/page-section-model.d.ts +51 -0
  42. package/lib/models/page-section-model.d.ts.map +1 -0
  43. package/lib/models/page-section-model.js +15 -0
  44. package/package.json +1 -1
  45. package/src/.openapi-generator/FILES +11 -0
  46. package/src/api/hospitals-api.ts +391 -0
  47. package/src/models/hospital-item-model.ts +9 -0
  48. package/src/models/hospital-model.ts +9 -0
  49. package/src/models/hospital-rating-item-model.ts +72 -0
  50. package/src/models/hospital-ratings-model.ts +42 -0
  51. package/src/models/index.ts +11 -0
  52. package/src/models/page-block-link-model.ts +75 -0
  53. package/src/models/page-block-link-type.ts +31 -0
  54. package/src/models/page-block-location-model.ts +48 -0
  55. package/src/models/page-block-model.ts +126 -0
  56. package/src/models/page-block-type.ts +38 -0
  57. package/src/models/page-item-model.ts +102 -0
  58. package/src/models/page-item-status.ts +32 -0
  59. package/src/models/page-section-list-type.ts +32 -0
  60. package/src/models/page-section-model.ts +60 -0
@@ -0,0 +1,72 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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,42 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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
+
@@ -180,6 +180,8 @@ export * from './hospital-model';
180
180
  export * from './hospital-payment-gateway-model';
181
181
  export * from './hospital-payment-method-model';
182
182
  export * from './hospital-payment-methods-model';
183
+ export * from './hospital-rating-item-model';
184
+ export * from './hospital-ratings-model';
183
185
  export * from './hospital-service-item-model';
184
186
  export * from './hospital-service-model';
185
187
  export * from './hospital-services-model';
@@ -230,6 +232,15 @@ export * from './notification-code';
230
232
  export * from './notification-model';
231
233
  export * from './notifications-model';
232
234
  export * from './package-sub-document-model';
235
+ export * from './page-block-link-model';
236
+ export * from './page-block-link-type';
237
+ export * from './page-block-location-model';
238
+ export * from './page-block-model';
239
+ export * from './page-block-type';
240
+ export * from './page-item-model';
241
+ export * from './page-item-status';
242
+ export * from './page-section-list-type';
243
+ export * from './page-section-model';
233
244
  export * from './paged-list-meta-data';
234
245
  export * from './patient-model';
235
246
  export * from './pay-appointment-command';
@@ -0,0 +1,75 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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
+ 'languageCode'?: string | null;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof PageBlockLinkModel
36
+ */
37
+ 'id'?: string;
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 {number}
53
+ * @memberof PageBlockLinkModel
54
+ */
55
+ 'order'?: number;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof PageBlockLinkModel
60
+ */
61
+ 'name'?: string | null;
62
+ /**
63
+ *
64
+ * @type {string}
65
+ * @memberof PageBlockLinkModel
66
+ */
67
+ 'url'?: string | null;
68
+ /**
69
+ *
70
+ * @type {boolean}
71
+ * @memberof PageBlockLinkModel
72
+ */
73
+ 'isConfirmed'?: boolean | null;
74
+ }
75
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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,48 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 {string}
38
+ * @memberof PageBlockLocationModel
39
+ */
40
+ 'placeId'?: string | null;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof PageBlockLocationModel
45
+ */
46
+ 'order'?: number;
47
+ }
48
+
@@ -0,0 +1,126 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 { PageBlockLinkModel } from './page-block-link-model';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import { PageBlockLocationModel } from './page-block-location-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 PageBlockModel
33
+ */
34
+ export interface PageBlockModel {
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof PageBlockModel
39
+ */
40
+ 'id'?: string;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PageBlockModel
45
+ */
46
+ 'languageCode'?: string | null;
47
+ /**
48
+ *
49
+ * @type {PageBlockType}
50
+ * @memberof PageBlockModel
51
+ */
52
+ 'blockType'?: PageBlockType;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof PageBlockModel
57
+ */
58
+ 'icon'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof PageBlockModel
63
+ */
64
+ 'customStyle'?: string | null;
65
+ /**
66
+ *
67
+ * @type {number}
68
+ * @memberof PageBlockModel
69
+ */
70
+ 'order'?: number;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof PageBlockModel
75
+ */
76
+ 'name'?: string | null;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof PageBlockModel
81
+ */
82
+ 'subtitle'?: string | null;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof PageBlockModel
87
+ */
88
+ 'description'?: string | null;
89
+ /**
90
+ *
91
+ * @type {string}
92
+ * @memberof PageBlockModel
93
+ */
94
+ 'overview'?: string | null;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof PageBlockModel
99
+ */
100
+ 'content'?: string | null;
101
+ /**
102
+ *
103
+ * @type {boolean}
104
+ * @memberof PageBlockModel
105
+ */
106
+ 'isConfirmed'?: boolean | null;
107
+ /**
108
+ *
109
+ * @type {Array<MediaModel>}
110
+ * @memberof PageBlockModel
111
+ */
112
+ 'medias'?: Array<MediaModel> | null;
113
+ /**
114
+ *
115
+ * @type {Array<PageBlockLinkModel>}
116
+ * @memberof PageBlockModel
117
+ */
118
+ 'links'?: Array<PageBlockLinkModel> | null;
119
+ /**
120
+ *
121
+ * @type {Array<PageBlockLocationModel>}
122
+ * @memberof PageBlockModel
123
+ */
124
+ 'locations'?: Array<PageBlockLocationModel> | null;
125
+ }
126
+
@@ -0,0 +1,38 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 PageBlockType = {
24
+ Title: 'Title',
25
+ Title1: 'Title1',
26
+ Title2: 'Title2',
27
+ Title3: 'Title3',
28
+ Title4: 'Title4',
29
+ About: 'About',
30
+ ListItem: 'ListItem',
31
+ Award: 'Award',
32
+ Press: 'Press'
33
+ } as const;
34
+
35
+ export type PageBlockType = typeof PageBlockType[keyof typeof PageBlockType];
36
+
37
+
38
+
@@ -0,0 +1,102 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 { PageSectionModel } from './page-section-model';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface PageItemModel
27
+ */
28
+ export interface PageItemModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PageItemModel
33
+ */
34
+ 'id'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof PageItemModel
39
+ */
40
+ 'hospitalId'?: string;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PageItemModel
45
+ */
46
+ 'languageCode'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof PageItemModel
51
+ */
52
+ 'customStyle'?: string | null;
53
+ /**
54
+ *
55
+ * @type {PageItemStatus}
56
+ * @memberof PageItemModel
57
+ */
58
+ 'status'?: PageItemStatus;
59
+ /**
60
+ *
61
+ * @type {Array<PageSectionModel>}
62
+ * @memberof PageItemModel
63
+ */
64
+ 'sections'?: Array<PageSectionModel> | null;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof PageItemModel
69
+ */
70
+ 'name'?: string | null;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof PageItemModel
75
+ */
76
+ 'slug'?: string | null;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof PageItemModel
81
+ */
82
+ 'description'?: string | null;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof PageItemModel
87
+ */
88
+ 'overview'?: string | null;
89
+ /**
90
+ *
91
+ * @type {string}
92
+ * @memberof PageItemModel
93
+ */
94
+ 'content'?: string | null;
95
+ /**
96
+ *
97
+ * @type {boolean}
98
+ * @memberof PageItemModel
99
+ */
100
+ 'isConfirmed'?: boolean;
101
+ }
102
+
@@ -0,0 +1,32 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 PageItemStatus = {
24
+ Draft: 'Draft',
25
+ Active: 'Active',
26
+ Archived: 'Archived'
27
+ } as const;
28
+
29
+ export type PageItemStatus = typeof PageItemStatus[keyof typeof PageItemStatus];
30
+
31
+
32
+
@@ -0,0 +1,32 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 PageSectionListType = {
24
+ None: 'None',
25
+ List: 'List',
26
+ Grid: 'Grid'
27
+ } as const;
28
+
29
+ export type PageSectionListType = typeof PageSectionListType[keyof typeof PageSectionListType];
30
+
31
+
32
+
@@ -0,0 +1,60 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 { PageBlockModel } from './page-block-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PageSectionListType } from './page-section-list-type';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface PageSectionModel
27
+ */
28
+ export interface PageSectionModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PageSectionModel
33
+ */
34
+ 'id'?: string;
35
+ /**
36
+ *
37
+ * @type {PageSectionListType}
38
+ * @memberof PageSectionModel
39
+ */
40
+ 'listType'?: PageSectionListType;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PageSectionModel
45
+ */
46
+ 'customStyle'?: string | null;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof PageSectionModel
51
+ */
52
+ 'order'?: number;
53
+ /**
54
+ *
55
+ * @type {Array<PageBlockModel>}
56
+ * @memberof PageSectionModel
57
+ */
58
+ 'blocks'?: Array<PageBlockModel> | null;
59
+ }
60
+