<?php
namespace Acme\SudcmsBundle\Entity;
use Acme\SudcmsBundle\Repository\SiteGoogleTagManagerRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: SiteGoogleTagManagerRepository::class)]
class SiteGoogleTagManager
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'integer')]
private $siteUid;
#[ORM\Column(type: 'string', length: 255)]
private $keyGtm;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $axeptioClientId;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $axeptioCookiesVersion;
public function getId(): ?int
{
return $this->id;
}
public function getSiteUid(): ?int
{
return $this->siteUid;
}
public function setSiteUid(int $siteUid): self
{
$this->siteUid = $siteUid;
return $this;
}
public function getKeyGtm(): ?string
{
return $this->keyGtm;
}
public function setKeyGtm(string $keyGtm): self
{
$this->keyGtm = $keyGtm;
return $this;
}
public function getAxeptioClientId(): ?string
{
return $this->axeptioClientId;
}
public function setAxeptioClientId(?string $axeptioClientId): self
{
$this->axeptioClientId = $axeptioClientId;
return $this;
}
public function getAxeptioCookiesVersion(): ?string
{
return $this->axeptioCookiesVersion;
}
public function setAxeptioCookiesVersion(?string $axeptioCookiesVersion): self
{
$this->axeptioCookiesVersion = $axeptioCookiesVersion;
return $this;
}
}