id = $id; return $this; } /** * Gets id. * * @return int */ public function getId() { return $this->id; } /** * Sets organization. * * @param Organization $organization * * @return $this */ public function setOrganization(Organization $organization) { $this->organization = $organization; return $this; } /** * Gets organization. * * @return Organization */ public function getOrganization() { return $this->organization; } /** * Sets label. * * @param string $label * * @return $this */ public function setLabel($label) { $this->label = $label; return $this; } /** * Gets label. * * @return string */ public function getLabel() { return $this->label; } }