abortCause = $abortCause; } /** * @return string */ public function getAbortCause() { return $this->abortCause; } /** * @param EdgeLocation */ public function setDestinationEgressLocation(EdgeLocation $destinationEgressLocation) { $this->destinationEgressLocation = $destinationEgressLocation; } /** * @return EdgeLocation */ public function getDestinationEgressLocation() { return $this->destinationEgressLocation; } /** * @param EndpointInfo */ public function setEndpointInfo(EndpointInfo $endpointInfo) { $this->endpointInfo = $endpointInfo; } /** * @return EndpointInfo */ public function getEndpointInfo() { return $this->endpointInfo; } /** * @param Status */ public function setError(Status $error) { $this->error = $error; } /** * @return Status */ public function getError() { return $this->error; } /** * @param LatencyDistribution */ public function setProbingLatency(LatencyDistribution $probingLatency) { $this->probingLatency = $probingLatency; } /** * @return LatencyDistribution */ public function getProbingLatency() { return $this->probingLatency; } /** * @param string */ public function setResult($result) { $this->result = $result; } /** * @return string */ public function getResult() { return $this->result; } /** * @param int */ public function setSentProbeCount($sentProbeCount) { $this->sentProbeCount = $sentProbeCount; } /** * @return int */ public function getSentProbeCount() { return $this->sentProbeCount; } /** * @param int */ public function setSuccessfulProbeCount($successfulProbeCount) { $this->successfulProbeCount = $successfulProbeCount; } /** * @return int */ public function getSuccessfulProbeCount() { return $this->successfulProbeCount; } /** * @param string */ public function setVerifyTime($verifyTime) { $this->verifyTime = $verifyTime; } /** * @return string */ public function getVerifyTime() { return $this->verifyTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProbingDetails::class, 'Google_Service_NetworkManagement_ProbingDetails');