accessUrlLocked = 0; } public function setVariable(string $variable): self { $this->variable = $variable; return $this; } /** * Get variable. * * @return string */ public function getVariable() { return $this->variable; } public function setSubkey(string $subkey): self { $this->subkey = $subkey; return $this; } /** * Get subkey. * * @return string */ public function getSubkey() { return $this->subkey; } public function setType(string $type): self { $this->type = $type; return $this; } /** * Get type. * * @return string */ public function getType() { return $this->type; } public function setCategory(?string $category): self { $this->category = $category; return $this; } /** * Get category. * * @return string */ public function getCategory() { return $this->category; } public function setSelectedValue(?string $selectedValue): self { $this->selectedValue = $selectedValue; return $this; } /** * Get selectedValue. * * @return string */ public function getSelectedValue() { return $this->selectedValue; } public function setTitle(string $title): self { $this->title = $title; return $this; } /** * Get title. * * @return string */ public function getTitle() { return $this->title; } public function setComment(string $comment): self { $this->comment = $comment; return $this; } /** * Get comment. * * @return string */ public function getComment() { return $this->comment; } public function setScope(string $scope): self { $this->scope = $scope; return $this; } /** * Get scope. * * @return string */ public function getScope() { return $this->scope; } public function setSubkeytext(string $subkeytext): self { $this->subkeytext = $subkeytext; return $this; } /** * Get subkeytext. * * @return string */ public function getSubkeytext() { return $this->subkeytext; } public function setAccessUrlChangeable(int $accessUrlChangeable): self { $this->accessUrlChangeable = $accessUrlChangeable; return $this; } /** * Get accessUrlChangeable. * * @return int */ public function getAccessUrlChangeable() { return $this->accessUrlChangeable; } public function setAccessUrlLocked(int $accessUrlLocked): self { $this->accessUrlLocked = $accessUrlLocked; return $this; } /** * Get accessUrlLocked. * * @return int */ public function getAccessUrlLocked() { return $this->accessUrlLocked; } /** * Get id. * * @return int */ public function getId() { return $this->id; } /** * @return AccessUrl */ public function getUrl() { return $this->url; } public function setUrl(AccessUrl $url): self { $this->url = $url; return $this; } }