etag = $etag; } /** * @return string */ public function getEtag() { return $this->etag; } /** * The Features in this page of results. * * @param Feature[] $features */ public function setFeatures($features) { $this->features = $features; } /** * @return Feature[] */ public function getFeatures() { return $this->features; } /** * Kind of resource this is. * * @param string $kind */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * The continuation token, used to page through large result sets. Provide * this value in a subsequent request to return 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(Features::class, 'Google_Service_Directory_Features');