kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * @param string */ public function setReferenceType($referenceType) { $this->referenceType = $referenceType; } /** * @return string */ public function getReferenceType() { return $this->referenceType; } /** * @param string */ public function setReferrer($referrer) { $this->referrer = $referrer; } /** * @return string */ public function getReferrer() { return $this->referrer; } /** * @param string */ public function setTarget($target) { $this->target = $target; } /** * @return string */ public function getTarget() { return $this->target; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Reference::class, 'Google_Service_Compute_Reference');