src/Entity/CustomerNotification.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CustomerNotificationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassCustomerNotificationRepository::class)]
  6. class CustomerNotification
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column]
  13.     private ?bool $customerNotificationBeforeContractAutomaticActivated null;
  14.     #[ORM\Column]
  15.     private ?bool $customerNotificationAfterContractAutomaticActivated null;
  16.     #[ORM\Column()]
  17.     private ?bool $customerNotificationContractResetToDraft null;
  18.     #[ORM\Column]
  19.     private ?bool $customerNotificationNewBooking null;
  20.     #[ORM\Column]
  21.     private ?bool $customerNotificationSponsorHasAcceptedContract null;
  22.     #[ORM\Column]
  23.     private ?bool $customerNotificationSponsorHasRejectedContract null;
  24.     #[ORM\Column]
  25.     private ?bool $customerNotificationUnsentInvoice null;
  26.     #[ORM\Column]
  27.     private ?bool $customerNotificationContractsInDraft null;
  28.     #[ORM\Column]
  29.     private ?bool $customerGetCopyOfInvoice null;
  30.     #[ORM\Column]
  31.     private ?bool $customerGetCopyOfContractCancelable null;
  32.     #[ORM\Column]
  33.     private ?bool $customerGetCopyOfSponsorNotificationContractExtended null;
  34.     #[ORM\Column]
  35.     private ?bool $customerGetCopyOfSponsorContractCancelledConfirmation null;
  36.     #[ORM\Column]
  37.     private ?bool $customerGetCopyOfSponsorNotificationContractOutdated null;
  38.     #[ORM\Column]
  39.     private ?bool $sponsorNotificationContractCancelable null;
  40.     #[ORM\Column]
  41.     private ?bool $sponsorNotificationNewBooking null;
  42.     #[ORM\Column]
  43.     private ?bool $sponsorNotificationContractDraft null;
  44.     #[ORM\Column]
  45.     private ?bool $sponsorNotificationInvoice null;
  46.     #[ORM\Column]
  47.     private ?bool $sponsorNotificationContractConfirmation null;
  48.     #[ORM\Column]
  49.     private ?bool $sponsorNotificationContractExtended null;
  50.     #[ORM\Column]
  51.     private ?bool $sponsorContractCancelledConfirmation null;
  52.     #[ORM\Column]
  53.     private ?bool $sponsorNotificationContractOutdated null;
  54.     public function getId(): ?int
  55.     {
  56.         return $this->id;
  57.     }
  58.     public function isCustomerNotificationBeforeContractAutomaticActivated(): ?bool
  59.     {
  60.         return $this->customerNotificationBeforeContractAutomaticActivated;
  61.     }
  62.     public function setCustomerNotificationBeforeContractAutomaticActivated(bool $customerNotificationBeforeContractAutomaticActivated): self
  63.     {
  64.         $this->customerNotificationBeforeContractAutomaticActivated $customerNotificationBeforeContractAutomaticActivated;
  65.         return $this;
  66.     }
  67.     public function isCustomerNotificationAfterContractAutomaticActivated(): ?bool
  68.     {
  69.         return $this->customerNotificationAfterContractAutomaticActivated;
  70.     }
  71.     public function setCustomerNotificationAfterContractAutomaticActivated(
  72.         bool $customerNotificationAfterContractAutomaticActivated
  73.     ): self {
  74.         $this->customerNotificationAfterContractAutomaticActivated $customerNotificationAfterContractAutomaticActivated;
  75.         return $this;
  76.     }
  77.     public function isCustomerNotificationContractResetToDraft(): ?bool
  78.     {
  79.         return $this->customerNotificationContractResetToDraft;
  80.     }
  81.     public function setCustomerNotificationContractResetToDraft(bool $customerNotificationContractResetToDraft): self
  82.     {
  83.         $this->customerNotificationContractResetToDraft $customerNotificationContractResetToDraft;
  84.         return $this;
  85.     }
  86.     public function isCustomerNotificationNewBooking(): ?bool
  87.     {
  88.         return $this->customerNotificationNewBooking;
  89.     }
  90.     public function setCustomerNotificationNewBooking(bool $customerNotificationNewBooking): self
  91.     {
  92.         $this->customerNotificationNewBooking $customerNotificationNewBooking;
  93.         return $this;
  94.     }
  95.     public function isCustomerNotificationSponsorHasAcceptedContract(): ?bool
  96.     {
  97.         return $this->customerNotificationSponsorHasAcceptedContract;
  98.     }
  99.     public function setCustomerNotificationSponsorHasAcceptedContract(bool $customerNotificationSponsorHasAcceptedContract): self
  100.     {
  101.         $this->customerNotificationSponsorHasAcceptedContract $customerNotificationSponsorHasAcceptedContract;
  102.         return $this;
  103.     }
  104.     public function isCustomerNotificationUnsentInvoice(): ?bool
  105.     {
  106.         return $this->customerNotificationUnsentInvoice;
  107.     }
  108.     public function setCustomerNotificationUnsentInvoice(bool $customerNotificationUnsentInvoice): self
  109.     {
  110.         $this->customerNotificationUnsentInvoice $customerNotificationUnsentInvoice;
  111.         return $this;
  112.     }
  113.     public function isCustomerNotificationContractsInDraft(): ?bool
  114.     {
  115.         return $this->customerNotificationContractsInDraft;
  116.     }
  117.     public function setCustomerNotificationContractsInDraft(bool $customerNotificationContractsInDraft): self
  118.     {
  119.         $this->customerNotificationContractsInDraft $customerNotificationContractsInDraft;
  120.         return $this;
  121.     }
  122.     public function isCustomerNotificationSponsorHasRejectedContract(): ?bool
  123.     {
  124.         return $this->customerNotificationSponsorHasRejectedContract;
  125.     }
  126.     public function setCustomerNotificationSponsorHasRejectedContract(bool $customerNotificationSponsorHasRejectedContract): self
  127.     {
  128.         $this->customerNotificationSponsorHasRejectedContract $customerNotificationSponsorHasRejectedContract;
  129.         return $this;
  130.     }
  131.     public function isCustomerGetCopyOfInvoice(): ?bool
  132.     {
  133.         return $this->customerGetCopyOfInvoice;
  134.     }
  135.     public function setCustomerGetCopyOfInvoice(bool $customerGetCopyOfInvoice): self
  136.     {
  137.         $this->customerGetCopyOfInvoice $customerGetCopyOfInvoice;
  138.         return $this;
  139.     }
  140.     public function isSponsorNotificationContractCancelable(): ?bool
  141.     {
  142.         return $this->sponsorNotificationContractCancelable;
  143.     }
  144.     public function setSponsorNotificationContractCancelable(bool $sponsorNotificationContractCancelable): self
  145.     {
  146.         $this->sponsorNotificationContractCancelable $sponsorNotificationContractCancelable;
  147.         return $this;
  148.     }
  149.     public function isCustomerGetCopyOfContractCancelable(): ?bool
  150.     {
  151.         return $this->customerGetCopyOfContractCancelable;
  152.     }
  153.     public function setCustomerGetCopyOfContractCancelable(bool $customerGetCopyOfContractCancelable): self
  154.     {
  155.         $this->customerGetCopyOfContractCancelable $customerGetCopyOfContractCancelable;
  156.         return $this;
  157.     }
  158.     public function isSponsorNotificationNewBooking(): ?bool
  159.     {
  160.         return $this->sponsorNotificationNewBooking;
  161.     }
  162.     public function setSponsorNotificationNewBooking(bool $sponsorNotificationNewBooking): self
  163.     {
  164.         $this->sponsorNotificationNewBooking $sponsorNotificationNewBooking;
  165.         return $this;
  166.     }
  167.     public function isSponsorNotificationContractDraft(): ?bool
  168.     {
  169.         return $this->sponsorNotificationContractDraft;
  170.     }
  171.     public function setSponsorNotificationContractDraft(bool $sponsorNotificationContractDraft): self
  172.     {
  173.         $this->sponsorNotificationContractDraft $sponsorNotificationContractDraft;
  174.         return $this;
  175.     }
  176.     public function isSponsorNotificationInvoice(): ?bool
  177.     {
  178.         return $this->sponsorNotificationInvoice;
  179.     }
  180.     public function setSponsorNotificationInvoice(bool $sponsorNotificationInvoice): self
  181.     {
  182.         $this->sponsorNotificationInvoice $sponsorNotificationInvoice;
  183.         return $this;
  184.     }
  185.     public function isSponsorNotificationContractConfirmation(): ?bool
  186.     {
  187.         return $this->sponsorNotificationContractConfirmation;
  188.     }
  189.     public function setSponsorNotificationContractConfirmation(bool $sponsorNotificationContractConfirmation): self
  190.     {
  191.         $this->sponsorNotificationContractConfirmation $sponsorNotificationContractConfirmation;
  192.         return $this;
  193.     }
  194.     public function isSponsorNotificationContractExtended(): ?bool
  195.     {
  196.         return $this->sponsorNotificationContractExtended;
  197.     }
  198.     public function setSponsorNotificationContractExtended(bool $sponsorNotificationContractExtended): self
  199.     {
  200.         $this->sponsorNotificationContractExtended $sponsorNotificationContractExtended;
  201.         return $this;
  202.     }
  203.     public function isCustomerGetCopyOfSponsorNotificationContractExtended(): ?bool
  204.     {
  205.         return $this->customerGetCopyOfSponsorNotificationContractExtended;
  206.     }
  207.     public function setCustomerGetCopyOfSponsorNotificationContractExtended(bool $customerGetCopyOfSponsorNotificationContractExtended): self
  208.     {
  209.         $this->customerGetCopyOfSponsorNotificationContractExtended $customerGetCopyOfSponsorNotificationContractExtended;
  210.         return $this;
  211.     }
  212.     public function isSponsorContractCancelledConfirmation(): ?bool
  213.     {
  214.         return $this->sponsorContractCancelledConfirmation;
  215.     }
  216.     public function setSponsorContractCancelledConfirmation(bool $sponsorContractCancelledConfirmation): self
  217.     {
  218.         $this->sponsorContractCancelledConfirmation $sponsorContractCancelledConfirmation;
  219.         return $this;
  220.     }
  221.     public function isCustomerGetCopyOfSponsorContractCancelledConfirmation(): ?bool
  222.     {
  223.         return $this->customerGetCopyOfSponsorContractCancelledConfirmation;
  224.     }
  225.     public function setCustomerGetCopyOfSponsorContractCancelledConfirmation(bool $customerGetCopyOfSponsorContractCancelledConfirmation): self
  226.     {
  227.         $this->customerGetCopyOfSponsorContractCancelledConfirmation $customerGetCopyOfSponsorContractCancelledConfirmation;
  228.         return $this;
  229.     }
  230.     public function isSponsorNotificationContractOutdated(): ?bool
  231.     {
  232.         return $this->sponsorNotificationContractOutdated;
  233.     }
  234.     public function setSponsorNotificationContractOutdated(bool $sponsorNotificationContractOutdated): self
  235.     {
  236.         $this->sponsorNotificationContractOutdated $sponsorNotificationContractOutdated;
  237.         return $this;
  238.     }
  239.     public function isCustomerGetCopyOfSponsorNotificationContractOutdated(): ?bool
  240.     {
  241.         return $this->customerGetCopyOfSponsorNotificationContractOutdated;
  242.     }
  243.     public function setCustomerGetCopyOfSponsorNotificationContractOutdated(bool $customerGetCopyOfSponsorNotificationContractOutdated): self
  244.     {
  245.         $this->customerGetCopyOfSponsorNotificationContractOutdated $customerGetCopyOfSponsorNotificationContractOutdated;
  246.         return $this;
  247.     }
  248. }