<?php
declare(strict_types=1);
namespace App\Entity;
use App\Repository\LimeSurveysLanguagesettingsRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
/**
* LimeSurveysLanguagesettings.
*
* @ORM\Table(name="lime_surveys_languagesettings")
*
* @ORM\Entity(repositoryClass=LimeSurveysLanguagesettingsRepository::class)
*/
class LimeSurveysLanguagesettings
{
public $nb_invitations;
public $no_answered;
/**
* @var int
*
* @ORM\Column(name="surveyls_survey_id", type="integer", nullable=false)
*
* @ORM\Id
*
* @ORM\GeneratedValue(strategy="NONE")
*/
private $surveylsSurveyId;
/**
* @var string
*
* @ORM\Column(name="surveyls_language", type="string", length=45, nullable=false)
*
* @ORM\Id
*
* @ORM\GeneratedValue(strategy="NONE")
*/
private $surveylsLanguage;
/**
* @var string
*
* @ORM\Column(name="surveyls_title", type="string", length=200, nullable=false)
*/
private $surveylsTitle;
/**
* @var string
*
* @ORM\Column(name="surveyls_description", type="text", nullable=true)
*/
private $surveylsDescription;
/**
* @var string
*
* @ORM\Column(name="surveyls_welcometext", type="text", nullable=true)
*/
private $surveylsWelcometext;
/**
* @var string
*
* @ORM\Column(name="surveyls_endtext", type="text", nullable=true)
*/
private $surveylsEndtext;
/**
* @var string
*
* @ORM\Column(name="surveyls_url", type="text", nullable=true)
*/
private $surveylsUrl;
/**
* @var string
*
* @ORM\Column(name="surveyls_urldescription", type="string", length=255, nullable=true)
*/
private $surveylsUrldescription;
/**
* @var string
*
* @ORM\Column(name="surveyls_email_invite_subj", type="string", length=255, nullable=true)
*/
private $surveylsEmailInviteSubj;
/**
* @var string
*
* @ORM\Column(name="surveyls_email_invite", type="text", nullable=true)
*/
private $surveylsEmailInvite;
/**
* @var string
*
* @ORM\Column(name="surveyls_email_remind_subj", type="string", length=255, nullable=true)
*/
private $surveylsEmailRemindSubj;
/**
* @var string
*
* @ORM\Column(name="surveyls_email_remind", type="text", nullable=true)
*/
private $surveylsEmailRemind;
/**
* @var string
*
* @ORM\Column(name="surveyls_email_register_subj", type="string", length=255, nullable=true)
*/
private $surveylsEmailRegisterSubj;
/**
* @var string
*
* @ORM\Column(name="surveyls_email_register", type="text", nullable=true)
*/
private $surveylsEmailRegister;
/**
* @var string
*
* @ORM\Column(name="surveyls_email_confirm_subj", type="string", length=255, nullable=true)
*/
private $surveylsEmailConfirmSubj;
/**
* @var string
*
* @ORM\Column(name="surveyls_email_confirm", type="text", nullable=true)
*/
private $surveylsEmailConfirm;
/**
* @var int
*
* @ORM\Column(name="surveyls_dateformat", type="integer", nullable=false)
*/
private $surveylsDateformat;
/**
* @var string
*
* @ORM\Column(name="surveyls_attributecaptions", type="text", nullable=true)
*/
private $surveylsAttributecaptions;
/**
* @var string
*
* @ORM\Column(name="email_admin_notification_subj", type="string", length=255, nullable=true)
*/
private $emailAdminNotificationSubj;
/**
* @var string
*
* @ORM\Column(name="email_admin_notification", type="text", nullable=true)
*/
private $emailAdminNotification;
/**
* @var string
*
* @ORM\Column(name="email_admin_responses_subj", type="string", length=255, nullable=true)
*/
private $emailAdminResponsesSubj;
/**
* @var string
*
* @ORM\Column(name="email_admin_responses", type="text", nullable=true)
*/
private $emailAdminResponses;
/**
* @var int
*
* @ORM\Column(name="surveyls_numberformat", type="integer", nullable=false)
*/
private $surveylsNumberformat;
/**
* @var string
*
* @ORM\Column(name="attachments", type="text", nullable=true)
*/
private $attachments;
private $completed_responses;
private $incompleted_responses;
private $full_responses;
/**
* Set surveylsTitle.
*
* @param string $surveylsTitle
*/
public function setSurveylsTitle($surveylsTitle): static
{
$this->surveylsTitle = $surveylsTitle;
return $this;
}
/**
* Get surveylsTitle.
*
* @return string
*/
public function getSurveylsTitle()
{
return $this->surveylsTitle;
}
/**
* Set surveylsDescription.
*
* @param string $surveylsDescription
*/
public function setSurveylsDescription($surveylsDescription): static
{
$this->surveylsDescription = $surveylsDescription;
return $this;
}
/**
* Get surveylsDescription.
*
* @return string
*/
public function getSurveylsDescription()
{
return $this->surveylsDescription;
}
/**
* Set surveylsWelcometext.
*
* @param string $surveylsWelcometext
*/
public function setSurveylsWelcometext($surveylsWelcometext): static
{
$this->surveylsWelcometext = $surveylsWelcometext;
return $this;
}
/**
* Get surveylsWelcometext.
*
* @return string
*/
public function getSurveylsWelcometext()
{
return $this->surveylsWelcometext;
}
/**
* Set surveylsEndtext.
*
* @param string $surveylsEndtext
*/
public function setSurveylsEndtext($surveylsEndtext): static
{
$this->surveylsEndtext = $surveylsEndtext;
return $this;
}
/**
* Get surveylsEndtext.
*
* @return string
*/
public function getSurveylsEndtext()
{
return $this->surveylsEndtext;
}
/**
* Set surveylsUrl.
*
* @param string $surveylsUrl
*/
public function setSurveylsUrl($surveylsUrl): static
{
$this->surveylsUrl = $surveylsUrl;
return $this;
}
/**
* Get surveylsUrl.
*
* @return string
*/
public function getSurveylsUrl()
{
return $this->surveylsUrl;
}
/**
* Set surveylsUrldescription.
*
* @param string $surveylsUrldescription
*/
public function setSurveylsUrldescription($surveylsUrldescription): static
{
$this->surveylsUrldescription = $surveylsUrldescription;
return $this;
}
/**
* Get surveylsUrldescription.
*
* @return string
*/
public function getSurveylsUrldescription()
{
return $this->surveylsUrldescription;
}
/**
* Set surveylsEmailInviteSubj.
*
* @param string $surveylsEmailInviteSubj
*/
public function setSurveylsEmailInviteSubj($surveylsEmailInviteSubj): static
{
$this->surveylsEmailInviteSubj = $surveylsEmailInviteSubj;
return $this;
}
/**
* Get surveylsEmailInviteSubj.
*
* @return string
*/
public function getSurveylsEmailInviteSubj()
{
return $this->surveylsEmailInviteSubj;
}
/**
* Set surveylsEmailInvite.
*
* @param string $surveylsEmailInvite
*/
public function setSurveylsEmailInvite($surveylsEmailInvite): static
{
$this->surveylsEmailInvite = $surveylsEmailInvite;
return $this;
}
/**
* Get surveylsEmailInvite.
*
* @return string
*/
public function getSurveylsEmailInvite()
{
return $this->surveylsEmailInvite;
}
/**
* Set surveylsEmailRemindSubj.
*
* @param string $surveylsEmailRemindSubj
*/
public function setSurveylsEmailRemindSubj($surveylsEmailRemindSubj): static
{
$this->surveylsEmailRemindSubj = $surveylsEmailRemindSubj;
return $this;
}
/**
* Get surveylsEmailRemindSubj.
*
* @return string
*/
public function getSurveylsEmailRemindSubj()
{
return $this->surveylsEmailRemindSubj;
}
/**
* Set surveylsEmailRemind.
*
* @param string $surveylsEmailRemind
*/
public function setSurveylsEmailRemind($surveylsEmailRemind): static
{
$this->surveylsEmailRemind = $surveylsEmailRemind;
return $this;
}
/**
* Get surveylsEmailRemind.
*
* @return string
*/
public function getSurveylsEmailRemind()
{
return $this->surveylsEmailRemind;
}
/**
* Set surveylsEmailRegisterSubj.
*
* @param string $surveylsEmailRegisterSubj
*/
public function setSurveylsEmailRegisterSubj($surveylsEmailRegisterSubj): static
{
$this->surveylsEmailRegisterSubj = $surveylsEmailRegisterSubj;
return $this;
}
/**
* Get surveylsEmailRegisterSubj.
*
* @return string
*/
public function getSurveylsEmailRegisterSubj()
{
return $this->surveylsEmailRegisterSubj;
}
/**
* Set surveylsEmailRegister.
*
* @param string $surveylsEmailRegister
*/
public function setSurveylsEmailRegister($surveylsEmailRegister): static
{
$this->surveylsEmailRegister = $surveylsEmailRegister;
return $this;
}
/**
* Get surveylsEmailRegister.
*
* @return string
*/
public function getSurveylsEmailRegister()
{
return $this->surveylsEmailRegister;
}
/**
* Set surveylsEmailConfirmSubj.
*
* @param string $surveylsEmailConfirmSubj
*/
public function setSurveylsEmailConfirmSubj($surveylsEmailConfirmSubj): static
{
$this->surveylsEmailConfirmSubj = $surveylsEmailConfirmSubj;
return $this;
}
/**
* Get surveylsEmailConfirmSubj.
*
* @return string
*/
public function getSurveylsEmailConfirmSubj()
{
return $this->surveylsEmailConfirmSubj;
}
/**
* Set surveylsEmailConfirm.
*
* @param string $surveylsEmailConfirm
*/
public function setSurveylsEmailConfirm($surveylsEmailConfirm): static
{
$this->surveylsEmailConfirm = $surveylsEmailConfirm;
return $this;
}
/**
* Get surveylsEmailConfirm.
*
* @return string
*/
public function getSurveylsEmailConfirm()
{
return $this->surveylsEmailConfirm;
}
/**
* Set surveylsDateformat.
*
* @param int $surveylsDateformat
*/
public function setSurveylsDateformat($surveylsDateformat): static
{
$this->surveylsDateformat = $surveylsDateformat;
return $this;
}
/**
* Get surveylsDateformat.
*
* @return int
*/
public function getSurveylsDateformat()
{
return $this->surveylsDateformat;
}
/**
* Set surveylsAttributecaptions.
*
* @param string $surveylsAttributecaptions
*/
public function setSurveylsAttributecaptions($surveylsAttributecaptions): static
{
$this->surveylsAttributecaptions = $surveylsAttributecaptions;
return $this;
}
/**
* Get surveylsAttributecaptions.
*
* @return string
*/
public function getSurveylsAttributecaptions()
{
return $this->surveylsAttributecaptions;
}
/**
* Set emailAdminNotificationSubj.
*
* @param string $emailAdminNotificationSubj
*/
public function setEmailAdminNotificationSubj($emailAdminNotificationSubj): static
{
$this->emailAdminNotificationSubj = $emailAdminNotificationSubj;
return $this;
}
/**
* Get emailAdminNotificationSubj.
*
* @return string
*/
public function getEmailAdminNotificationSubj()
{
return $this->emailAdminNotificationSubj;
}
/**
* Set emailAdminNotification.
*
* @param string $emailAdminNotification
*/
public function setEmailAdminNotification($emailAdminNotification): static
{
$this->emailAdminNotification = $emailAdminNotification;
return $this;
}
/**
* Get emailAdminNotification.
*
* @return string
*/
public function getEmailAdminNotification()
{
return $this->emailAdminNotification;
}
/**
* Set emailAdminResponsesSubj.
*
* @param string $emailAdminResponsesSubj
*/
public function setEmailAdminResponsesSubj($emailAdminResponsesSubj): static
{
$this->emailAdminResponsesSubj = $emailAdminResponsesSubj;
return $this;
}
/**
* Get emailAdminResponsesSubj.
*
* @return string
*/
public function getEmailAdminResponsesSubj()
{
return $this->emailAdminResponsesSubj;
}
/**
* Set emailAdminResponses.
*
* @param string $emailAdminResponses
*/
public function setEmailAdminResponses($emailAdminResponses): static
{
$this->emailAdminResponses = $emailAdminResponses;
return $this;
}
/**
* Get emailAdminResponses.
*
* @return string
*/
public function getEmailAdminResponses()
{
return $this->emailAdminResponses;
}
/**
* Set surveylsNumberformat.
*
* @param int $surveylsNumberformat
*/
public function setSurveylsNumberformat($surveylsNumberformat): static
{
$this->surveylsNumberformat = $surveylsNumberformat;
return $this;
}
/**
* Get surveylsNumberformat.
*
* @return int
*/
public function getSurveylsNumberformat()
{
return $this->surveylsNumberformat;
}
/**
* Set attachments.
*
* @param string $attachments
*/
public function setAttachments($attachments): static
{
$this->attachments = $attachments;
return $this;
}
/**
* Get attachments.
*
* @return string
*/
public function getAttachments()
{
return $this->attachments;
}
/**
* Set surveylsSurveyId.
*
* @param int $surveylsSurveyId
*/
public function setSurveylsSurveyId($surveylsSurveyId): static
{
$this->surveylsSurveyId = $surveylsSurveyId;
return $this;
}
/**
* Get surveylsSurveyId.
*
* @return int
*/
public function getSurveylsSurveyId()
{
return $this->surveylsSurveyId;
}
/**
* Set surveylsLanguage.
*
* @param string $surveylsLanguage
*/
public function setSurveylsLanguage($surveylsLanguage): static
{
$this->surveylsLanguage = $surveylsLanguage;
return $this;
}
/**
* Get surveylsLanguage.
*
* @return string
*/
public function getSurveylsLanguage()
{
return $this->surveylsLanguage;
}
public function setNbInvitation($nbInvitation): static
{
$this->nb_invitations = $nbInvitation;
return $this;
}
public function setCompletedResponses($completed_responses): static
{
$this->completed_responses = $completed_responses;
return $this;
}
public function getCompletedResponses()
{
return $this->completed_responses;
}
public function setIncompletedResponses($incompleted_responses): static
{
$this->incompleted_responses = $incompleted_responses;
return $this;
}
public function getNbInvitation()
{
return $this->nb_invitations;
}
public function getIncompletedResponses()
{
return $this->incompleted_responses;
}
public function setFullResponses($full_responses): static
{
$this->full_responses = $full_responses;
return $this;
}
public function getFullResponses()
{
return $this->full_responses;
}
public function setNoAnswered($no_answered): static
{
$this->no_answered = $no_answered;
return $this;
}
public function getNoAnswered()
{
return $this->no_answered;
}
}