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_ReportCriteria extends Google_Collection
19{
20  protected $collection_key = 'metricNames';
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 $metricNames;
32
33  /**
34   * @param Google_Service_Dfareporting_Activities
35   */
36  public function setActivities(Google_Service_Dfareporting_Activities $activities)
37  {
38    $this->activities = $activities;
39  }
40  /**
41   * @return Google_Service_Dfareporting_Activities
42   */
43  public function getActivities()
44  {
45    return $this->activities;
46  }
47  /**
48   * @param Google_Service_Dfareporting_CustomRichMediaEvents
49   */
50  public function setCustomRichMediaEvents(Google_Service_Dfareporting_CustomRichMediaEvents $customRichMediaEvents)
51  {
52    $this->customRichMediaEvents = $customRichMediaEvents;
53  }
54  /**
55   * @return Google_Service_Dfareporting_CustomRichMediaEvents
56   */
57  public function getCustomRichMediaEvents()
58  {
59    return $this->customRichMediaEvents;
60  }
61  /**
62   * @param Google_Service_Dfareporting_DateRange
63   */
64  public function setDateRange(Google_Service_Dfareporting_DateRange $dateRange)
65  {
66    $this->dateRange = $dateRange;
67  }
68  /**
69   * @return Google_Service_Dfareporting_DateRange
70   */
71  public function getDateRange()
72  {
73    return $this->dateRange;
74  }
75  /**
76   * @param Google_Service_Dfareporting_DimensionValue[]
77   */
78  public function setDimensionFilters($dimensionFilters)
79  {
80    $this->dimensionFilters = $dimensionFilters;
81  }
82  /**
83   * @return Google_Service_Dfareporting_DimensionValue[]
84   */
85  public function getDimensionFilters()
86  {
87    return $this->dimensionFilters;
88  }
89  /**
90   * @param Google_Service_Dfareporting_SortedDimension[]
91   */
92  public function setDimensions($dimensions)
93  {
94    $this->dimensions = $dimensions;
95  }
96  /**
97   * @return Google_Service_Dfareporting_SortedDimension[]
98   */
99  public function getDimensions()
100  {
101    return $this->dimensions;
102  }
103  public function setMetricNames($metricNames)
104  {
105    $this->metricNames = $metricNames;
106  }
107  public function getMetricNames()
108  {
109    return $this->metricNames;
110  }
111}
112