<?phpnamespace App\Entity;use App\Repository\JitsiParameterRepository;use Doctrine\ORM\Mapping as ORM;use JMS\Serializer\Annotation as Serializer;/** * @ORM\Entity(repositoryClass=JitsiParameterRepository::class) * @Serializer\ExclusionPolicy("ALL") */class JitsiParameter{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") * @Serializer\Expose */ private $id; /** * @ORM\Column(type="string", length=255) * @Serializer\Expose */ private $url; /** * @ORM\Column(type="string", length=255) * @Serializer\Expose */ private $appId; /** * @ORM\Column(type="string", length=255) * @Serializer\Expose */ private $appSecret; /** * @ORM\Column(type="boolean") */ private $isActive; /** * @ORM\Column(type="string", length=255) * @Serializer\Expose */ private $domain; /** * @ORM\Column(type="boolean", nullable=true) * @Serializer\Expose */ private $isJaas; public function getId(): ?int { return $this->id; } public function getUrl(): ?string { return $this->url; } public function setUrl(string $url): self { $this->url = $url; return $this; } public function getAppId(): ?string { return $this->appId; } public function setAppId(string $appId): self { $this->appId = $appId; return $this; } public function getAppSecret(): ?string { return $this->appSecret; } public function setAppSecret(string $appSecret): self { $this->appSecret = $appSecret; return $this; } public function isIsActive(): ?bool { return $this->isActive; } public function setIsActive(bool $isActive): self { $this->isActive = $isActive; return $this; } public function getDomain(): ?string { return $this->domain; } public function setDomain(string $domain): self { $this->domain = $domain; return $this; } public function isIsJaas(): ?bool { return $this->isJaas; } public function setIsJaas(?bool $isJaas): self { $this->isJaas = $isJaas; return $this; }}