<?php
namespace Nellapp\Bundle\SDKBundle\Google\Entity;
use Nellapp\Bundle\SDKBundle\Google\Entity\GoogleDriveItem\GoogleDriveItem;
use Doctrine\ORM\Mapping as ORM;
use Nellapp\Bundle\SDKBundle\Google\Repository\GoogleDriveFileRepository;
#[ORM\Entity(repositoryClass: GoogleDriveFileRepository::class)]
#[ORM\Table(name: 'google_drive_file')]
class GoogleDriveFile extends GoogleDriveItem
{
#[ORM\Column(type: 'string', length: 255, nullable: false)]
private ?string $googleType = null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $innerType = null;
public function getGoogleType(): ?string
{
return $this->googleType;
}
public function setGoogleType(?string $googleType): GoogleDriveFile
{
$this->googleType = $googleType;
return $this;
}
public function getInnerType(): ?string
{
return $this->innerType;
}
public function setInnerType(?string $innerType): GoogleDriveFile
{
$this->innerType = $innerType;
return $this;
}
}