<?php
namespace App\Entity;
use App\Repository\ChatAssistantRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=ChatAssistantRepository::class)
*/
class ChatAssistant
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $tidioUrl;
public function getId(): ?int
{
return $this->id;
}
public function setId(int $id): self
{
$this->id = $id;
return $this;
}
public function getTidioUrl(): ?string
{
return $this->tidioUrl;
}
public function setTidioUrl(?string $tidioUrl): self
{
$this->tidioUrl = $tidioUrl;
return $this;
}
}