src/Entity/Logs/CustomerExternalReferer.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Logs;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * CustomerExternalReferer
  6.  *
  7.  * @ORM\Table
  8.  *
  9.  * @ORM\Entity(repositoryClass="App\Repository\Logs\CustomerExternalRefererRepository")
  10.  */
  11. class CustomerExternalReferer
  12. {
  13.     /**
  14.      * @var int
  15.      *
  16.      * @ORM\Id
  17.      *
  18.      * @ORM\GeneratedValue(strategy="AUTO")
  19.      *
  20.      * @ORM\Column(type="integer")
  21.      */
  22.     private $id;
  23.     /**
  24.      * @var int|null
  25.      *
  26.      * @ORM\Column(type="integer", nullable=true)
  27.      */
  28.     private $customerId;
  29.     /**
  30.      * @var string
  31.      *
  32.      * @ORM\Column(type="string", nullable=false)
  33.      */
  34.     private $bbidm;
  35.     /**
  36.      * @var string|null
  37.      *
  38.      * @ORM\Column(type="string", nullable=true)
  39.      */
  40.     private $languageIsoCode;
  41.     /**
  42.      * @var string|null
  43.      *
  44.      * @ORM\Column(type="text", nullable=true)
  45.      */
  46.     private $refererUrl;
  47.     /**
  48.      * @var string|null
  49.      *
  50.      * @ORM\Column(type="string", nullable=true)
  51.      */
  52.     private $gadwMatchtype;
  53.     /**
  54.      * @var string|null
  55.      *
  56.      * @ORM\Column(type="string", nullable=true, length=40)
  57.      */
  58.     private $gadwNetwork;
  59.     /**
  60.      * @var string|null
  61.      *
  62.      * @ORM\Column(type="string", nullable=true, length=40)
  63.      */
  64.     private $gadwKeyword;
  65.     /**
  66.      * @var string|null
  67.      *
  68.      * @ORM\Column(type="string", nullable=true, length=40)
  69.      */
  70.     private $utmSource;
  71.     /**
  72.      * @var string|null
  73.      *
  74.      * @ORM\Column(type="string", nullable=true, length=40)
  75.      */
  76.     private $utmMedium;
  77.     /**
  78.      * @var string|null
  79.      *
  80.      * @ORM\Column(type="string", nullable=true, length=40)
  81.      */
  82.     private $utmCampaign;
  83.     /**
  84.      * @var \DateTime|null
  85.      *
  86.      * @ORM\Column(type="datetime", nullable=true)
  87.      */
  88.     private $dateAdd;
  89.     /**
  90.      * @var string|null
  91.      *
  92.      * @ORM\Column(type="string", nullable=true)
  93.      */
  94.     private $gclid;
  95.     /**
  96.      * @var string|null
  97.      *
  98.      * @ORM\Column(type="string", nullable=true)
  99.      */
  100.     private $fblid;
  101.     /**
  102.      * @ORM\Column(name="utm_id", type="string", nullable=true, length=40)
  103.      */
  104.     private ?string $utmId null;
  105.     /**
  106.      * @ORM\Column(name="utm_content", type="string", nullable=true, length=40)
  107.      */
  108.     private ?string $utmContent null;
  109.     /**
  110.      * @ORM\Column(name="tapfiliate", type="text", nullable=true)
  111.      */
  112.     private ?string $tapfiliate;
  113.     public function getId(): ?int
  114.     {
  115.         return $this->id;
  116.     }
  117.     public function setId(int $id): CustomerExternalReferer
  118.     {
  119.         $this->id $id;
  120.         return $this;
  121.     }
  122.     public function getCustomerId(): ?int
  123.     {
  124.         return $this->customerId;
  125.     }
  126.     public function setCustomerId(?int $customerId): CustomerExternalReferer
  127.     {
  128.         $this->customerId $customerId;
  129.         return $this;
  130.     }
  131.     public function getLanguageIsoCode(): ?string
  132.     {
  133.         return $this->languageIsoCode;
  134.     }
  135.     public function setLanguageIsoCode(?string $languageIsoCode): CustomerExternalReferer
  136.     {
  137.         $this->languageIsoCode $languageIsoCode;
  138.         return $this;
  139.     }
  140.     public function getRefererUrl(): ?string
  141.     {
  142.         return $this->refererUrl;
  143.     }
  144.     public function setRefererUrl(?string $refererUrl): CustomerExternalReferer
  145.     {
  146.         $this->refererUrl $refererUrl;
  147.         return $this;
  148.     }
  149.     public function getGadwMatchtype(): ?string
  150.     {
  151.         return $this->gadwMatchtype;
  152.     }
  153.     public function setGadwMatchtype(?string $gadwMatchtype): CustomerExternalReferer
  154.     {
  155.         $this->gadwMatchtype $gadwMatchtype;
  156.         return $this;
  157.     }
  158.     public function getGadwNetwork(): ?string
  159.     {
  160.         return $this->gadwNetwork;
  161.     }
  162.     public function setGadwNetwork(?string $gadwNetwork): CustomerExternalReferer
  163.     {
  164.         $this->gadwNetwork $gadwNetwork;
  165.         return $this;
  166.     }
  167.     public function getGadwKeyword(): ?string
  168.     {
  169.         return $this->gadwKeyword;
  170.     }
  171.     public function setGadwKeyword(?string $gadwKeyword): CustomerExternalReferer
  172.     {
  173.         $this->gadwKeyword $gadwKeyword;
  174.         return $this;
  175.     }
  176.     public function getUtmSource(): ?string
  177.     {
  178.         return $this->utmSource;
  179.     }
  180.     public function setUtmSource(?string $utmSource): CustomerExternalReferer
  181.     {
  182.         $this->utmSource $utmSource;
  183.         return $this;
  184.     }
  185.     public function getUtmMedium(): ?string
  186.     {
  187.         return $this->utmMedium;
  188.     }
  189.     public function setUtmMedium(?string $utmMedium): CustomerExternalReferer
  190.     {
  191.         $this->utmMedium $utmMedium;
  192.         return $this;
  193.     }
  194.     public function getUtmCampaign(): ?string
  195.     {
  196.         return $this->utmCampaign;
  197.     }
  198.     public function setUtmCampaign(?string $utmCampaign): CustomerExternalReferer
  199.     {
  200.         $this->utmCampaign $utmCampaign;
  201.         return $this;
  202.     }
  203.     public function getDateAdd(): ?\DateTime
  204.     {
  205.         return $this->dateAdd;
  206.     }
  207.     public function setDateAdd(?\DateTime $dateAdd): CustomerExternalReferer
  208.     {
  209.         $this->dateAdd $dateAdd;
  210.         return $this;
  211.     }
  212.     public function getGclid(): ?string
  213.     {
  214.         return $this->gclid;
  215.     }
  216.     public function setGclid(?string $gclid): CustomerExternalReferer
  217.     {
  218.         $this->gclid $gclid;
  219.         return $this;
  220.     }
  221.     public function getFblid(): ?string
  222.     {
  223.         return $this->fblid;
  224.     }
  225.     public function setFblid(?string $fblid): CustomerExternalReferer
  226.     {
  227.         $this->fblid $fblid;
  228.         return $this;
  229.     }
  230.     public function getBbidm(): string
  231.     {
  232.         return $this->bbidm;
  233.     }
  234.     public function setBbidm(string $bbidm): CustomerExternalReferer
  235.     {
  236.         $this->bbidm $bbidm;
  237.         return $this;
  238.     }
  239.     public function getUtmId(): ?string
  240.     {
  241.         return $this->utmId;
  242.     }
  243.     public function setUtmId(?string $utmId): CustomerExternalReferer
  244.     {
  245.         $this->utmId $utmId;
  246.         return $this;
  247.     }
  248.     public function getUtmContent(): ?string
  249.     {
  250.         return $this->utmContent;
  251.     }
  252.     public function setUtmContent(?string $utmContent): CustomerExternalReferer
  253.     {
  254.         $this->utmContent $utmContent;
  255.         return $this;
  256.     }
  257.     public function getTapfiliate(): ?string
  258.     {
  259.         return $this->tapfiliate;
  260.     }
  261.     public function setTapfiliate(?string $tapfiliate): CustomerExternalReferer
  262.     {
  263.         $this->tapfiliate $tapfiliate;
  264.         return $this;
  265.     }
  266. }