Google_ReportActiveGrpCriteria
The Google Pagespeed Insights Google ReportActiveGrpCriteria class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_DfareportingService.php
- class Google_ReportActiveGrpCriteria extends Google_Model {
- protected $__dateRangeType = 'Google_DateRange';
- protected $__dateRangeDataType = '';
- public $dateRange;
- protected $__dimensionFiltersType = 'Google_DimensionValue';
- protected $__dimensionFiltersDataType = 'array';
- public $dimensionFilters;
- protected $__dimensionsType = 'Google_SortedDimension';
- protected $__dimensionsDataType = 'array';
- public $dimensions;
- public $metricNames;
- public function setDateRange(Google_DateRange $dateRange) {
- $this->dateRange = $dateRange;
- }
- public function getDateRange() {
- return $this->dateRange;
- }
- public function setDimensionFilters(/** array(Google_DimensionValue) */ $dimensionFilters) {
- $this->assertIsArray($dimensionFilters, 'Google_DimensionValue', __METHOD__);
- $this->dimensionFilters = $dimensionFilters;
- }
- public function getDimensionFilters() {
- return $this->dimensionFilters;
- }
- public function setDimensions(/** array(Google_SortedDimension) */ $dimensions) {
- $this->assertIsArray($dimensions, 'Google_SortedDimension', __METHOD__);
- $this->dimensions = $dimensions;
- }
- public function getDimensions() {
- return $this->dimensions;
- }
- public function setMetricNames($metricNames) {
- $this->metricNames = $metricNames;
- }
- public function getMetricNames() {
- return $this->metricNames;
- }
- }