civilEndTime = $civilEndTime; } /** * @return CivilDateTime */ public function getCivilEndTime() { return $this->civilEndTime; } /** * Output only. Session start time in civil time in the timezone the subject * is in at the start of the session. * * @param CivilDateTime $civilStartTime */ public function setCivilStartTime(CivilDateTime $civilStartTime) { $this->civilStartTime = $civilStartTime; } /** * @return CivilDateTime */ public function getCivilStartTime() { return $this->civilStartTime; } /** * Required. The end time of the observed session. * * @param string $endTime */ public function setEndTime($endTime) { $this->endTime = $endTime; } /** * @return string */ public function getEndTime() { return $this->endTime; } /** * Required. The offset of the user's local time at the end of the session * relative to the Coordinated Universal Time (UTC). * * @param string $endUtcOffset */ public function setEndUtcOffset($endUtcOffset) { $this->endUtcOffset = $endUtcOffset; } /** * @return string */ public function getEndUtcOffset() { return $this->endUtcOffset; } /** * Required. The start time of the observed session. * * @param string $startTime */ public function setStartTime($startTime) { $this->startTime = $startTime; } /** * @return string */ public function getStartTime() { return $this->startTime; } /** * Required. The offset of the user's local time at the start of the session * relative to the Coordinated Universal Time (UTC). * * @param string $startUtcOffset */ public function setStartUtcOffset($startUtcOffset) { $this->startUtcOffset = $startUtcOffset; } /** * @return string */ public function getStartUtcOffset() { return $this->startUtcOffset; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SessionTimeInterval::class, 'Google_Service_GoogleHealthAPI_SessionTimeInterval');