<?php
	namespace ElasticEmailEnums; 

abstract class SurveyStepType
{
    /**
     * 
     */
    const PageBreak = 1;

    /**
     * 
     */
    const Question = 2;

    /**
     * 
     */
    const TextMedia = 3;

    /**
     * 
     */
    const ConfirmationPage = 4;

    /**
     * 
     */
    const ExpiredPage = 5;

}

