changes = $changes; } /** * @return Change[] */ public function getChanges() { return $this->changes; } /** * @param string */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * @param string */ public function setNewStartPageToken($newStartPageToken) { $this->newStartPageToken = $newStartPageToken; } /** * @return string */ public function getNewStartPageToken() { return $this->newStartPageToken; } /** * @param string */ 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(ChangeList::class, 'Google_Service_Drive_ChangeList');