/**
 * CloudHospital Admin Api
 * CloudHospital application with Swagger, Swashbuckle, and API versioning.
 *
 * The version of the OpenAPI document: 1
 * 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 { PageBlockLinkInputModel } from './page-block-link-input-model';
import { PageBlockLocationInputModel } from './page-block-location-input-model';
import { PageBlockType } from './page-block-type';
/**
 *
 * @export
 * @interface PageBlockInputModel
 */
export interface PageBlockInputModel {
    /**
     *
     * @type {string}
     * @memberof PageBlockInputModel
     */
    'id'?: string | null;
    /**
     *
     * @type {PageBlockType}
     * @memberof PageBlockInputModel
     */
    'blockType'?: PageBlockType;
    /**
     *
     * @type {string}
     * @memberof PageBlockInputModel
     */
    'icon'?: string | null;
    /**
     *
     * @type {string}
     * @memberof PageBlockInputModel
     */
    'customStyle'?: string | null;
    /**
     *
     * @type {string}
     * @memberof PageBlockInputModel
     */
    'surveyFormId'?: string | null;
    /**
     *
     * @type {string}
     * @memberof PageBlockInputModel
     */
    'url'?: string | null;
    /**
     *
     * @type {number}
     * @memberof PageBlockInputModel
     */
    'order'?: number;
    /**
     *
     * @type {string}
     * @memberof PageBlockInputModel
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof PageBlockInputModel
     */
    'subtitle'?: string | null;
    /**
     *
     * @type {string}
     * @memberof PageBlockInputModel
     */
    'description'?: string | null;
    /**
     *
     * @type {string}
     * @memberof PageBlockInputModel
     */
    'overview'?: string | null;
    /**
     *
     * @type {string}
     * @memberof PageBlockInputModel
     */
    'content'?: string | null;
    /**
     *
     * @type {Array<MediaModel>}
     * @memberof PageBlockInputModel
     */
    'medias'?: Array<MediaModel> | null;
    /**
     *
     * @type {Array<PageBlockLinkInputModel>}
     * @memberof PageBlockInputModel
     */
    'links'?: Array<PageBlockLinkInputModel> | null;
    /**
     *
     * @type {Array<PageBlockLocationInputModel>}
     * @memberof PageBlockInputModel
     */
    'locations'?: Array<PageBlockLocationInputModel> | null;
}
//# sourceMappingURL=page-block-input-model.d.ts.map