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.     public function getId(): ?int
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function getContent(): ?string
  38.     {
  39.         return $this->content;
  40.     }
  41.     public function setContent(string $content): static
  42.     {
  43.         $this->content $content;
  44.         return $this;
  45.     }
  46.     public function isIsActive(): ?bool
  47.     {
  48.         return $this->isActive;
  49.     }
  50.     public function setIsActive(bool $isActive): static
  51.     {
  52.         $this->isActive $isActive;
  53.         return $this;
  54.     }
  55.     public function isRemainderForQuestionAnswer(): ?bool
  56.     {
  57.         return $this->remainderForQuestionAnswer;
  58.     }
  59.     public function setRemainderForQuestionAnswer(bool $remainderForQuestionAnswer): static
  60.     {
  61.         $this->remainderForQuestionAnswer $remainderForQuestionAnswer;
  62.         return $this;
  63.     }
  64.     public function isFirstRemainderForZoom(): ?bool
  65.     {
  66.         return $this->firstRemainderForZoom;
  67.     }
  68.     public function setFirstRemainderForZoom(bool $firstRemainderForZoom): static
  69.     {
  70.         $this->firstRemainderForZoom $firstRemainderForZoom;
  71.         return $this;
  72.     }
  73.     public function isSecondRemainderForZoom(): ?bool
  74.     {
  75.         return $this->secondRemainderForZoom;
  76.     }
  77.     public function setSecondRemainderForZoom(bool $secondRemainderForZoom): static
  78.     {
  79.         $this->secondRemainderForZoom $secondRemainderForZoom;
  80.         return $this;
  81.     }
  82.     public function isRemainderForInvoicePayment(): ?bool
  83.     {
  84.         return $this->remainderForInvoicePayment;
  85.     }
  86.     public function setRemainderForInvoicePayment(bool $remainderForInvoicePayment): static
  87.     {
  88.         $this->remainderForInvoicePayment $remainderForInvoicePayment;
  89.         return $this;
  90.     }
  91.     public function isFirstRemainderForFreeWebinar(): ?bool
  92.     {
  93.         return $this->firstRemainderForFreeWebinar;
  94.     }
  95.     public function setFirstRemainderForFreeWebinar(bool $firstRemainderForFreeWebinar): static
  96.     {
  97.         $this->firstRemainderForFreeWebinar $firstRemainderForFreeWebinar;
  98.         return $this;
  99.     }
  100.     public function isSecondRemainderForFreeWebinar(): ?bool
  101.     {
  102.         return $this->secondRemainderForFreeWebinar;
  103.     }
  104.     public function setSecondRemainderForFreeWebinar(bool $secondRemainderForFreeWebinar): static
  105.     {
  106.         $this->secondRemainderForFreeWebinar $secondRemainderForFreeWebinar;
  107.         return $this;
  108.     }
  109.     public function isFirstRemainderForKsef(): ?bool
  110.     {
  111.         return $this->firstRemainderForKsef;
  112.     }
  113.     public function setFirstRemainderForKsef(bool $firstRemainderForKsef): static
  114.     {
  115.         $this->firstRemainderForKsef $firstRemainderForKsef;
  116.         return $this;
  117.     }
  118.     public function isSecondRemainderForKsef(): ?bool
  119.     {
  120.         return $this->secondRemainderForKsef;
  121.     }
  122.     public function setSecondRemainderForKsef(bool $secondRemainderForKsef): static
  123.     {
  124.         $this->secondRemainderForKsef $secondRemainderForKsef;
  125.         return $this;
  126.     }
  127. }