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
18class Google_Service_Dfareporting_ReportReachCriteria extends Google_Collection
19{
20  protected $collection_key = 'reachByFrequencyMetricNames';
21  protected $activitiesType = 'Google_Service_Dfareporting_Activities';
22  protected $activitiesDataType = '';
23  protected $customRichMediaEventsType = 'Google_Service_Dfareporting_CustomRichMediaEvents';
24  protected $customRichMediaEventsDataType = '';
25  protected $dateRangeType = 'Google_Service_Dfareporting_DateRange';
26  protected $dateRangeDataType = '';
27  protected $dimensionFiltersType = 'Google_Service_Dfareporting_DimensionValue';
28  protected $dimensionFiltersDataType = 'array';
29  protected $dimensionsType = 'Google_Service_Dfareporting_SortedDimension';
30  protected $dimensionsDataType = 'array';
31  public $enableAllDimensionCombinations;
32  public $metricNames;
33  public $reachByFrequencyMetricNames;
34
35  /**
36   * @param Google_Service_Dfareporting_Activities
37   */
38  public function setActivities(Google_Service_Dfareporting_Activities $activities)
39  {
40    $this->activities = $activities;
41  }
42  /**
43   * @return Google_Service_Dfareporting_Activities
44   */
45  public function getActivities()
46  {
47    return $this->activities;
48  }
49  /**
50   * @param Google_Service_Dfareporting_CustomRichMediaEvents
51   */
52  public function setCustomRichMediaEvents(Google_Service_Dfareporting_CustomRichMediaEvents $customRichMediaEvents)
53  {
54    $this->customRichMediaEvents = $customRichMediaEvents;
55  }
56  /**
57   * @return Google_Service_Dfareporting_CustomRichMediaEvents
58   */
59  public function getCustomRichMediaEvents()
60  {
61    return $this->customRichMediaEvents;
62  }
63  /**
64   * @param Google_Service_Dfareporting_DateRange
65   */
66  public function setDateRange(Google_Service_Dfareporting_DateRange $dateRange)
67  {
68    $this->dateRange = $dateRange;
69  }
70  /**
71   * @return Google_Service_Dfareporting_DateRange
72   */
73  public function getDateRange()
74  {
75    return $this->dateRange;
76  }
77  /**
78   * @param Google_Service_Dfareporting_DimensionValue
79   */
80  public function setDimensionFilters($dimensionFilters)
81  {
82    $this->dimensionFilters = $dimensionFilters;
83  }
84  /**
85   * @return Google_Service_Dfareporting_DimensionValue
86   */
87  public function getDimensionFilters()
88  {
89    return $this->dimensionFilters;
90  }
91  /**
92   * @param Google_Service_Dfareporting_SortedDimension
93   */
94  public function setDimensions($dimensions)
95  {
96    $this->dimensions = $dimensions;
97  }
98  /**
99   * @return Google_Service_Dfareporting_SortedDimension
100   */
101  public function getDimensions()
102  {
103    return $this->dimensions;
104  }
105  public function setEnableAllDimensionCombinations($enableAllDimensionCombinations)
106  {
107    $this->enableAllDimensionCombinations = $enableAllDimensionCombinations;
108  }
109  public function getEnableAllDimensionCombinations()
110  {
111    return $this->enableAllDimensionCombinations;
112  }
113  public function setMetricNames($metricNames)
114  {
115    $this->metricNames = $metricNames;
116  }
117  public function getMetricNames()
118  {
119    return $this->metricNames;
120  }
121  public function setReachByFrequencyMetricNames($reachByFrequencyMetricNames)
122  {
123    $this->reachByFrequencyMetricNames = $reachByFrequencyMetricNames;
124  }
125  public function getReachByFrequencyMetricNames()
126  {
127    return $this->reachByFrequencyMetricNames;
128  }
129}
130