/**
 * CloudHospital Api
 * CloudHospital application with Swagger, Swashbuckle, and API versioning.
 *
 * The version of the OpenAPI document: 2
 * Contact: developer@icloudhospital.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { MediaModel } from './media-model';
import { PageBlockModel } from './page-block-model';
import { PageSectionListType } from './page-section-list-type';
/**
 *
 * @export
 * @interface PageSectionModel
 */
export interface PageSectionModel {
    /**
     *
     * @type {string}
     * @memberof PageSectionModel
     */
    'id'?: string;
    /**
     *
     * @type {PageSectionListType}
     * @memberof PageSectionModel
     */
    'listType'?: PageSectionListType;
    /**
     *
     * @type {string}
     * @memberof PageSectionModel
     */
    'customStyle'?: string | null;
    /**
     *
     * @type {number}
     * @memberof PageSectionModel
     */
    'order'?: number;
    /**
     *
     * @type {Array<PageBlockModel>}
     * @memberof PageSectionModel
     */
    'blocks'?: Array<PageBlockModel> | null;
    /**
     *
     * @type {Array<MediaModel>}
     * @memberof PageSectionModel
     */
    'medias'?: Array<MediaModel> | null;
}
//# sourceMappingURL=page-section-model.d.ts.map