<?php
namespace App\Entity;
use App\Repository\PipelineMailjetGlobalRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: PipelineMailjetGlobalRepository::class)]
class PipelineMailjetGlobal
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineMailjetGlobalDevs')]
private $trelloListDev;
#[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineMailjetGlobalClientReturns')]
private $trelloListClientReturn;
#[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineMailjetGlobalOnlines')]
private $trelloListOnline;
#[ORM\Column(type: 'string', length: 255)]
private $tagDev;
public function getId(): ?int
{
return $this->id;
}
public function getTrelloListDev(): ?TrelloList
{
return $this->trelloListDev;
}
public function setTrelloListDev(?TrelloList $trelloListDev): self
{
$this->trelloListDev = $trelloListDev;
return $this;
}
public function getTrelloListClientReturn(): ?TrelloList
{
return $this->trelloListClientReturn;
}
public function setTrelloListClientReturn(?TrelloList $trelloListClientReturn): self
{
$this->trelloListClientReturn = $trelloListClientReturn;
return $this;
}
public function getTrelloListOnline(): ?TrelloList
{
return $this->trelloListOnline;
}
public function setTrelloListOnline(?TrelloList $trelloListOnline): self
{
$this->trelloListOnline = $trelloListOnline;
return $this;
}
public function getTagDev(): ?string
{
return $this->tagDev;
}
public function setTagDev(string $tagDev): self
{
$this->tagDev = $tagDev;
return $this;
}
}