<?php
namespace Nellapp\Bundle\SDKBundle\Google\Entity\GoogleExportedData;
use Doctrine\ORM\Mapping as ORM;
use Nellapp\Bundle\SDKBundle\Google\Entity\GoogleDriveFile;
#[ORM\Entity]
#[ORM\Table(name: 'google_exported_data')]
class GoogleExportedData implements GoogleExportedDataInterface
{
use GoogleExportedMethodeTrait;
#[ORM\Column(type: 'integer'), ORM\GeneratedValue, ORM\Id]
private ?int $id = null;
#[ORM\Column(type: 'integer', nullable: false)]
private ?int $rowNumber = null;
#[ORM\ManyToOne(targetEntity: GoogleDriveFile::class)]
#[ORM\JoinColumn(nullable: false, onDelete: 'CASCADE')]
private ?GoogleDriveFile $googleDriveFile = null;
}