actor = $actor; } /** * @return Actor */ public function getActor() { return $this->actor; } /** * @param ActionDetail */ public function setDetail(ActionDetail $detail) { $this->detail = $detail; } /** * @return ActionDetail */ public function getDetail() { return $this->detail; } /** * @param Target */ public function setTarget(Target $target) { $this->target = $target; } /** * @return Target */ public function getTarget() { return $this->target; } /** * @param TimeRange */ public function setTimeRange(TimeRange $timeRange) { $this->timeRange = $timeRange; } /** * @return TimeRange */ public function getTimeRange() { return $this->timeRange; } /** * @param string */ public function setTimestamp($timestamp) { $this->timestamp = $timestamp; } /** * @return string */ public function getTimestamp() { return $this->timestamp; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Action::class, 'Google_Service_DriveActivity_Action');