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 address postal. * * @param AddressPostal $addressPostal * * @return $this */ public function setAddressPostal(AddressPostal $addressPostal) { $this->addressPostal = $addressPostal; return $this; } /** * Gets address postal. * * @return AddressPostal */ public function getAddressPostal() { return $this->addressPostal; } /** * Sets type. * * @param string $type * * @return $this */ public function setType($type) { $this->type = $type; return $this; } /** * Gets type. * * @return string */ public function getType() { return $this->type; } }