source: vendor/google/apiclient-services/src/Dfareporting/CompatibleFields.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 4.6 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 CompatibleFields extends \Google\Model
21{
22 protected $crossDimensionReachReportCompatibleFieldsType = CrossDimensionReachReportCompatibleFields::class;
23 protected $crossDimensionReachReportCompatibleFieldsDataType = '';
24 protected $crossMediaReachReportCompatibleFieldsType = CrossMediaReachReportCompatibleFields::class;
25 protected $crossMediaReachReportCompatibleFieldsDataType = '';
26 protected $floodlightReportCompatibleFieldsType = FloodlightReportCompatibleFields::class;
27 protected $floodlightReportCompatibleFieldsDataType = '';
28 /**
29 * @var string
30 */
31 public $kind;
32 protected $pathToConversionReportCompatibleFieldsType = PathToConversionReportCompatibleFields::class;
33 protected $pathToConversionReportCompatibleFieldsDataType = '';
34 protected $reachReportCompatibleFieldsType = ReachReportCompatibleFields::class;
35 protected $reachReportCompatibleFieldsDataType = '';
36 protected $reportCompatibleFieldsType = ReportCompatibleFields::class;
37 protected $reportCompatibleFieldsDataType = '';
38
39 /**
40 * @param CrossDimensionReachReportCompatibleFields
41 */
42 public function setCrossDimensionReachReportCompatibleFields(CrossDimensionReachReportCompatibleFields $crossDimensionReachReportCompatibleFields)
43 {
44 $this->crossDimensionReachReportCompatibleFields = $crossDimensionReachReportCompatibleFields;
45 }
46 /**
47 * @return CrossDimensionReachReportCompatibleFields
48 */
49 public function getCrossDimensionReachReportCompatibleFields()
50 {
51 return $this->crossDimensionReachReportCompatibleFields;
52 }
53 /**
54 * @param CrossMediaReachReportCompatibleFields
55 */
56 public function setCrossMediaReachReportCompatibleFields(CrossMediaReachReportCompatibleFields $crossMediaReachReportCompatibleFields)
57 {
58 $this->crossMediaReachReportCompatibleFields = $crossMediaReachReportCompatibleFields;
59 }
60 /**
61 * @return CrossMediaReachReportCompatibleFields
62 */
63 public function getCrossMediaReachReportCompatibleFields()
64 {
65 return $this->crossMediaReachReportCompatibleFields;
66 }
67 /**
68 * @param FloodlightReportCompatibleFields
69 */
70 public function setFloodlightReportCompatibleFields(FloodlightReportCompatibleFields $floodlightReportCompatibleFields)
71 {
72 $this->floodlightReportCompatibleFields = $floodlightReportCompatibleFields;
73 }
74 /**
75 * @return FloodlightReportCompatibleFields
76 */
77 public function getFloodlightReportCompatibleFields()
78 {
79 return $this->floodlightReportCompatibleFields;
80 }
81 /**
82 * @param string
83 */
84 public function setKind($kind)
85 {
86 $this->kind = $kind;
87 }
88 /**
89 * @return string
90 */
91 public function getKind()
92 {
93 return $this->kind;
94 }
95 /**
96 * @param PathToConversionReportCompatibleFields
97 */
98 public function setPathToConversionReportCompatibleFields(PathToConversionReportCompatibleFields $pathToConversionReportCompatibleFields)
99 {
100 $this->pathToConversionReportCompatibleFields = $pathToConversionReportCompatibleFields;
101 }
102 /**
103 * @return PathToConversionReportCompatibleFields
104 */
105 public function getPathToConversionReportCompatibleFields()
106 {
107 return $this->pathToConversionReportCompatibleFields;
108 }
109 /**
110 * @param ReachReportCompatibleFields
111 */
112 public function setReachReportCompatibleFields(ReachReportCompatibleFields $reachReportCompatibleFields)
113 {
114 $this->reachReportCompatibleFields = $reachReportCompatibleFields;
115 }
116 /**
117 * @return ReachReportCompatibleFields
118 */
119 public function getReachReportCompatibleFields()
120 {
121 return $this->reachReportCompatibleFields;
122 }
123 /**
124 * @param ReportCompatibleFields
125 */
126 public function setReportCompatibleFields(ReportCompatibleFields $reportCompatibleFields)
127 {
128 $this->reportCompatibleFields = $reportCompatibleFields;
129 }
130 /**
131 * @return ReportCompatibleFields
132 */
133 public function getReportCompatibleFields()
134 {
135 return $this->reportCompatibleFields;
136 }
137}
138
139// Adding a class alias for backwards compatibility with the previous class name.
140class_alias(CompatibleFields::class, 'Google_Service_Dfareporting_CompatibleFields');
Note: See TracBrowser for help on using the repository browser.