models = $models; } /** * @return Model[] */ public function getModels() { return $this->models; } /** * A token to request the next page of results. * * @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(ListModelsResponse::class, 'Google_Service_Bigquery_ListModelsResponse');