items = $items; } /** * @return Bucket[] */ public function getItems() { return $this->items; } /** * The kind of item this is. For lists of buckets, this is always * storage#buckets. * * @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; } /** * The list of bucket resource names that could not be reached during the * listing operation. * * @param string[] $unreachable */ public function setUnreachable($unreachable) { $this->unreachable = $unreachable; } /** * @return string[] */ public function getUnreachable() { return $this->unreachable; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Buckets::class, 'Google_Service_Storage_Buckets');