aggregations = $aggregations; } /** * @return Aggregation[] */ public function getAggregations() { return $this->aggregations; } /** * Optional. The aggregation will be performed on assets that match the * provided filter. * * @param string $filter */ public function setFilter($filter) { $this->filter = $filter; } /** * @return string */ public function getFilter() { return $this->filter; } /** * Optional. When this value is set to 'true' the response will include all * assets, including those that are hidden. * * @param bool $showHidden */ public function setShowHidden($showHidden) { $this->showHidden = $showHidden; } /** * @return bool */ public function getShowHidden() { return $this->showHidden; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AggregateAssetsValuesRequest::class, 'Google_Service_MigrationCenterAPI_AggregateAssetsValuesRequest');