callerIp = $callerIp; } /** * @return string */ public function getCallerIp() { return $this->callerIp; } /** * @param string */ public function setCallerNetwork($callerNetwork) { $this->callerNetwork = $callerNetwork; } /** * @return string */ public function getCallerNetwork() { return $this->callerNetwork; } /** * @param string */ public function setCallerSuppliedUserAgent($callerSuppliedUserAgent) { $this->callerSuppliedUserAgent = $callerSuppliedUserAgent; } /** * @return string */ public function getCallerSuppliedUserAgent() { return $this->callerSuppliedUserAgent; } /** * @param Peer */ public function setDestinationAttributes(Peer $destinationAttributes) { $this->destinationAttributes = $destinationAttributes; } /** * @return Peer */ public function getDestinationAttributes() { return $this->destinationAttributes; } /** * @param Request */ public function setRequestAttributes(Request $requestAttributes) { $this->requestAttributes = $requestAttributes; } /** * @return Request */ public function getRequestAttributes() { return $this->requestAttributes; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RequestMetadata::class, 'Google_Service_ServiceControl_RequestMetadata');