<?php
declare(strict_types=1);
namespace App\Entity;
use App\Repository\LimeSurveysRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
/**
* LimeSurveys.
*
* @ORM\Table(name="lime_surveys")
*
* @ORM\Entity(repositoryClass=LimeSurveysRepository::class)
*/
class LimeSurveys
{
/**
* @var int
*
* @ORM\Column(name="sid", type="integer", nullable=false)
*
* @ORM\Id
*
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $sid;
/**
* @var int
*
* @ORM\Column(name="owner_id", type="integer", nullable=false)
*/
private $ownerId;
/**
* @var string
*
* @ORM\Column(name="admin", type="string", length=50, nullable=true)
*/
private $admin;
/**
* @var string
*
* @ORM\Column(name="active", type="string", length=1, nullable=false)
*/
private $active;
/**
* @var \DateTime
*
* @ORM\Column(name="expires", type="datetime", nullable=true)
*/
private $expires;
/**
* @var \DateTime
*
* @ORM\Column(name="startdate", type="datetime", nullable=true)
*/
private $startdate;
/**
* @var string
*
* @ORM\Column(name="adminemail", type="string", length=254, nullable=true)
*/
private $adminemail;
/**
* @var string
*
* @ORM\Column(name="anonymized", type="string", length=1, nullable=false)
*/
private $anonymized;
/**
* @var string
*
* @ORM\Column(name="format", type="string", length=1, nullable=true)
*/
private $format;
/**
* @var string
*
* @ORM\Column(name="savetimings", type="string", length=1, nullable=false)
*/
private $savetimings;
/**
* @var string
*
* @ORM\Column(name="template", type="string", length=100, nullable=true)
*/
private $template;
/**
* @var string
*
* @ORM\Column(name="language", type="string", length=50, nullable=true)
*/
private $language;
/**
* @var string
*
* @ORM\Column(name="additional_languages", type="string", length=255, nullable=true)
*/
private $additionalLanguages;
/**
* @var string
*
* @ORM\Column(name="datestamp", type="string", length=1, nullable=false)
*/
private $datestamp;
/**
* @var string
*
* @ORM\Column(name="usecookie", type="string", length=1, nullable=false)
*/
private $usecookie;
/**
* @var string
*
* @ORM\Column(name="allowregister", type="string", length=1, nullable=false)
*/
private $allowregister;
/**
* @var string
*
* @ORM\Column(name="allowsave", type="string", length=1, nullable=false)
*/
private $allowsave;
/**
* @var int
*
* @ORM\Column(name="autonumber_start", type="integer", nullable=false)
*/
private $autonumberStart;
/**
* @var string
*
* @ORM\Column(name="autoredirect", type="string", length=1, nullable=false)
*/
private $autoredirect;
/**
* @var string
*
* @ORM\Column(name="allowprev", type="string", length=1, nullable=false)
*/
private $allowprev;
/**
* @var string
*
* @ORM\Column(name="printanswers", type="string", length=1, nullable=false)
*/
private $printanswers;
/**
* @var string
*
* @ORM\Column(name="ipaddr", type="string", length=1, nullable=false)
*/
private $ipaddr;
/**
* @var string
*
* @ORM\Column(name="refurl", type="string", length=1, nullable=false)
*/
private $refurl;
/**
* @var \DateTime
*
* @ORM\Column(name="datecreated", type="datetime", nullable=true)
*/
private $datecreated;
/**
* @var string
*
* @ORM\Column(name="publicstatistics", type="string", length=1, nullable=false)
*/
private $publicstatistics;
/**
* @var string
*
* @ORM\Column(name="publicgraphs", type="string", length=1, nullable=false)
*/
private $publicgraphs;
/**
* @var string
*
* @ORM\Column(name="listpublic", type="string", length=1, nullable=false)
*/
private $listpublic;
/**
* @var string
*
* @ORM\Column(name="htmlemail", type="string", length=1, nullable=false)
*/
private $htmlemail;
/**
* @var string
*
* @ORM\Column(name="sendconfirmation", type="string", length=1, nullable=false)
*/
private $sendconfirmation;
/**
* @var string
*
* @ORM\Column(name="tokenanswerspersistence", type="string", length=1, nullable=false)
*/
private $tokenanswerspersistence;
/**
* @var string
*
* @ORM\Column(name="assessments", type="string", length=1, nullable=false)
*/
private $assessments;
/**
* @var string
*
* @ORM\Column(name="usecaptcha", type="string", length=1, nullable=false)
*/
private $usecaptcha;
/**
* @var string
*
* @ORM\Column(name="usetokens", type="string", length=1, nullable=false)
*/
private $usetokens;
/**
* @var string
*
* @ORM\Column(name="bounce_email", type="string", length=254, nullable=true)
*/
private $bounceEmail;
/**
* @var string
*
* @ORM\Column(name="attributedescriptions", type="text", nullable=true)
*/
private $attributedescriptions;
/**
* @var string
*
* @ORM\Column(name="emailresponseto", type="text", nullable=true)
*/
private $emailresponseto;
/**
* @var string
*
* @ORM\Column(name="emailnotificationto", type="text", nullable=true)
*/
private $emailnotificationto;
/**
* @var int
*
* @ORM\Column(name="tokenlength", type="integer", nullable=false)
*/
private $tokenlength;
/**
* @var string
*
* @ORM\Column(name="showxquestions", type="string", length=1, nullable=true)
*/
private $showxquestions;
/**
* @var string
*
* @ORM\Column(name="showgroupinfo", type="string", length=1, nullable=true)
*/
private $showgroupinfo;
/**
* @var string
*
* @ORM\Column(name="shownoanswer", type="string", length=1, nullable=true)
*/
private $shownoanswer;
/**
* @var string
*
* @ORM\Column(name="showqnumcode", type="string", length=1, nullable=true)
*/
private $showqnumcode;
/**
* @var int
*
* @ORM\Column(name="bouncetime", type="integer", nullable=true)
*/
private $bouncetime;
/**
* @var string
*
* @ORM\Column(name="bounceprocessing", type="string", length=1, nullable=true)
*/
private $bounceprocessing;
/**
* @var string
*
* @ORM\Column(name="bounceaccounttype", type="string", length=4, nullable=true)
*/
private $bounceaccounttype;
/**
* @var string
*
* @ORM\Column(name="bounceaccounthost", type="string", length=200, nullable=true)
*/
private $bounceaccounthost;
/**
* @var string
*
* @ORM\Column(name="bounceaccountpass", type="string", length=100, nullable=true)
*/
private $bounceaccountpass;
/**
* @var string
*
* @ORM\Column(name="bounceaccountencryption", type="string", length=3, nullable=true)
*/
private $bounceaccountencryption;
/**
* @var string
*
* @ORM\Column(name="bounceaccountuser", type="string", length=200, nullable=true)
*/
private $bounceaccountuser;
/**
* @var string
*
* @ORM\Column(name="showwelcome", type="string", length=1, nullable=true)
*/
private $showwelcome;
/**
* @var string
*
* @ORM\Column(name="showprogress", type="string", length=1, nullable=true)
*/
private $showprogress;
/**
* @var int
*
* @ORM\Column(name="navigationdelay", type="integer", nullable=false)
*/
private $navigationdelay;
/**
* @var string
*
* @ORM\Column(name="nokeyboard", type="string", length=1, nullable=true)
*/
private $nokeyboard;
/**
* @var string
*
* @ORM\Column(name="alloweditaftercompletion", type="string", length=1, nullable=true)
*/
private $alloweditaftercompletion;
/**
* @var string
*
* @ORM\Column(name="googleanalyticsstyle", type="string", length=1, nullable=true)
*/
private $googleanalyticsstyle;
/**
* @var string
*
* @ORM\Column(name="googleanalyticsapikey", type="string", length=25, nullable=true)
*/
private $googleanalyticsapikey;
/**
* @var int
*
* @ORM\Column(name="questionindex", type="integer", nullable=false)
*/
private $questionindex;
/**
* Set ownerId.
*
* @param int $ownerId
*/
public function setOwnerId($ownerId): static
{
$this->ownerId = $ownerId;
return $this;
}
/**
* Get ownerId.
*
* @return int
*/
public function getOwnerId()
{
return $this->ownerId;
}
/**
* Set admin.
*
* @param string $admin
*/
public function setAdmin($admin): static
{
$this->admin = $admin;
return $this;
}
/**
* Get admin.
*
* @return string
*/
public function getAdmin()
{
return $this->admin;
}
/**
* Set active.
*
* @param string $active
*/
public function setActive($active): static
{
$this->active = $active;
return $this;
}
/**
* Get active.
*
* @return string
*/
public function getActive()
{
return $this->active;
}
/**
* Set expires.
*
* @param \DateTime $expires
*/
public function setExpires($expires): static
{
$this->expires = $expires;
return $this;
}
/**
* Get expires.
*
* @return \DateTime
*/
public function getExpires()
{
return $this->expires;
}
/**
* Set startdate.
*
* @param \DateTime $startdate
*/
public function setStartdate($startdate): static
{
$this->startdate = $startdate;
return $this;
}
/**
* Get startdate.
*
* @return \DateTime
*/
public function getStartdate()
{
return $this->startdate;
}
/**
* Set adminemail.
*
* @param string $adminemail
*/
public function setAdminemail($adminemail): static
{
$this->adminemail = $adminemail;
return $this;
}
/**
* Get adminemail.
*
* @return string
*/
public function getAdminemail()
{
return $this->adminemail;
}
/**
* Set anonymized.
*
* @param string $anonymized
*/
public function setAnonymized($anonymized): static
{
$this->anonymized = $anonymized;
return $this;
}
/**
* Get anonymized.
*
* @return string
*/
public function getAnonymized()
{
return $this->anonymized;
}
/**
* Set format.
*
* @param string $format
*/
public function setFormat($format): static
{
$this->format = $format;
return $this;
}
/**
* Get format.
*
* @return string
*/
public function getFormat()
{
return $this->format;
}
/**
* Set savetimings.
*
* @param string $savetimings
*/
public function setSavetimings($savetimings): static
{
$this->savetimings = $savetimings;
return $this;
}
/**
* Get savetimings.
*
* @return string
*/
public function getSavetimings()
{
return $this->savetimings;
}
/**
* Set template.
*
* @param string $template
*/
public function setTemplate($template): static
{
$this->template = $template;
return $this;
}
/**
* Get template.
*
* @return string
*/
public function getTemplate()
{
return $this->template;
}
/**
* Set language.
*
* @param string $language
*/
public function setLanguage($language): static
{
$this->language = $language;
return $this;
}
/**
* Get language.
*
* @return string
*/
public function getLanguage()
{
return $this->language;
}
/**
* Set additionalLanguages.
*
* @param string $additionalLanguages
*/
public function setAdditionalLanguages($additionalLanguages): static
{
$this->additionalLanguages = $additionalLanguages;
return $this;
}
/**
* Get additionalLanguages.
*
* @return string
*/
public function getAdditionalLanguages()
{
return $this->additionalLanguages;
}
/**
* Set datestamp.
*
* @param string $datestamp
*/
public function setDatestamp($datestamp): static
{
$this->datestamp = $datestamp;
return $this;
}
/**
* Get datestamp.
*
* @return string
*/
public function getDatestamp()
{
return $this->datestamp;
}
/**
* Set usecookie.
*
* @param string $usecookie
*/
public function setUsecookie($usecookie): static
{
$this->usecookie = $usecookie;
return $this;
}
/**
* Get usecookie.
*
* @return string
*/
public function getUsecookie()
{
return $this->usecookie;
}
/**
* Set allowregister.
*
* @param string $allowregister
*/
public function setAllowregister($allowregister): static
{
$this->allowregister = $allowregister;
return $this;
}
/**
* Get allowregister.
*
* @return string
*/
public function getAllowregister()
{
return $this->allowregister;
}
/**
* Set allowsave.
*
* @param string $allowsave
*/
public function setAllowsave($allowsave): static
{
$this->allowsave = $allowsave;
return $this;
}
/**
* Get allowsave.
*
* @return string
*/
public function getAllowsave()
{
return $this->allowsave;
}
/**
* Set autonumberStart.
*
* @param int $autonumberStart
*/
public function setAutonumberStart($autonumberStart): static
{
$this->autonumberStart = $autonumberStart;
return $this;
}
/**
* Get autonumberStart.
*
* @return int
*/
public function getAutonumberStart()
{
return $this->autonumberStart;
}
/**
* Set autoredirect.
*
* @param string $autoredirect
*/
public function setAutoredirect($autoredirect): static
{
$this->autoredirect = $autoredirect;
return $this;
}
/**
* Get autoredirect.
*
* @return string
*/
public function getAutoredirect()
{
return $this->autoredirect;
}
/**
* Set allowprev.
*
* @param string $allowprev
*/
public function setAllowprev($allowprev): static
{
$this->allowprev = $allowprev;
return $this;
}
/**
* Get allowprev.
*
* @return string
*/
public function getAllowprev()
{
return $this->allowprev;
}
/**
* Set printanswers.
*
* @param string $printanswers
*/
public function setPrintanswers($printanswers): static
{
$this->printanswers = $printanswers;
return $this;
}
/**
* Get printanswers.
*
* @return string
*/
public function getPrintanswers()
{
return $this->printanswers;
}
/**
* Set ipaddr.
*
* @param string $ipaddr
*/
public function setIpaddr($ipaddr): static
{
$this->ipaddr = $ipaddr;
return $this;
}
/**
* Get ipaddr.
*
* @return string
*/
public function getIpaddr()
{
return $this->ipaddr;
}
/**
* Set refurl.
*
* @param string $refurl
*/
public function setRefurl($refurl): static
{
$this->refurl = $refurl;
return $this;
}
/**
* Get refurl.
*
* @return string
*/
public function getRefurl()
{
return $this->refurl;
}
/**
* Set datecreated.
*
* @param \DateTime $datecreated
*/
public function setDatecreated($datecreated): static
{
$this->datecreated = $datecreated;
return $this;
}
/**
* Get datecreated.
*
* @return \DateTime
*/
public function getDatecreated()
{
return $this->datecreated;
}
/**
* Set publicstatistics.
*
* @param string $publicstatistics
*/
public function setPublicstatistics($publicstatistics): static
{
$this->publicstatistics = $publicstatistics;
return $this;
}
/**
* Get publicstatistics.
*
* @return string
*/
public function getPublicstatistics()
{
return $this->publicstatistics;
}
/**
* Set publicgraphs.
*
* @param string $publicgraphs
*/
public function setPublicgraphs($publicgraphs): static
{
$this->publicgraphs = $publicgraphs;
return $this;
}
/**
* Get publicgraphs.
*
* @return string
*/
public function getPublicgraphs()
{
return $this->publicgraphs;
}
/**
* Set listpublic.
*
* @param string $listpublic
*/
public function setListpublic($listpublic): static
{
$this->listpublic = $listpublic;
return $this;
}
/**
* Get listpublic.
*
* @return string
*/
public function getListpublic()
{
return $this->listpublic;
}
/**
* Set htmlemail.
*
* @param string $htmlemail
*/
public function setHtmlemail($htmlemail): static
{
$this->htmlemail = $htmlemail;
return $this;
}
/**
* Get htmlemail.
*
* @return string
*/
public function getHtmlemail()
{
return $this->htmlemail;
}
/**
* Set sendconfirmation.
*
* @param string $sendconfirmation
*/
public function setSendconfirmation($sendconfirmation): static
{
$this->sendconfirmation = $sendconfirmation;
return $this;
}
/**
* Get sendconfirmation.
*
* @return string
*/
public function getSendconfirmation()
{
return $this->sendconfirmation;
}
/**
* Set tokenanswerspersistence.
*
* @param string $tokenanswerspersistence
*/
public function setTokenanswerspersistence($tokenanswerspersistence): static
{
$this->tokenanswerspersistence = $tokenanswerspersistence;
return $this;
}
/**
* Get tokenanswerspersistence.
*
* @return string
*/
public function getTokenanswerspersistence()
{
return $this->tokenanswerspersistence;
}
/**
* Set assessments.
*
* @param string $assessments
*/
public function setAssessments($assessments): static
{
$this->assessments = $assessments;
return $this;
}
/**
* Get assessments.
*
* @return string
*/
public function getAssessments()
{
return $this->assessments;
}
/**
* Set usecaptcha.
*
* @param string $usecaptcha
*/
public function setUsecaptcha($usecaptcha): static
{
$this->usecaptcha = $usecaptcha;
return $this;
}
/**
* Get usecaptcha.
*
* @return string
*/
public function getUsecaptcha()
{
return $this->usecaptcha;
}
/**
* Set usetokens.
*
* @param string $usetokens
*/
public function setUsetokens($usetokens): static
{
$this->usetokens = $usetokens;
return $this;
}
/**
* Get usetokens.
*
* @return string
*/
public function getUsetokens()
{
return $this->usetokens;
}
/**
* Set bounceEmail.
*
* @param string $bounceEmail
*/
public function setBounceEmail($bounceEmail): static
{
$this->bounceEmail = $bounceEmail;
return $this;
}
/**
* Get bounceEmail.
*
* @return string
*/
public function getBounceEmail()
{
return $this->bounceEmail;
}
/**
* Set attributedescriptions.
*
* @param string $attributedescriptions
*/
public function setAttributedescriptions($attributedescriptions): static
{
$this->attributedescriptions = $attributedescriptions;
return $this;
}
/**
* Get attributedescriptions.
*
* @return string
*/
public function getAttributedescriptions()
{
return $this->attributedescriptions;
}
/**
* Set emailresponseto.
*
* @param string $emailresponseto
*/
public function setEmailresponseto($emailresponseto): static
{
$this->emailresponseto = $emailresponseto;
return $this;
}
/**
* Get emailresponseto.
*
* @return string
*/
public function getEmailresponseto()
{
return $this->emailresponseto;
}
/**
* Set emailnotificationto.
*
* @param string $emailnotificationto
*/
public function setEmailnotificationto($emailnotificationto): static
{
$this->emailnotificationto = $emailnotificationto;
return $this;
}
/**
* Get emailnotificationto.
*
* @return string
*/
public function getEmailnotificationto()
{
return $this->emailnotificationto;
}
/**
* Set tokenlength.
*
* @param int $tokenlength
*/
public function setTokenlength($tokenlength): static
{
$this->tokenlength = $tokenlength;
return $this;
}
/**
* Get tokenlength.
*
* @return int
*/
public function getTokenlength()
{
return $this->tokenlength;
}
/**
* Set showxquestions.
*
* @param string $showxquestions
*/
public function setShowxquestions($showxquestions): static
{
$this->showxquestions = $showxquestions;
return $this;
}
/**
* Get showxquestions.
*
* @return string
*/
public function getShowxquestions()
{
return $this->showxquestions;
}
/**
* Set showgroupinfo.
*
* @param string $showgroupinfo
*/
public function setShowgroupinfo($showgroupinfo): static
{
$this->showgroupinfo = $showgroupinfo;
return $this;
}
/**
* Get showgroupinfo.
*
* @return string
*/
public function getShowgroupinfo()
{
return $this->showgroupinfo;
}
/**
* Set shownoanswer.
*
* @param string $shownoanswer
*/
public function setShownoanswer($shownoanswer): static
{
$this->shownoanswer = $shownoanswer;
return $this;
}
/**
* Get shownoanswer.
*
* @return string
*/
public function getShownoanswer()
{
return $this->shownoanswer;
}
/**
* Set showqnumcode.
*
* @param string $showqnumcode
*/
public function setShowqnumcode($showqnumcode): static
{
$this->showqnumcode = $showqnumcode;
return $this;
}
/**
* Get showqnumcode.
*
* @return string
*/
public function getShowqnumcode()
{
return $this->showqnumcode;
}
/**
* Set bouncetime.
*
* @param int $bouncetime
*/
public function setBouncetime($bouncetime): static
{
$this->bouncetime = $bouncetime;
return $this;
}
/**
* Get bouncetime.
*
* @return int
*/
public function getBouncetime()
{
return $this->bouncetime;
}
/**
* Set bounceprocessing.
*
* @param string $bounceprocessing
*/
public function setBounceprocessing($bounceprocessing): static
{
$this->bounceprocessing = $bounceprocessing;
return $this;
}
/**
* Get bounceprocessing.
*
* @return string
*/
public function getBounceprocessing()
{
return $this->bounceprocessing;
}
/**
* Set bounceaccounttype.
*
* @param string $bounceaccounttype
*/
public function setBounceaccounttype($bounceaccounttype): static
{
$this->bounceaccounttype = $bounceaccounttype;
return $this;
}
/**
* Get bounceaccounttype.
*
* @return string
*/
public function getBounceaccounttype()
{
return $this->bounceaccounttype;
}
/**
* Set bounceaccounthost.
*
* @param string $bounceaccounthost
*/
public function setBounceaccounthost($bounceaccounthost): static
{
$this->bounceaccounthost = $bounceaccounthost;
return $this;
}
/**
* Get bounceaccounthost.
*
* @return string
*/
public function getBounceaccounthost()
{
return $this->bounceaccounthost;
}
/**
* Set bounceaccountpass.
*
* @param string $bounceaccountpass
*/
public function setBounceaccountpass($bounceaccountpass): static
{
$this->bounceaccountpass = $bounceaccountpass;
return $this;
}
/**
* Get bounceaccountpass.
*
* @return string
*/
public function getBounceaccountpass()
{
return $this->bounceaccountpass;
}
/**
* Set bounceaccountencryption.
*
* @param string $bounceaccountencryption
*/
public function setBounceaccountencryption($bounceaccountencryption): static
{
$this->bounceaccountencryption = $bounceaccountencryption;
return $this;
}
/**
* Get bounceaccountencryption.
*
* @return string
*/
public function getBounceaccountencryption()
{
return $this->bounceaccountencryption;
}
/**
* Set bounceaccountuser.
*
* @param string $bounceaccountuser
*/
public function setBounceaccountuser($bounceaccountuser): static
{
$this->bounceaccountuser = $bounceaccountuser;
return $this;
}
/**
* Get bounceaccountuser.
*
* @return string
*/
public function getBounceaccountuser()
{
return $this->bounceaccountuser;
}
/**
* Set showwelcome.
*
* @param string $showwelcome
*/
public function setShowwelcome($showwelcome): static
{
$this->showwelcome = $showwelcome;
return $this;
}
/**
* Get showwelcome.
*
* @return string
*/
public function getShowwelcome()
{
return $this->showwelcome;
}
/**
* Set showprogress.
*
* @param string $showprogress
*/
public function setShowprogress($showprogress): static
{
$this->showprogress = $showprogress;
return $this;
}
/**
* Get showprogress.
*
* @return string
*/
public function getShowprogress()
{
return $this->showprogress;
}
/**
* Set navigationdelay.
*
* @param int $navigationdelay
*/
public function setNavigationdelay($navigationdelay): static
{
$this->navigationdelay = $navigationdelay;
return $this;
}
/**
* Get navigationdelay.
*
* @return int
*/
public function getNavigationdelay()
{
return $this->navigationdelay;
}
/**
* Set nokeyboard.
*
* @param string $nokeyboard
*/
public function setNokeyboard($nokeyboard): static
{
$this->nokeyboard = $nokeyboard;
return $this;
}
/**
* Get nokeyboard.
*
* @return string
*/
public function getNokeyboard()
{
return $this->nokeyboard;
}
/**
* Set alloweditaftercompletion.
*
* @param string $alloweditaftercompletion
*/
public function setAlloweditaftercompletion($alloweditaftercompletion): static
{
$this->alloweditaftercompletion = $alloweditaftercompletion;
return $this;
}
/**
* Get alloweditaftercompletion.
*
* @return string
*/
public function getAlloweditaftercompletion()
{
return $this->alloweditaftercompletion;
}
/**
* Set googleanalyticsstyle.
*
* @param string $googleanalyticsstyle
*/
public function setGoogleanalyticsstyle($googleanalyticsstyle): static
{
$this->googleanalyticsstyle = $googleanalyticsstyle;
return $this;
}
/**
* Get googleanalyticsstyle.
*
* @return string
*/
public function getGoogleanalyticsstyle()
{
return $this->googleanalyticsstyle;
}
/**
* Set googleanalyticsapikey.
*
* @param string $googleanalyticsapikey
*/
public function setGoogleanalyticsapikey($googleanalyticsapikey): static
{
$this->googleanalyticsapikey = $googleanalyticsapikey;
return $this;
}
/**
* Get googleanalyticsapikey.
*
* @return string
*/
public function getGoogleanalyticsapikey()
{
return $this->googleanalyticsapikey;
}
/**
* Set questionindex.
*
* @param int $questionindex
*/
public function setQuestionindex($questionindex): static
{
$this->questionindex = $questionindex;
return $this;
}
/**
* Get questionindex.
*
* @return int
*/
public function getQuestionindex()
{
return $this->questionindex;
}
/**
* Get sid.
*
* @return int
*/
public function getSid()
{
return $this->sid;
}
}