src/Entity/SiteGoogleTagManager.php line 9

Open in your IDE?
  1. <?php
  2. namespace Acme\SudcmsBundle\Entity;
  3. use Acme\SudcmsBundle\Repository\SiteGoogleTagManagerRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassSiteGoogleTagManagerRepository::class)]
  6. class SiteGoogleTagManager
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'integer')]
  13.     private $siteUid;
  14.     #[ORM\Column(type'string'length255)]
  15.     private $keyGtm;
  16.     #[ORM\Column(type'string'length255nullabletrue)]
  17.     private $axeptioClientId;
  18.     #[ORM\Column(type'string'length255nullabletrue)]
  19.     private $axeptioCookiesVersion;
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getSiteUid(): ?int
  25.     {
  26.         return $this->siteUid;
  27.     }
  28.     public function setSiteUid(int $siteUid): self
  29.     {
  30.         $this->siteUid $siteUid;
  31.         return $this;
  32.     }
  33.     public function getKeyGtm(): ?string
  34.     {
  35.         return $this->keyGtm;
  36.     }
  37.     public function setKeyGtm(string $keyGtm): self
  38.     {
  39.         $this->keyGtm $keyGtm;
  40.         return $this;
  41.     }
  42.     public function getAxeptioClientId(): ?string
  43.     {
  44.         return $this->axeptioClientId;
  45.     }
  46.     public function setAxeptioClientId(?string $axeptioClientId): self
  47.     {
  48.         $this->axeptioClientId $axeptioClientId;
  49.         return $this;
  50.     }
  51.     public function getAxeptioCookiesVersion(): ?string
  52.     {
  53.         return $this->axeptioCookiesVersion;
  54.     }
  55.     public function setAxeptioCookiesVersion(?string $axeptioCookiesVersion): self
  56.     {
  57.         $this->axeptioCookiesVersion $axeptioCookiesVersion;
  58.         return $this;
  59.     }
  60. }