source: vendor/google/apiclient-services/src/Dfareporting/ReportReachCriteria.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 3.8 KB
Line 
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 ReportReachCriteria extends \Google\Collection
21{
22 protected $collection_key = 'reachByFrequencyMetricNames';
23 protected $activitiesType = Activities::class;
24 protected $activitiesDataType = '';
25 protected $customRichMediaEventsType = CustomRichMediaEvents::class;
26 protected $customRichMediaEventsDataType = '';
27 protected $dateRangeType = DateRange::class;
28 protected $dateRangeDataType = '';
29 protected $dimensionFiltersType = DimensionValue::class;
30 protected $dimensionFiltersDataType = 'array';
31 protected $dimensionsType = SortedDimension::class;
32 protected $dimensionsDataType = 'array';
33 /**
34 * @var bool
35 */
36 public $enableAllDimensionCombinations;
37 /**
38 * @var string[]
39 */
40 public $metricNames;
41 /**
42 * @var string[]
43 */
44 public $reachByFrequencyMetricNames;
45
46 /**
47 * @param Activities
48 */
49 public function setActivities(Activities $activities)
50 {
51 $this->activities = $activities;
52 }
53 /**
54 * @return Activities
55 */
56 public function getActivities()
57 {
58 return $this->activities;
59 }
60 /**
61 * @param CustomRichMediaEvents
62 */
63 public function setCustomRichMediaEvents(CustomRichMediaEvents $customRichMediaEvents)
64 {
65 $this->customRichMediaEvents = $customRichMediaEvents;
66 }
67 /**
68 * @return CustomRichMediaEvents
69 */
70 public function getCustomRichMediaEvents()
71 {
72 return $this->customRichMediaEvents;
73 }
74 /**
75 * @param DateRange
76 */
77 public function setDateRange(DateRange $dateRange)
78 {
79 $this->dateRange = $dateRange;
80 }
81 /**
82 * @return DateRange
83 */
84 public function getDateRange()
85 {
86 return $this->dateRange;
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 SortedDimension[]
104 */
105 public function setDimensions($dimensions)
106 {
107 $this->dimensions = $dimensions;
108 }
109 /**
110 * @return SortedDimension[]
111 */
112 public function getDimensions()
113 {
114 return $this->dimensions;
115 }
116 /**
117 * @param bool
118 */
119 public function setEnableAllDimensionCombinations($enableAllDimensionCombinations)
120 {
121 $this->enableAllDimensionCombinations = $enableAllDimensionCombinations;
122 }
123 /**
124 * @return bool
125 */
126 public function getEnableAllDimensionCombinations()
127 {
128 return $this->enableAllDimensionCombinations;
129 }
130 /**
131 * @param string[]
132 */
133 public function setMetricNames($metricNames)
134 {
135 $this->metricNames = $metricNames;
136 }
137 /**
138 * @return string[]
139 */
140 public function getMetricNames()
141 {
142 return $this->metricNames;
143 }
144 /**
145 * @param string[]
146 */
147 public function setReachByFrequencyMetricNames($reachByFrequencyMetricNames)
148 {
149 $this->reachByFrequencyMetricNames = $reachByFrequencyMetricNames;
150 }
151 /**
152 * @return string[]
153 */
154 public function getReachByFrequencyMetricNames()
155 {
156 return $this->reachByFrequencyMetricNames;
157 }
158}
159
160// Adding a class alias for backwards compatibility with the previous class name.
161class_alias(ReportReachCriteria::class, 'Google_Service_Dfareporting_ReportReachCriteria');
Note: See TracBrowser for help on using the repository browser.