<?php
namespace App\Entity;
use App\Repository\VimeoVideoRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: VimeoVideoRepository::class)]
class VimeoVideo
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(type: Types::TEXT)]
private ?string $title = null;
#[ORM\Column(type: Types::TEXT)]
private ?string $preview_image = null;
#[ORM\Column(type: Types::TEXT)]
private ?string $link = null;
#[ORM\OneToOne(inversedBy: 'vimeoVideo', cascade: ['persist', 'remove'])]
#[ORM\JoinColumn(nullable: false)]
private ?DeliverableVersions $livrable_version = null;
public function getId(): ?int
{
return $this->id;
}
public function getTitle(): ?string
{
return $this->title;
}
public function setTitle(string $title): self
{
$this->title = $title;
return $this;
}
public function getPreviewImage(): ?string
{
return $this->preview_image;
}
public function setPreviewImage(string $preview_image): self
{
$this->preview_image = $preview_image;
return $this;
}
public function getLink(): ?string
{
return $this->link;
}
public function setLink(string $link): self
{
$this->link = $link;
return $this;
}
public function getLivrableVersion(): ?DeliverableVersions
{
return $this->livrable_version;
}
public function setLivrableVersion(DeliverableVersions $livrable_version): self
{
$this->livrable_version = $livrable_version;
return $this;
}
}