1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Dfareporting;
19
20class ReportCrossDimensionReachCriteria extends \Google\Collection
21{
22  protected $collection_key = 'overlapMetricNames';
23  protected $breakdownType = SortedDimension::class;
24  protected $breakdownDataType = 'array';
25  protected $dateRangeType = DateRange::class;
26  protected $dateRangeDataType = '';
27  /**
28   * @var string
29   */
30  public $dimension;
31  protected $dimensionFiltersType = DimensionValue::class;
32  protected $dimensionFiltersDataType = 'array';
33  /**
34   * @var string[]
35   */
36  public $metricNames;
37  /**
38   * @var string[]
39   */
40  public $overlapMetricNames;
41  /**
42   * @var bool
43   */
44  public $pivoted;
45
46  /**
47   * @param SortedDimension[]
48   */
49  public function setBreakdown($breakdown)
50  {
51    $this->breakdown = $breakdown;
52  }
53  /**
54   * @return SortedDimension[]
55   */
56  public function getBreakdown()
57  {
58    return $this->breakdown;
59  }
60  /**
61   * @param DateRange
62   */
63  public function setDateRange(DateRange $dateRange)
64  {
65    $this->dateRange = $dateRange;
66  }
67  /**
68   * @return DateRange
69   */
70  public function getDateRange()
71  {
72    return $this->dateRange;
73  }
74  /**
75   * @param string
76   */
77  public function setDimension($dimension)
78  {
79    $this->dimension = $dimension;
80  }
81  /**
82   * @return string
83   */
84  public function getDimension()
85  {
86    return $this->dimension;
87  }
88  /**
89   * @param DimensionValue[]
90   */
91  public function setDimensionFilters($dimensionFilters)
92  {
93    $this->dimensionFilters = $dimensionFilters;
94  }
95  /**
96   * @return DimensionValue[]
97   */
98  public function getDimensionFilters()
99  {
100    return $this->dimensionFilters;
101  }
102  /**
103   * @param string[]
104   */
105  public function setMetricNames($metricNames)
106  {
107    $this->metricNames = $metricNames;
108  }
109  /**
110   * @return string[]
111   */
112  public function getMetricNames()
113  {
114    return $this->metricNames;
115  }
116  /**
117   * @param string[]
118   */
119  public function setOverlapMetricNames($overlapMetricNames)
120  {
121    $this->overlapMetricNames = $overlapMetricNames;
122  }
123  /**
124   * @return string[]
125   */
126  public function getOverlapMetricNames()
127  {
128    return $this->overlapMetricNames;
129  }
130  /**
131   * @param bool
132   */
133  public function setPivoted($pivoted)
134  {
135    $this->pivoted = $pivoted;
136  }
137  /**
138   * @return bool
139   */
140  public function getPivoted()
141  {
142    return $this->pivoted;
143  }
144}
145
146// Adding a class alias for backwards compatibility with the previous class name.
147class_alias(ReportCrossDimensionReachCriteria::class, 'Google_Service_Dfareporting_ReportCrossDimensionReachCriteria');
148