etag = $etag; } /** * @return string */ public function getEtag() { return $this->etag; } /** * Each activity record in the response. * * @param Activity[] $items */ public function setItems($items) { $this->items = $items; } /** * @return Activity[] */ public function getItems() { return $this->items; } /** * The type of API resource. For an activity report, the value is * `reports#activities`. * * @param string $kind */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * Token for retrieving the follow-on next page of the report. The * `nextPageToken` value is used in the request's `pageToken` query string. * * @param string $nextPageToken */ public function setNextPageToken($nextPageToken) { $this->nextPageToken = $nextPageToken; } /** * @return string */ public function getNextPageToken() { return $this->nextPageToken; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Activities::class, 'Google_Service_Reports_Activities');