/**
 * 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 { PageBlockLinkModel } from './page-block-link-model';
import { PageBlockLocationModel } from './page-block-location-model';
import { PageBlockType } from './page-block-type';
import { SurveyFormModel } from './survey-form-model';
/**
 *
 * @export
 * @interface PageBlockModel
 */
export interface PageBlockModel {
    /**
     *
     * @type {string}
     * @memberof PageBlockModel
     */
    'id'?: string;
    /**
     *
     * @type {string}
     * @memberof PageBlockModel
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {PageBlockType}
     * @memberof PageBlockModel
     */
    'blockType'?: PageBlockType;
    /**
     *
     * @type {string}
     * @memberof PageBlockModel
     */
    'icon'?: string | null;
    /**
     *
     * @type {string}
     * @memberof PageBlockModel
     */
    'customStyle'?: string | null;
    /**
     *
     * @type {string}
     * @memberof PageBlockModel
     */
    'surveyFormId'?: string | null;
    /**
     *
     * @type {string}
     * @memberof PageBlockModel
     */
    'url'?: string | null;
    /**
     *
     * @type {number}
     * @memberof PageBlockModel
     */
    'order'?: number;
    /**
     *
     * @type {string}
     * @memberof PageBlockModel
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof PageBlockModel
     */
    'subtitle'?: string | null;
    /**
     *
     * @type {string}
     * @memberof PageBlockModel
     */
    'description'?: string | null;
    /**
     *
     * @type {string}
     * @memberof PageBlockModel
     */
    'overview'?: string | null;
    /**
     *
     * @type {string}
     * @memberof PageBlockModel
     */
    'content'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof PageBlockModel
     */
    'isConfirmed'?: boolean | null;
    /**
     *
     * @type {Array<MediaModel>}
     * @memberof PageBlockModel
     */
    'medias'?: Array<MediaModel> | null;
    /**
     *
     * @type {Array<PageBlockLinkModel>}
     * @memberof PageBlockModel
     */
    'links'?: Array<PageBlockLinkModel> | null;
    /**
     *
     * @type {Array<PageBlockLocationModel>}
     * @memberof PageBlockModel
     */
    'locations'?: Array<PageBlockLocationModel> | null;
    /**
     *
     * @type {SurveyFormModel}
     * @memberof PageBlockModel
     */
    'surveyForm'?: SurveyFormModel;
}
//# sourceMappingURL=page-block-model.d.ts.map