agentStartupTime = $agentStartupTime; } /** * @return string */ public function getAgentStartupTime() { return $this->agentStartupTime; } /** * Boot timestamp of the VM OS * * @param string $bootTime */ public function setBootTime($bootTime) { $this->bootTime = $bootTime; } /** * @return string */ public function getBootTime() { return $this->bootTime; } /** * Startup time of the Batch VM script. * * @param string $scriptStartupTime */ public function setScriptStartupTime($scriptStartupTime) { $this->scriptStartupTime = $scriptStartupTime; } /** * @return string */ public function getScriptStartupTime() { return $this->scriptStartupTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AgentTimingInfo::class, 'Google_Service_Batch_AgentTimingInfo');