'FRANCE'])] private string $country; public function getId(): ?int { return $this->id; } public function getOrganization(): ?Organization { return $this->organization; } public function setOrganization(Organization $organization): self { $this->organization = $organization; return $this; } public function getProduct(): string { return $this->product; } public function setProduct(string $product): self { $this->product = $product; return $this; } public function getModules(): ?array { return $this->modules; } public function setModules(?array $modules): self { $this->modules = $modules; return $this; } public function getActions(): ?array { return $this->actions; } public function setActions(?array $actions): self { $this->actions = $actions; return $this; } public function getCountry(): string { return $this->country; } public function setCountry(string $country): self { $this->country = $country; return $this; } }