/**
 * 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 { SurveyFormElementTypes } from './survey-form-element-types';
import { SurveyResultElementValueInputModel } from './survey-result-element-value-input-model';
/**
 *
 * @export
 * @interface SurveyResultElementInputModel
 */
export interface SurveyResultElementInputModel {
    /**
     *
     * @type {SurveyFormElementTypes}
     * @memberof SurveyResultElementInputModel
     */
    'elementType'?: SurveyFormElementTypes;
    /**
     *
     * @type {string}
     * @memberof SurveyResultElementInputModel
     */
    'label'?: string | null;
    /**
     *
     * @type {number}
     * @memberof SurveyResultElementInputModel
     */
    'order'?: number;
    /**
     *
     * @type {Array<SurveyResultElementValueInputModel>}
     * @memberof SurveyResultElementInputModel
     */
    'values'?: Array<SurveyResultElementValueInputModel> | null;
}
//# sourceMappingURL=survey-result-element-input-model.d.ts.map