src/Entity/LimeSurveys.php line 18

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity;
  4. use App\Repository\LimeSurveysRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8. * LimeSurveys.
  9. *
  10. * @ORM\Table(name="lime_surveys")
  11. *
  12. * @ORM\Entity(repositoryClass=LimeSurveysRepository::class)
  13. */
  14. class LimeSurveys
  15. {
  16. /**
  17. * @var int
  18. *
  19. * @ORM\Column(name="sid", type="integer", nullable=false)
  20. *
  21. * @ORM\Id
  22. *
  23. * @ORM\GeneratedValue(strategy="IDENTITY")
  24. */
  25. private $sid;
  26. /**
  27. * @var int
  28. *
  29. * @ORM\Column(name="owner_id", type="integer", nullable=false)
  30. */
  31. private $ownerId;
  32. /**
  33. * @var string
  34. *
  35. * @ORM\Column(name="admin", type="string", length=50, nullable=true)
  36. */
  37. private $admin;
  38. /**
  39. * @var string
  40. *
  41. * @ORM\Column(name="active", type="string", length=1, nullable=false)
  42. */
  43. private $active;
  44. /**
  45. * @var \DateTime
  46. *
  47. * @ORM\Column(name="expires", type="datetime", nullable=true)
  48. */
  49. private $expires;
  50. /**
  51. * @var \DateTime
  52. *
  53. * @ORM\Column(name="startdate", type="datetime", nullable=true)
  54. */
  55. private $startdate;
  56. /**
  57. * @var string
  58. *
  59. * @ORM\Column(name="adminemail", type="string", length=254, nullable=true)
  60. */
  61. private $adminemail;
  62. /**
  63. * @var string
  64. *
  65. * @ORM\Column(name="anonymized", type="string", length=1, nullable=false)
  66. */
  67. private $anonymized;
  68. /**
  69. * @var string
  70. *
  71. * @ORM\Column(name="format", type="string", length=1, nullable=true)
  72. */
  73. private $format;
  74. /**
  75. * @var string
  76. *
  77. * @ORM\Column(name="savetimings", type="string", length=1, nullable=false)
  78. */
  79. private $savetimings;
  80. /**
  81. * @var string
  82. *
  83. * @ORM\Column(name="template", type="string", length=100, nullable=true)
  84. */
  85. private $template;
  86. /**
  87. * @var string
  88. *
  89. * @ORM\Column(name="language", type="string", length=50, nullable=true)
  90. */
  91. private $language;
  92. /**
  93. * @var string
  94. *
  95. * @ORM\Column(name="additional_languages", type="string", length=255, nullable=true)
  96. */
  97. private $additionalLanguages;
  98. /**
  99. * @var string
  100. *
  101. * @ORM\Column(name="datestamp", type="string", length=1, nullable=false)
  102. */
  103. private $datestamp;
  104. /**
  105. * @var string
  106. *
  107. * @ORM\Column(name="usecookie", type="string", length=1, nullable=false)
  108. */
  109. private $usecookie;
  110. /**
  111. * @var string
  112. *
  113. * @ORM\Column(name="allowregister", type="string", length=1, nullable=false)
  114. */
  115. private $allowregister;
  116. /**
  117. * @var string
  118. *
  119. * @ORM\Column(name="allowsave", type="string", length=1, nullable=false)
  120. */
  121. private $allowsave;
  122. /**
  123. * @var int
  124. *
  125. * @ORM\Column(name="autonumber_start", type="integer", nullable=false)
  126. */
  127. private $autonumberStart;
  128. /**
  129. * @var string
  130. *
  131. * @ORM\Column(name="autoredirect", type="string", length=1, nullable=false)
  132. */
  133. private $autoredirect;
  134. /**
  135. * @var string
  136. *
  137. * @ORM\Column(name="allowprev", type="string", length=1, nullable=false)
  138. */
  139. private $allowprev;
  140. /**
  141. * @var string
  142. *
  143. * @ORM\Column(name="printanswers", type="string", length=1, nullable=false)
  144. */
  145. private $printanswers;
  146. /**
  147. * @var string
  148. *
  149. * @ORM\Column(name="ipaddr", type="string", length=1, nullable=false)
  150. */
  151. private $ipaddr;
  152. /**
  153. * @var string
  154. *
  155. * @ORM\Column(name="refurl", type="string", length=1, nullable=false)
  156. */
  157. private $refurl;
  158. /**
  159. * @var \DateTime
  160. *
  161. * @ORM\Column(name="datecreated", type="datetime", nullable=true)
  162. */
  163. private $datecreated;
  164. /**
  165. * @var string
  166. *
  167. * @ORM\Column(name="publicstatistics", type="string", length=1, nullable=false)
  168. */
  169. private $publicstatistics;
  170. /**
  171. * @var string
  172. *
  173. * @ORM\Column(name="publicgraphs", type="string", length=1, nullable=false)
  174. */
  175. private $publicgraphs;
  176. /**
  177. * @var string
  178. *
  179. * @ORM\Column(name="listpublic", type="string", length=1, nullable=false)
  180. */
  181. private $listpublic;
  182. /**
  183. * @var string
  184. *
  185. * @ORM\Column(name="htmlemail", type="string", length=1, nullable=false)
  186. */
  187. private $htmlemail;
  188. /**
  189. * @var string
  190. *
  191. * @ORM\Column(name="sendconfirmation", type="string", length=1, nullable=false)
  192. */
  193. private $sendconfirmation;
  194. /**
  195. * @var string
  196. *
  197. * @ORM\Column(name="tokenanswerspersistence", type="string", length=1, nullable=false)
  198. */
  199. private $tokenanswerspersistence;
  200. /**
  201. * @var string
  202. *
  203. * @ORM\Column(name="assessments", type="string", length=1, nullable=false)
  204. */
  205. private $assessments;
  206. /**
  207. * @var string
  208. *
  209. * @ORM\Column(name="usecaptcha", type="string", length=1, nullable=false)
  210. */
  211. private $usecaptcha;
  212. /**
  213. * @var string
  214. *
  215. * @ORM\Column(name="usetokens", type="string", length=1, nullable=false)
  216. */
  217. private $usetokens;
  218. /**
  219. * @var string
  220. *
  221. * @ORM\Column(name="bounce_email", type="string", length=254, nullable=true)
  222. */
  223. private $bounceEmail;
  224. /**
  225. * @var string
  226. *
  227. * @ORM\Column(name="attributedescriptions", type="text", nullable=true)
  228. */
  229. private $attributedescriptions;
  230. /**
  231. * @var string
  232. *
  233. * @ORM\Column(name="emailresponseto", type="text", nullable=true)
  234. */
  235. private $emailresponseto;
  236. /**
  237. * @var string
  238. *
  239. * @ORM\Column(name="emailnotificationto", type="text", nullable=true)
  240. */
  241. private $emailnotificationto;
  242. /**
  243. * @var int
  244. *
  245. * @ORM\Column(name="tokenlength", type="integer", nullable=false)
  246. */
  247. private $tokenlength;
  248. /**
  249. * @var string
  250. *
  251. * @ORM\Column(name="showxquestions", type="string", length=1, nullable=true)
  252. */
  253. private $showxquestions;
  254. /**
  255. * @var string
  256. *
  257. * @ORM\Column(name="showgroupinfo", type="string", length=1, nullable=true)
  258. */
  259. private $showgroupinfo;
  260. /**
  261. * @var string
  262. *
  263. * @ORM\Column(name="shownoanswer", type="string", length=1, nullable=true)
  264. */
  265. private $shownoanswer;
  266. /**
  267. * @var string
  268. *
  269. * @ORM\Column(name="showqnumcode", type="string", length=1, nullable=true)
  270. */
  271. private $showqnumcode;
  272. /**
  273. * @var int
  274. *
  275. * @ORM\Column(name="bouncetime", type="integer", nullable=true)
  276. */
  277. private $bouncetime;
  278. /**
  279. * @var string
  280. *
  281. * @ORM\Column(name="bounceprocessing", type="string", length=1, nullable=true)
  282. */
  283. private $bounceprocessing;
  284. /**
  285. * @var string
  286. *
  287. * @ORM\Column(name="bounceaccounttype", type="string", length=4, nullable=true)
  288. */
  289. private $bounceaccounttype;
  290. /**
  291. * @var string
  292. *
  293. * @ORM\Column(name="bounceaccounthost", type="string", length=200, nullable=true)
  294. */
  295. private $bounceaccounthost;
  296. /**
  297. * @var string
  298. *
  299. * @ORM\Column(name="bounceaccountpass", type="string", length=100, nullable=true)
  300. */
  301. private $bounceaccountpass;
  302. /**
  303. * @var string
  304. *
  305. * @ORM\Column(name="bounceaccountencryption", type="string", length=3, nullable=true)
  306. */
  307. private $bounceaccountencryption;
  308. /**
  309. * @var string
  310. *
  311. * @ORM\Column(name="bounceaccountuser", type="string", length=200, nullable=true)
  312. */
  313. private $bounceaccountuser;
  314. /**
  315. * @var string
  316. *
  317. * @ORM\Column(name="showwelcome", type="string", length=1, nullable=true)
  318. */
  319. private $showwelcome;
  320. /**
  321. * @var string
  322. *
  323. * @ORM\Column(name="showprogress", type="string", length=1, nullable=true)
  324. */
  325. private $showprogress;
  326. /**
  327. * @var int
  328. *
  329. * @ORM\Column(name="navigationdelay", type="integer", nullable=false)
  330. */
  331. private $navigationdelay;
  332. /**
  333. * @var string
  334. *
  335. * @ORM\Column(name="nokeyboard", type="string", length=1, nullable=true)
  336. */
  337. private $nokeyboard;
  338. /**
  339. * @var string
  340. *
  341. * @ORM\Column(name="alloweditaftercompletion", type="string", length=1, nullable=true)
  342. */
  343. private $alloweditaftercompletion;
  344. /**
  345. * @var string
  346. *
  347. * @ORM\Column(name="googleanalyticsstyle", type="string", length=1, nullable=true)
  348. */
  349. private $googleanalyticsstyle;
  350. /**
  351. * @var string
  352. *
  353. * @ORM\Column(name="googleanalyticsapikey", type="string", length=25, nullable=true)
  354. */
  355. private $googleanalyticsapikey;
  356. /**
  357. * @var int
  358. *
  359. * @ORM\Column(name="questionindex", type="integer", nullable=false)
  360. */
  361. private $questionindex;
  362. /**
  363. * Set ownerId.
  364. *
  365. * @param int $ownerId
  366. */
  367. public function setOwnerId($ownerId): static
  368. {
  369. $this->ownerId = $ownerId;
  370. return $this;
  371. }
  372. /**
  373. * Get ownerId.
  374. *
  375. * @return int
  376. */
  377. public function getOwnerId()
  378. {
  379. return $this->ownerId;
  380. }
  381. /**
  382. * Set admin.
  383. *
  384. * @param string $admin
  385. */
  386. public function setAdmin($admin): static
  387. {
  388. $this->admin = $admin;
  389. return $this;
  390. }
  391. /**
  392. * Get admin.
  393. *
  394. * @return string
  395. */
  396. public function getAdmin()
  397. {
  398. return $this->admin;
  399. }
  400. /**
  401. * Set active.
  402. *
  403. * @param string $active
  404. */
  405. public function setActive($active): static
  406. {
  407. $this->active = $active;
  408. return $this;
  409. }
  410. /**
  411. * Get active.
  412. *
  413. * @return string
  414. */
  415. public function getActive()
  416. {
  417. return $this->active;
  418. }
  419. /**
  420. * Set expires.
  421. *
  422. * @param \DateTime $expires
  423. */
  424. public function setExpires($expires): static
  425. {
  426. $this->expires = $expires;
  427. return $this;
  428. }
  429. /**
  430. * Get expires.
  431. *
  432. * @return \DateTime
  433. */
  434. public function getExpires()
  435. {
  436. return $this->expires;
  437. }
  438. /**
  439. * Set startdate.
  440. *
  441. * @param \DateTime $startdate
  442. */
  443. public function setStartdate($startdate): static
  444. {
  445. $this->startdate = $startdate;
  446. return $this;
  447. }
  448. /**
  449. * Get startdate.
  450. *
  451. * @return \DateTime
  452. */
  453. public function getStartdate()
  454. {
  455. return $this->startdate;
  456. }
  457. /**
  458. * Set adminemail.
  459. *
  460. * @param string $adminemail
  461. */
  462. public function setAdminemail($adminemail): static
  463. {
  464. $this->adminemail = $adminemail;
  465. return $this;
  466. }
  467. /**
  468. * Get adminemail.
  469. *
  470. * @return string
  471. */
  472. public function getAdminemail()
  473. {
  474. return $this->adminemail;
  475. }
  476. /**
  477. * Set anonymized.
  478. *
  479. * @param string $anonymized
  480. */
  481. public function setAnonymized($anonymized): static
  482. {
  483. $this->anonymized = $anonymized;
  484. return $this;
  485. }
  486. /**
  487. * Get anonymized.
  488. *
  489. * @return string
  490. */
  491. public function getAnonymized()
  492. {
  493. return $this->anonymized;
  494. }
  495. /**
  496. * Set format.
  497. *
  498. * @param string $format
  499. */
  500. public function setFormat($format): static
  501. {
  502. $this->format = $format;
  503. return $this;
  504. }
  505. /**
  506. * Get format.
  507. *
  508. * @return string
  509. */
  510. public function getFormat()
  511. {
  512. return $this->format;
  513. }
  514. /**
  515. * Set savetimings.
  516. *
  517. * @param string $savetimings
  518. */
  519. public function setSavetimings($savetimings): static
  520. {
  521. $this->savetimings = $savetimings;
  522. return $this;
  523. }
  524. /**
  525. * Get savetimings.
  526. *
  527. * @return string
  528. */
  529. public function getSavetimings()
  530. {
  531. return $this->savetimings;
  532. }
  533. /**
  534. * Set template.
  535. *
  536. * @param string $template
  537. */
  538. public function setTemplate($template): static
  539. {
  540. $this->template = $template;
  541. return $this;
  542. }
  543. /**
  544. * Get template.
  545. *
  546. * @return string
  547. */
  548. public function getTemplate()
  549. {
  550. return $this->template;
  551. }
  552. /**
  553. * Set language.
  554. *
  555. * @param string $language
  556. */
  557. public function setLanguage($language): static
  558. {
  559. $this->language = $language;
  560. return $this;
  561. }
  562. /**
  563. * Get language.
  564. *
  565. * @return string
  566. */
  567. public function getLanguage()
  568. {
  569. return $this->language;
  570. }
  571. /**
  572. * Set additionalLanguages.
  573. *
  574. * @param string $additionalLanguages
  575. */
  576. public function setAdditionalLanguages($additionalLanguages): static
  577. {
  578. $this->additionalLanguages = $additionalLanguages;
  579. return $this;
  580. }
  581. /**
  582. * Get additionalLanguages.
  583. *
  584. * @return string
  585. */
  586. public function getAdditionalLanguages()
  587. {
  588. return $this->additionalLanguages;
  589. }
  590. /**
  591. * Set datestamp.
  592. *
  593. * @param string $datestamp
  594. */
  595. public function setDatestamp($datestamp): static
  596. {
  597. $this->datestamp = $datestamp;
  598. return $this;
  599. }
  600. /**
  601. * Get datestamp.
  602. *
  603. * @return string
  604. */
  605. public function getDatestamp()
  606. {
  607. return $this->datestamp;
  608. }
  609. /**
  610. * Set usecookie.
  611. *
  612. * @param string $usecookie
  613. */
  614. public function setUsecookie($usecookie): static
  615. {
  616. $this->usecookie = $usecookie;
  617. return $this;
  618. }
  619. /**
  620. * Get usecookie.
  621. *
  622. * @return string
  623. */
  624. public function getUsecookie()
  625. {
  626. return $this->usecookie;
  627. }
  628. /**
  629. * Set allowregister.
  630. *
  631. * @param string $allowregister
  632. */
  633. public function setAllowregister($allowregister): static
  634. {
  635. $this->allowregister = $allowregister;
  636. return $this;
  637. }
  638. /**
  639. * Get allowregister.
  640. *
  641. * @return string
  642. */
  643. public function getAllowregister()
  644. {
  645. return $this->allowregister;
  646. }
  647. /**
  648. * Set allowsave.
  649. *
  650. * @param string $allowsave
  651. */
  652. public function setAllowsave($allowsave): static
  653. {
  654. $this->allowsave = $allowsave;
  655. return $this;
  656. }
  657. /**
  658. * Get allowsave.
  659. *
  660. * @return string
  661. */
  662. public function getAllowsave()
  663. {
  664. return $this->allowsave;
  665. }
  666. /**
  667. * Set autonumberStart.
  668. *
  669. * @param int $autonumberStart
  670. */
  671. public function setAutonumberStart($autonumberStart): static
  672. {
  673. $this->autonumberStart = $autonumberStart;
  674. return $this;
  675. }
  676. /**
  677. * Get autonumberStart.
  678. *
  679. * @return int
  680. */
  681. public function getAutonumberStart()
  682. {
  683. return $this->autonumberStart;
  684. }
  685. /**
  686. * Set autoredirect.
  687. *
  688. * @param string $autoredirect
  689. */
  690. public function setAutoredirect($autoredirect): static
  691. {
  692. $this->autoredirect = $autoredirect;
  693. return $this;
  694. }
  695. /**
  696. * Get autoredirect.
  697. *
  698. * @return string
  699. */
  700. public function getAutoredirect()
  701. {
  702. return $this->autoredirect;
  703. }
  704. /**
  705. * Set allowprev.
  706. *
  707. * @param string $allowprev
  708. */
  709. public function setAllowprev($allowprev): static
  710. {
  711. $this->allowprev = $allowprev;
  712. return $this;
  713. }
  714. /**
  715. * Get allowprev.
  716. *
  717. * @return string
  718. */
  719. public function getAllowprev()
  720. {
  721. return $this->allowprev;
  722. }
  723. /**
  724. * Set printanswers.
  725. *
  726. * @param string $printanswers
  727. */
  728. public function setPrintanswers($printanswers): static
  729. {
  730. $this->printanswers = $printanswers;
  731. return $this;
  732. }
  733. /**
  734. * Get printanswers.
  735. *
  736. * @return string
  737. */
  738. public function getPrintanswers()
  739. {
  740. return $this->printanswers;
  741. }
  742. /**
  743. * Set ipaddr.
  744. *
  745. * @param string $ipaddr
  746. */
  747. public function setIpaddr($ipaddr): static
  748. {
  749. $this->ipaddr = $ipaddr;
  750. return $this;
  751. }
  752. /**
  753. * Get ipaddr.
  754. *
  755. * @return string
  756. */
  757. public function getIpaddr()
  758. {
  759. return $this->ipaddr;
  760. }
  761. /**
  762. * Set refurl.
  763. *
  764. * @param string $refurl
  765. */
  766. public function setRefurl($refurl): static
  767. {
  768. $this->refurl = $refurl;
  769. return $this;
  770. }
  771. /**
  772. * Get refurl.
  773. *
  774. * @return string
  775. */
  776. public function getRefurl()
  777. {
  778. return $this->refurl;
  779. }
  780. /**
  781. * Set datecreated.
  782. *
  783. * @param \DateTime $datecreated
  784. */
  785. public function setDatecreated($datecreated): static
  786. {
  787. $this->datecreated = $datecreated;
  788. return $this;
  789. }
  790. /**
  791. * Get datecreated.
  792. *
  793. * @return \DateTime
  794. */
  795. public function getDatecreated()
  796. {
  797. return $this->datecreated;
  798. }
  799. /**
  800. * Set publicstatistics.
  801. *
  802. * @param string $publicstatistics
  803. */
  804. public function setPublicstatistics($publicstatistics): static
  805. {
  806. $this->publicstatistics = $publicstatistics;
  807. return $this;
  808. }
  809. /**
  810. * Get publicstatistics.
  811. *
  812. * @return string
  813. */
  814. public function getPublicstatistics()
  815. {
  816. return $this->publicstatistics;
  817. }
  818. /**
  819. * Set publicgraphs.
  820. *
  821. * @param string $publicgraphs
  822. */
  823. public function setPublicgraphs($publicgraphs): static
  824. {
  825. $this->publicgraphs = $publicgraphs;
  826. return $this;
  827. }
  828. /**
  829. * Get publicgraphs.
  830. *
  831. * @return string
  832. */
  833. public function getPublicgraphs()
  834. {
  835. return $this->publicgraphs;
  836. }
  837. /**
  838. * Set listpublic.
  839. *
  840. * @param string $listpublic
  841. */
  842. public function setListpublic($listpublic): static
  843. {
  844. $this->listpublic = $listpublic;
  845. return $this;
  846. }
  847. /**
  848. * Get listpublic.
  849. *
  850. * @return string
  851. */
  852. public function getListpublic()
  853. {
  854. return $this->listpublic;
  855. }
  856. /**
  857. * Set htmlemail.
  858. *
  859. * @param string $htmlemail
  860. */
  861. public function setHtmlemail($htmlemail): static
  862. {
  863. $this->htmlemail = $htmlemail;
  864. return $this;
  865. }
  866. /**
  867. * Get htmlemail.
  868. *
  869. * @return string
  870. */
  871. public function getHtmlemail()
  872. {
  873. return $this->htmlemail;
  874. }
  875. /**
  876. * Set sendconfirmation.
  877. *
  878. * @param string $sendconfirmation
  879. */
  880. public function setSendconfirmation($sendconfirmation): static
  881. {
  882. $this->sendconfirmation = $sendconfirmation;
  883. return $this;
  884. }
  885. /**
  886. * Get sendconfirmation.
  887. *
  888. * @return string
  889. */
  890. public function getSendconfirmation()
  891. {
  892. return $this->sendconfirmation;
  893. }
  894. /**
  895. * Set tokenanswerspersistence.
  896. *
  897. * @param string $tokenanswerspersistence
  898. */
  899. public function setTokenanswerspersistence($tokenanswerspersistence): static
  900. {
  901. $this->tokenanswerspersistence = $tokenanswerspersistence;
  902. return $this;
  903. }
  904. /**
  905. * Get tokenanswerspersistence.
  906. *
  907. * @return string
  908. */
  909. public function getTokenanswerspersistence()
  910. {
  911. return $this->tokenanswerspersistence;
  912. }
  913. /**
  914. * Set assessments.
  915. *
  916. * @param string $assessments
  917. */
  918. public function setAssessments($assessments): static
  919. {
  920. $this->assessments = $assessments;
  921. return $this;
  922. }
  923. /**
  924. * Get assessments.
  925. *
  926. * @return string
  927. */
  928. public function getAssessments()
  929. {
  930. return $this->assessments;
  931. }
  932. /**
  933. * Set usecaptcha.
  934. *
  935. * @param string $usecaptcha
  936. */
  937. public function setUsecaptcha($usecaptcha): static
  938. {
  939. $this->usecaptcha = $usecaptcha;
  940. return $this;
  941. }
  942. /**
  943. * Get usecaptcha.
  944. *
  945. * @return string
  946. */
  947. public function getUsecaptcha()
  948. {
  949. return $this->usecaptcha;
  950. }
  951. /**
  952. * Set usetokens.
  953. *
  954. * @param string $usetokens
  955. */
  956. public function setUsetokens($usetokens): static
  957. {
  958. $this->usetokens = $usetokens;
  959. return $this;
  960. }
  961. /**
  962. * Get usetokens.
  963. *
  964. * @return string
  965. */
  966. public function getUsetokens()
  967. {
  968. return $this->usetokens;
  969. }
  970. /**
  971. * Set bounceEmail.
  972. *
  973. * @param string $bounceEmail
  974. */
  975. public function setBounceEmail($bounceEmail): static
  976. {
  977. $this->bounceEmail = $bounceEmail;
  978. return $this;
  979. }
  980. /**
  981. * Get bounceEmail.
  982. *
  983. * @return string
  984. */
  985. public function getBounceEmail()
  986. {
  987. return $this->bounceEmail;
  988. }
  989. /**
  990. * Set attributedescriptions.
  991. *
  992. * @param string $attributedescriptions
  993. */
  994. public function setAttributedescriptions($attributedescriptions): static
  995. {
  996. $this->attributedescriptions = $attributedescriptions;
  997. return $this;
  998. }
  999. /**
  1000. * Get attributedescriptions.
  1001. *
  1002. * @return string
  1003. */
  1004. public function getAttributedescriptions()
  1005. {
  1006. return $this->attributedescriptions;
  1007. }
  1008. /**
  1009. * Set emailresponseto.
  1010. *
  1011. * @param string $emailresponseto
  1012. */
  1013. public function setEmailresponseto($emailresponseto): static
  1014. {
  1015. $this->emailresponseto = $emailresponseto;
  1016. return $this;
  1017. }
  1018. /**
  1019. * Get emailresponseto.
  1020. *
  1021. * @return string
  1022. */
  1023. public function getEmailresponseto()
  1024. {
  1025. return $this->emailresponseto;
  1026. }
  1027. /**
  1028. * Set emailnotificationto.
  1029. *
  1030. * @param string $emailnotificationto
  1031. */
  1032. public function setEmailnotificationto($emailnotificationto): static
  1033. {
  1034. $this->emailnotificationto = $emailnotificationto;
  1035. return $this;
  1036. }
  1037. /**
  1038. * Get emailnotificationto.
  1039. *
  1040. * @return string
  1041. */
  1042. public function getEmailnotificationto()
  1043. {
  1044. return $this->emailnotificationto;
  1045. }
  1046. /**
  1047. * Set tokenlength.
  1048. *
  1049. * @param int $tokenlength
  1050. */
  1051. public function setTokenlength($tokenlength): static
  1052. {
  1053. $this->tokenlength = $tokenlength;
  1054. return $this;
  1055. }
  1056. /**
  1057. * Get tokenlength.
  1058. *
  1059. * @return int
  1060. */
  1061. public function getTokenlength()
  1062. {
  1063. return $this->tokenlength;
  1064. }
  1065. /**
  1066. * Set showxquestions.
  1067. *
  1068. * @param string $showxquestions
  1069. */
  1070. public function setShowxquestions($showxquestions): static
  1071. {
  1072. $this->showxquestions = $showxquestions;
  1073. return $this;
  1074. }
  1075. /**
  1076. * Get showxquestions.
  1077. *
  1078. * @return string
  1079. */
  1080. public function getShowxquestions()
  1081. {
  1082. return $this->showxquestions;
  1083. }
  1084. /**
  1085. * Set showgroupinfo.
  1086. *
  1087. * @param string $showgroupinfo
  1088. */
  1089. public function setShowgroupinfo($showgroupinfo): static
  1090. {
  1091. $this->showgroupinfo = $showgroupinfo;
  1092. return $this;
  1093. }
  1094. /**
  1095. * Get showgroupinfo.
  1096. *
  1097. * @return string
  1098. */
  1099. public function getShowgroupinfo()
  1100. {
  1101. return $this->showgroupinfo;
  1102. }
  1103. /**
  1104. * Set shownoanswer.
  1105. *
  1106. * @param string $shownoanswer
  1107. */
  1108. public function setShownoanswer($shownoanswer): static
  1109. {
  1110. $this->shownoanswer = $shownoanswer;
  1111. return $this;
  1112. }
  1113. /**
  1114. * Get shownoanswer.
  1115. *
  1116. * @return string
  1117. */
  1118. public function getShownoanswer()
  1119. {
  1120. return $this->shownoanswer;
  1121. }
  1122. /**
  1123. * Set showqnumcode.
  1124. *
  1125. * @param string $showqnumcode
  1126. */
  1127. public function setShowqnumcode($showqnumcode): static
  1128. {
  1129. $this->showqnumcode = $showqnumcode;
  1130. return $this;
  1131. }
  1132. /**
  1133. * Get showqnumcode.
  1134. *
  1135. * @return string
  1136. */
  1137. public function getShowqnumcode()
  1138. {
  1139. return $this->showqnumcode;
  1140. }
  1141. /**
  1142. * Set bouncetime.
  1143. *
  1144. * @param int $bouncetime
  1145. */
  1146. public function setBouncetime($bouncetime): static
  1147. {
  1148. $this->bouncetime = $bouncetime;
  1149. return $this;
  1150. }
  1151. /**
  1152. * Get bouncetime.
  1153. *
  1154. * @return int
  1155. */
  1156. public function getBouncetime()
  1157. {
  1158. return $this->bouncetime;
  1159. }
  1160. /**
  1161. * Set bounceprocessing.
  1162. *
  1163. * @param string $bounceprocessing
  1164. */
  1165. public function setBounceprocessing($bounceprocessing): static
  1166. {
  1167. $this->bounceprocessing = $bounceprocessing;
  1168. return $this;
  1169. }
  1170. /**
  1171. * Get bounceprocessing.
  1172. *
  1173. * @return string
  1174. */
  1175. public function getBounceprocessing()
  1176. {
  1177. return $this->bounceprocessing;
  1178. }
  1179. /**
  1180. * Set bounceaccounttype.
  1181. *
  1182. * @param string $bounceaccounttype
  1183. */
  1184. public function setBounceaccounttype($bounceaccounttype): static
  1185. {
  1186. $this->bounceaccounttype = $bounceaccounttype;
  1187. return $this;
  1188. }
  1189. /**
  1190. * Get bounceaccounttype.
  1191. *
  1192. * @return string
  1193. */
  1194. public function getBounceaccounttype()
  1195. {
  1196. return $this->bounceaccounttype;
  1197. }
  1198. /**
  1199. * Set bounceaccounthost.
  1200. *
  1201. * @param string $bounceaccounthost
  1202. */
  1203. public function setBounceaccounthost($bounceaccounthost): static
  1204. {
  1205. $this->bounceaccounthost = $bounceaccounthost;
  1206. return $this;
  1207. }
  1208. /**
  1209. * Get bounceaccounthost.
  1210. *
  1211. * @return string
  1212. */
  1213. public function getBounceaccounthost()
  1214. {
  1215. return $this->bounceaccounthost;
  1216. }
  1217. /**
  1218. * Set bounceaccountpass.
  1219. *
  1220. * @param string $bounceaccountpass
  1221. */
  1222. public function setBounceaccountpass($bounceaccountpass): static
  1223. {
  1224. $this->bounceaccountpass = $bounceaccountpass;
  1225. return $this;
  1226. }
  1227. /**
  1228. * Get bounceaccountpass.
  1229. *
  1230. * @return string
  1231. */
  1232. public function getBounceaccountpass()
  1233. {
  1234. return $this->bounceaccountpass;
  1235. }
  1236. /**
  1237. * Set bounceaccountencryption.
  1238. *
  1239. * @param string $bounceaccountencryption
  1240. */
  1241. public function setBounceaccountencryption($bounceaccountencryption): static
  1242. {
  1243. $this->bounceaccountencryption = $bounceaccountencryption;
  1244. return $this;
  1245. }
  1246. /**
  1247. * Get bounceaccountencryption.
  1248. *
  1249. * @return string
  1250. */
  1251. public function getBounceaccountencryption()
  1252. {
  1253. return $this->bounceaccountencryption;
  1254. }
  1255. /**
  1256. * Set bounceaccountuser.
  1257. *
  1258. * @param string $bounceaccountuser
  1259. */
  1260. public function setBounceaccountuser($bounceaccountuser): static
  1261. {
  1262. $this->bounceaccountuser = $bounceaccountuser;
  1263. return $this;
  1264. }
  1265. /**
  1266. * Get bounceaccountuser.
  1267. *
  1268. * @return string
  1269. */
  1270. public function getBounceaccountuser()
  1271. {
  1272. return $this->bounceaccountuser;
  1273. }
  1274. /**
  1275. * Set showwelcome.
  1276. *
  1277. * @param string $showwelcome
  1278. */
  1279. public function setShowwelcome($showwelcome): static
  1280. {
  1281. $this->showwelcome = $showwelcome;
  1282. return $this;
  1283. }
  1284. /**
  1285. * Get showwelcome.
  1286. *
  1287. * @return string
  1288. */
  1289. public function getShowwelcome()
  1290. {
  1291. return $this->showwelcome;
  1292. }
  1293. /**
  1294. * Set showprogress.
  1295. *
  1296. * @param string $showprogress
  1297. */
  1298. public function setShowprogress($showprogress): static
  1299. {
  1300. $this->showprogress = $showprogress;
  1301. return $this;
  1302. }
  1303. /**
  1304. * Get showprogress.
  1305. *
  1306. * @return string
  1307. */
  1308. public function getShowprogress()
  1309. {
  1310. return $this->showprogress;
  1311. }
  1312. /**
  1313. * Set navigationdelay.
  1314. *
  1315. * @param int $navigationdelay
  1316. */
  1317. public function setNavigationdelay($navigationdelay): static
  1318. {
  1319. $this->navigationdelay = $navigationdelay;
  1320. return $this;
  1321. }
  1322. /**
  1323. * Get navigationdelay.
  1324. *
  1325. * @return int
  1326. */
  1327. public function getNavigationdelay()
  1328. {
  1329. return $this->navigationdelay;
  1330. }
  1331. /**
  1332. * Set nokeyboard.
  1333. *
  1334. * @param string $nokeyboard
  1335. */
  1336. public function setNokeyboard($nokeyboard): static
  1337. {
  1338. $this->nokeyboard = $nokeyboard;
  1339. return $this;
  1340. }
  1341. /**
  1342. * Get nokeyboard.
  1343. *
  1344. * @return string
  1345. */
  1346. public function getNokeyboard()
  1347. {
  1348. return $this->nokeyboard;
  1349. }
  1350. /**
  1351. * Set alloweditaftercompletion.
  1352. *
  1353. * @param string $alloweditaftercompletion
  1354. */
  1355. public function setAlloweditaftercompletion($alloweditaftercompletion): static
  1356. {
  1357. $this->alloweditaftercompletion = $alloweditaftercompletion;
  1358. return $this;
  1359. }
  1360. /**
  1361. * Get alloweditaftercompletion.
  1362. *
  1363. * @return string
  1364. */
  1365. public function getAlloweditaftercompletion()
  1366. {
  1367. return $this->alloweditaftercompletion;
  1368. }
  1369. /**
  1370. * Set googleanalyticsstyle.
  1371. *
  1372. * @param string $googleanalyticsstyle
  1373. */
  1374. public function setGoogleanalyticsstyle($googleanalyticsstyle): static
  1375. {
  1376. $this->googleanalyticsstyle = $googleanalyticsstyle;
  1377. return $this;
  1378. }
  1379. /**
  1380. * Get googleanalyticsstyle.
  1381. *
  1382. * @return string
  1383. */
  1384. public function getGoogleanalyticsstyle()
  1385. {
  1386. return $this->googleanalyticsstyle;
  1387. }
  1388. /**
  1389. * Set googleanalyticsapikey.
  1390. *
  1391. * @param string $googleanalyticsapikey
  1392. */
  1393. public function setGoogleanalyticsapikey($googleanalyticsapikey): static
  1394. {
  1395. $this->googleanalyticsapikey = $googleanalyticsapikey;
  1396. return $this;
  1397. }
  1398. /**
  1399. * Get googleanalyticsapikey.
  1400. *
  1401. * @return string
  1402. */
  1403. public function getGoogleanalyticsapikey()
  1404. {
  1405. return $this->googleanalyticsapikey;
  1406. }
  1407. /**
  1408. * Set questionindex.
  1409. *
  1410. * @param int $questionindex
  1411. */
  1412. public function setQuestionindex($questionindex): static
  1413. {
  1414. $this->questionindex = $questionindex;
  1415. return $this;
  1416. }
  1417. /**
  1418. * Get questionindex.
  1419. *
  1420. * @return int
  1421. */
  1422. public function getQuestionindex()
  1423. {
  1424. return $this->questionindex;
  1425. }
  1426. /**
  1427. * Get sid.
  1428. *
  1429. * @return int
  1430. */
  1431. public function getSid()
  1432. {
  1433. return $this->sid;
  1434. }
  1435. }