requestId = $requestId; } /** * @return string */ public function getRequestId() { return $this->requestId; } /** * Any data that was used to serve this request. For example, an encrypted * stack trace that can be sent back to the service provider for debugging. * * @param string $servingData */ public function setServingData($servingData) { $this->servingData = $servingData; } /** * @return string */ public function getServingData() { return $this->servingData; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RequestInfo::class, 'Google_Service_DatabaseMigrationService_RequestInfo');