<?php
	namespace ElasticEmailEnums; 

class SurveyStepAnswer
{
    /**
     * Identifier of the answer of the step
     */
    public /*string*/ $SurveyStepAnswerID;

    /**
     * Answer's content
     */
    public /*string*/ $Content;

    /**
     * Sequence of the answers
     */
    public /*int*/ $Sequence;

}

