id = $id; return $this; } /** * Gets id. * * @return int */ public function getId() { return $this->id; } /** * Sets network. * * @param Network $network * * @return $this */ public function setNetwork(Network $network) { $this->network = $network; return $this; } /** * Gets network. * * @return Network */ public function getNetwork() { return $this->network; } /** * 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 parent. * * @param Organization $parent * * @return $this */ public function setParent(Organization $parent) { $this->parent = $parent; return $this; } /** * Gets parent. * * @return Organization */ public function getParent() { return $this->parent; } /** * Sets leadingCause. * * @param string $leadingCause * * @return $this */ public function setLeadingCause($leadingCause) { $this->leadingCause = $leadingCause; return $this; } /** * Gets leadingCause. * * @return string */ public function getLeadingCause() { return $this->leadingCause; } }