<?php
	namespace ElasticEmailEnums; 

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

    /**
     * Number of items.
     */
    public /*int*/ $Count;

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

}

