[ 'method' => 'GET', 'path' => '/siret-checking/{number}' ] ] )] class Siret { #[ApiProperty(identifier: true)] private ?string $number = null; private bool $isCorrect = false; public function __construct() { } public function getNumber(): ?string { return $this->number; } public function setNumber(?string $number): self { $this->number = $number; return $this; } public function setIsCorrect(bool $isCorrect): self { $this->isCorrect = $isCorrect; return $this; } public function getIsCorrect(): bool { return $this->isCorrect; } }