/**
 * 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 { SurveyFormAffiliationModel } from './survey-form-affiliation-model';
import { SurveyFormElementModel } from './survey-form-element-model';
import { SurveyFormStatus } from './survey-form-status';
/**
 *
 * @export
 * @interface SurveyFormModel
 */
export interface SurveyFormModel {
    /**
     *
     * @type {string}
     * @memberof SurveyFormModel
     */
    'id'?: string;
    /**
     *
     * @type {Array<SurveyFormAffiliationModel>}
     * @memberof SurveyFormModel
     */
    'surveyFormAffiliations'?: Array<SurveyFormAffiliationModel> | null;
    /**
     *
     * @type {string}
     * @memberof SurveyFormModel
     */
    'hospitalName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof SurveyFormModel
     */
    'hospitalWebsiteUrl'?: string | null;
    /**
     *
     * @type {string}
     * @memberof SurveyFormModel
     */
    'hospitalLogo'?: string | null;
    /**
     *
     * @type {SurveyFormStatus}
     * @memberof SurveyFormModel
     */
    'status'?: SurveyFormStatus;
    /**
     *
     * @type {string}
     * @memberof SurveyFormModel
     */
    'urlAfterDone'?: string | null;
    /**
     *
     * @type {string}
     * @memberof SurveyFormModel
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof SurveyFormModel
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof SurveyFormModel
     */
    'description'?: string | null;
    /**
     *
     * @type {string}
     * @memberof SurveyFormModel
     */
    'overview'?: string | null;
    /**
     *
     * @type {string}
     * @memberof SurveyFormModel
     */
    'content'?: string | null;
    /**
     *
     * @type {Array<string>}
     * @memberof SurveyFormModel
     */
    'translatedLanguages'?: Array<string> | null;
    /**
     *
     * @type {Array<SurveyFormElementModel>}
     * @memberof SurveyFormModel
     */
    'elements'?: Array<SurveyFormElementModel> | null;
}
//# sourceMappingURL=survey-form-model.d.ts.map