src/Entity/CRM/SmsContent.php line 10

  1. <?php
  2. namespace App\Entity\CRM;
  3. use App\Repository\SmsContentRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassSmsContentRepository::class)]
  7. class SmsContent
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(typeTypes::TEXT)]
  14.     private ?string $content null;
  15.     #[ORM\Column]
  16.     private ?bool $isActive null;
  17.     #[ORM\Column]
  18.     private ?bool $remainderForQuestionAnswer null;
  19.     #[ORM\Column]
  20.     private ?bool $firstRemainderForZoom null;
  21.     #[ORM\Column]
  22.     private ?bool $secondRemainderForZoom null;
  23.     #[ORM\Column]
  24.     private ?bool $remainderForInvoicePayment null;
  25.     #[ORM\Column]
  26.     private ?bool $firstRemainderForFreeWebinar null;
  27.     #[ORM\Column]
  28.     private ?bool $secondRemainderForFreeWebinar null;
  29.     #[ORM\Column]
  30.     private ?bool $firstRemainderForKsef null;
  31.     #[ORM\Column]
  32.     private ?bool $secondRemainderForKsef null;
  33.     #[ORM\Column]
  34.     private ?bool $webAmlLicenseRegistrationReminder null;
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getContent(): ?string
  40.     {
  41.         return $this->content;
  42.     }
  43.     public function setContent(string $content): static
  44.     {
  45.         $this->content $content;
  46.         return $this;
  47.     }
  48.     public function isIsActive(): ?bool
  49.     {
  50.         return $this->isActive;
  51.     }
  52.     public function setIsActive(bool $isActive): static
  53.     {
  54.         $this->isActive $isActive;
  55.         return $this;
  56.     }
  57.     public function isRemainderForQuestionAnswer(): ?bool
  58.     {
  59.         return $this->remainderForQuestionAnswer;
  60.     }
  61.     public function setRemainderForQuestionAnswer(bool $remainderForQuestionAnswer): static
  62.     {
  63.         $this->remainderForQuestionAnswer $remainderForQuestionAnswer;
  64.         return $this;
  65.     }
  66.     public function isFirstRemainderForZoom(): ?bool
  67.     {
  68.         return $this->firstRemainderForZoom;
  69.     }
  70.     public function setFirstRemainderForZoom(bool $firstRemainderForZoom): static
  71.     {
  72.         $this->firstRemainderForZoom $firstRemainderForZoom;
  73.         return $this;
  74.     }
  75.     public function isSecondRemainderForZoom(): ?bool
  76.     {
  77.         return $this->secondRemainderForZoom;
  78.     }
  79.     public function setSecondRemainderForZoom(bool $secondRemainderForZoom): static
  80.     {
  81.         $this->secondRemainderForZoom $secondRemainderForZoom;
  82.         return $this;
  83.     }
  84.     public function isRemainderForInvoicePayment(): ?bool
  85.     {
  86.         return $this->remainderForInvoicePayment;
  87.     }
  88.     public function setRemainderForInvoicePayment(bool $remainderForInvoicePayment): static
  89.     {
  90.         $this->remainderForInvoicePayment $remainderForInvoicePayment;
  91.         return $this;
  92.     }
  93.     public function isFirstRemainderForFreeWebinar(): ?bool
  94.     {
  95.         return $this->firstRemainderForFreeWebinar;
  96.     }
  97.     public function setFirstRemainderForFreeWebinar(bool $firstRemainderForFreeWebinar): static
  98.     {
  99.         $this->firstRemainderForFreeWebinar $firstRemainderForFreeWebinar;
  100.         return $this;
  101.     }
  102.     public function isSecondRemainderForFreeWebinar(): ?bool
  103.     {
  104.         return $this->secondRemainderForFreeWebinar;
  105.     }
  106.     public function setSecondRemainderForFreeWebinar(bool $secondRemainderForFreeWebinar): static
  107.     {
  108.         $this->secondRemainderForFreeWebinar $secondRemainderForFreeWebinar;
  109.         return $this;
  110.     }
  111.     public function isFirstRemainderForKsef(): ?bool
  112.     {
  113.         return $this->firstRemainderForKsef;
  114.     }
  115.     public function setFirstRemainderForKsef(bool $firstRemainderForKsef): static
  116.     {
  117.         $this->firstRemainderForKsef $firstRemainderForKsef;
  118.         return $this;
  119.     }
  120.     public function isSecondRemainderForKsef(): ?bool
  121.     {
  122.         return $this->secondRemainderForKsef;
  123.     }
  124.     public function setSecondRemainderForKsef(bool $secondRemainderForKsef): static
  125.     {
  126.         $this->secondRemainderForKsef $secondRemainderForKsef;
  127.         return $this;
  128.     }
  129.     public function isWebAmlLicenseRegistrationReminder(): ?bool
  130.     {
  131.         return $this->webAmlLicenseRegistrationReminder;
  132.     }
  133.     public function setWebAmlLicenseRegistrationReminder(bool $webAmlLicenseRegistrationReminder): static
  134.     {
  135.         $this->webAmlLicenseRegistrationReminder $webAmlLicenseRegistrationReminder;
  136.         return $this;
  137.     }
  138. }