<?phpnamespace App\Entity;use ApiPlatform\Metadata\ApiResource;use App\Repository\LepDiiaSettingRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;use ApiPlatform\Metadata\Get;use ApiPlatform\Metadata\Post;use ApiPlatform\Metadata\Put;use ApiPlatform\Metadata\Delete;#[ORM\Entity(repositoryClass: LepDiiaSettingRepository::class)]#[ApiResource]class LepDiiaSetting{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(length: 12, nullable: true)] private ?string $sessionTime = null; #[ORM\Column(length: 1600, nullable: true)] private ?string $sessionToken = null; #[ORM\Column(length: 255, nullable: true)] private ?string $diiaPublicCer = null; #[ORM\Column(length: 255, nullable: true)] private ?string $lezPublicCer = null; #[ORM\Column(length: 255, nullable: true)] private ?string $lezPrivateCer = null; #[ORM\Column(length: 255, nullable: true)] private ?string $lezPrivateKey = null; #[ORM\Column(length: 12, nullable: true)] private ?string $sessionTimeTest = null; #[ORM\Column(length: 1600, nullable: true)] private ?string $sessionTokenTest = null; public function getId(): ?int { return $this->id; } public function getSessionTime(): ?string { return $this->sessionTime; } public function setSessionTime(?string $sessionTime): self { $this->sessionTime = $sessionTime; return $this; } public function getSessionToken(): ?string { return $this->sessionToken; } public function setSessionToken(?string $sessionToken): self { $this->sessionToken = $sessionToken; return $this; } public function getDiiaPublicCer(): ?string { return $this->diiaPublicCer; } public function setDiiaPublicCer(?string $diiaPublicCer): self { $this->diiaPublicCer = $diiaPublicCer; return $this; } public function getLezPublicCer(): ?string { return $this->lezPublicCer; } public function setLezPublicCer(?string $lezPublicCer): self { $this->lezPublicCer = $lezPublicCer; return $this; } public function getLezPrivateCer(): ?string { return $this->lezPrivateCer; } public function setLezPrivateCer(?string $lezPrivateCer): self { $this->lezPrivateCer = $lezPrivateCer; return $this; } public function getLezPrivateKey(): ?string { return $this->lezPrivateKey; } public function setLezPrivateKey(?string $lezPrivateKey): self { $this->lezPrivateKey = $lezPrivateKey; return $this; } public function getSessionTimeTest(): ?string { return $this->sessionTimeTest; } public function setSessionTimeTest(?string $sessionTimeTest): self { $this->sessionTimeTest = $sessionTimeTest; return $this; } public function getSessionTokenTest(): ?string { return $this->sessionTokenTest; } public function setSessionTokenTest(?string $sessionTokenTest): self { $this->sessionTokenTest = $sessionTokenTest; return $this; }}