Google_ReportCrossDimensionReachCriteria
The Google Pagespeed Insights Google ReportCrossDimensionReachCriteria class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_DfareportingService.php
- class Google_ReportCrossDimensionReachCriteria extends Google_Model {
- protected $__breakdownType = 'Google_SortedDimension';
- protected $__breakdownDataType = 'array';
- public $breakdown;
- protected $__dateRangeType = 'Google_DateRange';
- protected $__dateRangeDataType = '';
- public $dateRange;
- public $dimension;
- protected $__dimensionFiltersType = 'Google_DimensionValue';
- protected $__dimensionFiltersDataType = 'array';
- public $dimensionFilters;
- public $metricNames;
- public $overlapMetricNames;
- public $pivoted;
- public function setBreakdown(/** array(Google_SortedDimension) */ $breakdown) {
- $this->assertIsArray($breakdown, 'Google_SortedDimension', __METHOD__);
- $this->breakdown = $breakdown;
- }
- public function getBreakdown() {
- return $this->breakdown;
- }
- public function setDateRange(Google_DateRange $dateRange) {
- $this->dateRange = $dateRange;
- }
- public function getDateRange() {
- return $this->dateRange;
- }
- public function setDimension($dimension) {
- $this->dimension = $dimension;
- }
- public function getDimension() {
- return $this->dimension;
- }
- public function setDimensionFilters(/** array(Google_DimensionValue) */ $dimensionFilters) {
- $this->assertIsArray($dimensionFilters, 'Google_DimensionValue', __METHOD__);
- $this->dimensionFilters = $dimensionFilters;
- }
- public function getDimensionFilters() {
- return $this->dimensionFilters;
- }
- public function setMetricNames($metricNames) {
- $this->metricNames = $metricNames;
- }
- public function getMetricNames() {
- return $this->metricNames;
- }
- public function setOverlapMetricNames($overlapMetricNames) {
- $this->overlapMetricNames = $overlapMetricNames;
- }
- public function getOverlapMetricNames() {
- return $this->overlapMetricNames;
- }
- public function setPivoted($pivoted) {
- $this->pivoted = $pivoted;
- }
- public function getPivoted() {
- return $this->pivoted;
- }
- }