src/Entity/ChatAssistant.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ChatAssistantRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6. * @ORM\Entity(repositoryClass=ChatAssistantRepository::class)
  7. */
  8. class ChatAssistant
  9. {
  10. /**
  11. * @ORM\Id
  12. * @ORM\GeneratedValue
  13. * @ORM\Column(type="integer")
  14. */
  15. private $id;
  16. /**
  17. * @ORM\Column(type="string", length=255, nullable=true)
  18. */
  19. private $tidioUrl;
  20. public function getId(): ?int
  21. {
  22. return $this->id;
  23. }
  24. public function setId(int $id): self
  25. {
  26. $this->id = $id;
  27. return $this;
  28. }
  29. public function getTidioUrl(): ?string
  30. {
  31. return $this->tidioUrl;
  32. }
  33. public function setTidioUrl(?string $tidioUrl): self
  34. {
  35. $this->tidioUrl = $tidioUrl;
  36. return $this;
  37. }
  38. }