src/Entity/LepDiiaSetting.php line 17

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\LepDiiaSettingRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use ApiPlatform\Metadata\Get;
  8. use ApiPlatform\Metadata\Post;
  9. use ApiPlatform\Metadata\Put;
  10. use ApiPlatform\Metadata\Delete;
  11. #[ORM\Entity(repositoryClassLepDiiaSettingRepository::class)]
  12. #[ApiResource]
  13. class LepDiiaSetting
  14. {
  15.     #[ORM\Id]
  16.     #[ORM\GeneratedValue]
  17.     #[ORM\Column]
  18.     private ?int $id null;
  19.     #[ORM\Column(length12nullabletrue)]
  20.     private ?string $sessionTime null;
  21.     #[ORM\Column(length1600nullabletrue)]
  22.     private ?string $sessionToken null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $diiaPublicCer null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $lezPublicCer null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $lezPrivateCer null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $lezPrivateKey null;
  31.     #[ORM\Column(length12nullabletrue)]
  32.     private ?string $sessionTimeTest null;
  33.     #[ORM\Column(length1600nullabletrue)]
  34.     private ?string $sessionTokenTest null;
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getSessionTime(): ?string
  40.     {
  41.         return $this->sessionTime;
  42.     }
  43.     public function setSessionTime(?string $sessionTime): self
  44.     {
  45.         $this->sessionTime $sessionTime;
  46.         return $this;
  47.     }
  48.     public function getSessionToken(): ?string
  49.     {
  50.         return $this->sessionToken;
  51.     }
  52.     public function setSessionToken(?string $sessionToken): self
  53.     {
  54.         $this->sessionToken $sessionToken;
  55.         return $this;
  56.     }
  57.     public function getDiiaPublicCer(): ?string
  58.     {
  59.         return $this->diiaPublicCer;
  60.     }
  61.     public function setDiiaPublicCer(?string $diiaPublicCer): self
  62.     {
  63.         $this->diiaPublicCer $diiaPublicCer;
  64.         return $this;
  65.     }
  66.     public function getLezPublicCer(): ?string
  67.     {
  68.         return $this->lezPublicCer;
  69.     }
  70.     public function setLezPublicCer(?string $lezPublicCer): self
  71.     {
  72.         $this->lezPublicCer $lezPublicCer;
  73.         return $this;
  74.     }
  75.     public function getLezPrivateCer(): ?string
  76.     {
  77.         return $this->lezPrivateCer;
  78.     }
  79.     public function setLezPrivateCer(?string $lezPrivateCer): self
  80.     {
  81.         $this->lezPrivateCer $lezPrivateCer;
  82.         return $this;
  83.     }
  84.     public function getLezPrivateKey(): ?string
  85.     {
  86.         return $this->lezPrivateKey;
  87.     }
  88.     public function setLezPrivateKey(?string $lezPrivateKey): self
  89.     {
  90.         $this->lezPrivateKey $lezPrivateKey;
  91.         return $this;
  92.     }
  93.     public function getSessionTimeTest(): ?string
  94.     {
  95.         return $this->sessionTimeTest;
  96.     }
  97.     public function setSessionTimeTest(?string $sessionTimeTest): self
  98.     {
  99.         $this->sessionTimeTest $sessionTimeTest;
  100.         return $this;
  101.     }
  102.     public function getSessionTokenTest(): ?string
  103.     {
  104.         return $this->sessionTokenTest;
  105.     }
  106.     public function setSessionTokenTest(?string $sessionTokenTest): self
  107.     {
  108.         $this->sessionTokenTest $sessionTokenTest;
  109.         return $this;
  110.     }
  111. }