<?php
namespace App\Entity;
use App\Repository\CustomerNotificationRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: CustomerNotificationRepository::class)]
class CustomerNotification
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column]
private ?bool $customerNotificationBeforeContractAutomaticActivated = null;
#[ORM\Column]
private ?bool $customerNotificationAfterContractAutomaticActivated = null;
#[ORM\Column()]
private ?bool $customerNotificationContractResetToDraft = null;
#[ORM\Column]
private ?bool $customerNotificationNewBooking = null;
#[ORM\Column]
private ?bool $customerNotificationSponsorHasAcceptedContract = null;
#[ORM\Column]
private ?bool $customerNotificationSponsorHasRejectedContract = null;
#[ORM\Column]
private ?bool $customerNotificationUnsentInvoice = null;
#[ORM\Column]
private ?bool $customerNotificationContractsInDraft = null;
#[ORM\Column]
private ?bool $customerGetCopyOfInvoice = null;
#[ORM\Column]
private ?bool $customerGetCopyOfContractCancelable = null;
#[ORM\Column]
private ?bool $customerGetCopyOfSponsorNotificationContractExtended = null;
#[ORM\Column]
private ?bool $customerGetCopyOfSponsorContractCancelledConfirmation = null;
#[ORM\Column]
private ?bool $customerGetCopyOfSponsorNotificationContractOutdated = null;
#[ORM\Column]
private ?bool $sponsorNotificationContractCancelable = null;
#[ORM\Column]
private ?bool $sponsorNotificationNewBooking = null;
#[ORM\Column]
private ?bool $sponsorNotificationContractDraft = null;
#[ORM\Column]
private ?bool $sponsorNotificationInvoice = null;
#[ORM\Column]
private ?bool $sponsorNotificationContractConfirmation = null;
#[ORM\Column]
private ?bool $sponsorNotificationContractExtended = null;
#[ORM\Column]
private ?bool $sponsorContractCancelledConfirmation = null;
#[ORM\Column]
private ?bool $sponsorNotificationContractOutdated = null;
public function getId(): ?int
{
return $this->id;
}
public function isCustomerNotificationBeforeContractAutomaticActivated(): ?bool
{
return $this->customerNotificationBeforeContractAutomaticActivated;
}
public function setCustomerNotificationBeforeContractAutomaticActivated(bool $customerNotificationBeforeContractAutomaticActivated): self
{
$this->customerNotificationBeforeContractAutomaticActivated = $customerNotificationBeforeContractAutomaticActivated;
return $this;
}
public function isCustomerNotificationAfterContractAutomaticActivated(): ?bool
{
return $this->customerNotificationAfterContractAutomaticActivated;
}
public function setCustomerNotificationAfterContractAutomaticActivated(
bool $customerNotificationAfterContractAutomaticActivated
): self {
$this->customerNotificationAfterContractAutomaticActivated = $customerNotificationAfterContractAutomaticActivated;
return $this;
}
public function isCustomerNotificationContractResetToDraft(): ?bool
{
return $this->customerNotificationContractResetToDraft;
}
public function setCustomerNotificationContractResetToDraft(bool $customerNotificationContractResetToDraft): self
{
$this->customerNotificationContractResetToDraft = $customerNotificationContractResetToDraft;
return $this;
}
public function isCustomerNotificationNewBooking(): ?bool
{
return $this->customerNotificationNewBooking;
}
public function setCustomerNotificationNewBooking(bool $customerNotificationNewBooking): self
{
$this->customerNotificationNewBooking = $customerNotificationNewBooking;
return $this;
}
public function isCustomerNotificationSponsorHasAcceptedContract(): ?bool
{
return $this->customerNotificationSponsorHasAcceptedContract;
}
public function setCustomerNotificationSponsorHasAcceptedContract(bool $customerNotificationSponsorHasAcceptedContract): self
{
$this->customerNotificationSponsorHasAcceptedContract = $customerNotificationSponsorHasAcceptedContract;
return $this;
}
public function isCustomerNotificationUnsentInvoice(): ?bool
{
return $this->customerNotificationUnsentInvoice;
}
public function setCustomerNotificationUnsentInvoice(bool $customerNotificationUnsentInvoice): self
{
$this->customerNotificationUnsentInvoice = $customerNotificationUnsentInvoice;
return $this;
}
public function isCustomerNotificationContractsInDraft(): ?bool
{
return $this->customerNotificationContractsInDraft;
}
public function setCustomerNotificationContractsInDraft(bool $customerNotificationContractsInDraft): self
{
$this->customerNotificationContractsInDraft = $customerNotificationContractsInDraft;
return $this;
}
public function isCustomerNotificationSponsorHasRejectedContract(): ?bool
{
return $this->customerNotificationSponsorHasRejectedContract;
}
public function setCustomerNotificationSponsorHasRejectedContract(bool $customerNotificationSponsorHasRejectedContract): self
{
$this->customerNotificationSponsorHasRejectedContract = $customerNotificationSponsorHasRejectedContract;
return $this;
}
public function isCustomerGetCopyOfInvoice(): ?bool
{
return $this->customerGetCopyOfInvoice;
}
public function setCustomerGetCopyOfInvoice(bool $customerGetCopyOfInvoice): self
{
$this->customerGetCopyOfInvoice = $customerGetCopyOfInvoice;
return $this;
}
public function isSponsorNotificationContractCancelable(): ?bool
{
return $this->sponsorNotificationContractCancelable;
}
public function setSponsorNotificationContractCancelable(bool $sponsorNotificationContractCancelable): self
{
$this->sponsorNotificationContractCancelable = $sponsorNotificationContractCancelable;
return $this;
}
public function isCustomerGetCopyOfContractCancelable(): ?bool
{
return $this->customerGetCopyOfContractCancelable;
}
public function setCustomerGetCopyOfContractCancelable(bool $customerGetCopyOfContractCancelable): self
{
$this->customerGetCopyOfContractCancelable = $customerGetCopyOfContractCancelable;
return $this;
}
public function isSponsorNotificationNewBooking(): ?bool
{
return $this->sponsorNotificationNewBooking;
}
public function setSponsorNotificationNewBooking(bool $sponsorNotificationNewBooking): self
{
$this->sponsorNotificationNewBooking = $sponsorNotificationNewBooking;
return $this;
}
public function isSponsorNotificationContractDraft(): ?bool
{
return $this->sponsorNotificationContractDraft;
}
public function setSponsorNotificationContractDraft(bool $sponsorNotificationContractDraft): self
{
$this->sponsorNotificationContractDraft = $sponsorNotificationContractDraft;
return $this;
}
public function isSponsorNotificationInvoice(): ?bool
{
return $this->sponsorNotificationInvoice;
}
public function setSponsorNotificationInvoice(bool $sponsorNotificationInvoice): self
{
$this->sponsorNotificationInvoice = $sponsorNotificationInvoice;
return $this;
}
public function isSponsorNotificationContractConfirmation(): ?bool
{
return $this->sponsorNotificationContractConfirmation;
}
public function setSponsorNotificationContractConfirmation(bool $sponsorNotificationContractConfirmation): self
{
$this->sponsorNotificationContractConfirmation = $sponsorNotificationContractConfirmation;
return $this;
}
public function isSponsorNotificationContractExtended(): ?bool
{
return $this->sponsorNotificationContractExtended;
}
public function setSponsorNotificationContractExtended(bool $sponsorNotificationContractExtended): self
{
$this->sponsorNotificationContractExtended = $sponsorNotificationContractExtended;
return $this;
}
public function isCustomerGetCopyOfSponsorNotificationContractExtended(): ?bool
{
return $this->customerGetCopyOfSponsorNotificationContractExtended;
}
public function setCustomerGetCopyOfSponsorNotificationContractExtended(bool $customerGetCopyOfSponsorNotificationContractExtended): self
{
$this->customerGetCopyOfSponsorNotificationContractExtended = $customerGetCopyOfSponsorNotificationContractExtended;
return $this;
}
public function isSponsorContractCancelledConfirmation(): ?bool
{
return $this->sponsorContractCancelledConfirmation;
}
public function setSponsorContractCancelledConfirmation(bool $sponsorContractCancelledConfirmation): self
{
$this->sponsorContractCancelledConfirmation = $sponsorContractCancelledConfirmation;
return $this;
}
public function isCustomerGetCopyOfSponsorContractCancelledConfirmation(): ?bool
{
return $this->customerGetCopyOfSponsorContractCancelledConfirmation;
}
public function setCustomerGetCopyOfSponsorContractCancelledConfirmation(bool $customerGetCopyOfSponsorContractCancelledConfirmation): self
{
$this->customerGetCopyOfSponsorContractCancelledConfirmation = $customerGetCopyOfSponsorContractCancelledConfirmation;
return $this;
}
public function isSponsorNotificationContractOutdated(): ?bool
{
return $this->sponsorNotificationContractOutdated;
}
public function setSponsorNotificationContractOutdated(bool $sponsorNotificationContractOutdated): self
{
$this->sponsorNotificationContractOutdated = $sponsorNotificationContractOutdated;
return $this;
}
public function isCustomerGetCopyOfSponsorNotificationContractOutdated(): ?bool
{
return $this->customerGetCopyOfSponsorNotificationContractOutdated;
}
public function setCustomerGetCopyOfSponsorNotificationContractOutdated(bool $customerGetCopyOfSponsorNotificationContractOutdated): self
{
$this->customerGetCopyOfSponsorNotificationContractOutdated = $customerGetCopyOfSponsorNotificationContractOutdated;
return $this;
}
}