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_ReportPathCriteria extends Google_Collection
19{
20  protected $collection_key = 'pathFilters';
21  protected $activityFiltersType = 'Google_Service_Dfareporting_DimensionValue';
22  protected $activityFiltersDataType = 'array';
23  protected $customChannelGroupingType = 'Google_Service_Dfareporting_ChannelGrouping';
24  protected $customChannelGroupingDataType = '';
25  protected $dateRangeType = 'Google_Service_Dfareporting_DateRange';
26  protected $dateRangeDataType = '';
27  protected $dimensionsType = 'Google_Service_Dfareporting_SortedDimension';
28  protected $dimensionsDataType = 'array';
29  protected $floodlightConfigIdType = 'Google_Service_Dfareporting_DimensionValue';
30  protected $floodlightConfigIdDataType = '';
31  public $metricNames;
32  protected $pathFiltersType = 'Google_Service_Dfareporting_PathFilter';
33  protected $pathFiltersDataType = 'array';
34
35  /**
36   * @param Google_Service_Dfareporting_DimensionValue[]
37   */
38  public function setActivityFilters($activityFilters)
39  {
40    $this->activityFilters = $activityFilters;
41  }
42  /**
43   * @return Google_Service_Dfareporting_DimensionValue[]
44   */
45  public function getActivityFilters()
46  {
47    return $this->activityFilters;
48  }
49  /**
50   * @param Google_Service_Dfareporting_ChannelGrouping
51   */
52  public function setCustomChannelGrouping(Google_Service_Dfareporting_ChannelGrouping $customChannelGrouping)
53  {
54    $this->customChannelGrouping = $customChannelGrouping;
55  }
56  /**
57   * @return Google_Service_Dfareporting_ChannelGrouping
58   */
59  public function getCustomChannelGrouping()
60  {
61    return $this->customChannelGrouping;
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_SortedDimension[]
79   */
80  public function setDimensions($dimensions)
81  {
82    $this->dimensions = $dimensions;
83  }
84  /**
85   * @return Google_Service_Dfareporting_SortedDimension[]
86   */
87  public function getDimensions()
88  {
89    return $this->dimensions;
90  }
91  /**
92   * @param Google_Service_Dfareporting_DimensionValue
93   */
94  public function setFloodlightConfigId(Google_Service_Dfareporting_DimensionValue $floodlightConfigId)
95  {
96    $this->floodlightConfigId = $floodlightConfigId;
97  }
98  /**
99   * @return Google_Service_Dfareporting_DimensionValue
100   */
101  public function getFloodlightConfigId()
102  {
103    return $this->floodlightConfigId;
104  }
105  public function setMetricNames($metricNames)
106  {
107    $this->metricNames = $metricNames;
108  }
109  public function getMetricNames()
110  {
111    return $this->metricNames;
112  }
113  /**
114   * @param Google_Service_Dfareporting_PathFilter[]
115   */
116  public function setPathFilters($pathFilters)
117  {
118    $this->pathFilters = $pathFilters;
119  }
120  /**
121   * @return Google_Service_Dfareporting_PathFilter[]
122   */
123  public function getPathFilters()
124  {
125    return $this->pathFilters;
126  }
127}
128