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

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

Upload project files

  • Property mode set to 100644
File size: 2.9 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 TvCampaignSummary extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $endDate;
26 /**
27 * @var string
28 */
29 public $grp;
30 /**
31 * @var string
32 */
33 public $id;
34 /**
35 * @var string
36 */
37 public $impressions;
38 /**
39 * @var string
40 */
41 public $kind;
42 /**
43 * @var string
44 */
45 public $name;
46 public $spend;
47 /**
48 * @var string
49 */
50 public $startDate;
51 /**
52 * @var string
53 */
54 public $type;
55
56 /**
57 * @param string
58 */
59 public function setEndDate($endDate)
60 {
61 $this->endDate = $endDate;
62 }
63 /**
64 * @return string
65 */
66 public function getEndDate()
67 {
68 return $this->endDate;
69 }
70 /**
71 * @param string
72 */
73 public function setGrp($grp)
74 {
75 $this->grp = $grp;
76 }
77 /**
78 * @return string
79 */
80 public function getGrp()
81 {
82 return $this->grp;
83 }
84 /**
85 * @param string
86 */
87 public function setId($id)
88 {
89 $this->id = $id;
90 }
91 /**
92 * @return string
93 */
94 public function getId()
95 {
96 return $this->id;
97 }
98 /**
99 * @param string
100 */
101 public function setImpressions($impressions)
102 {
103 $this->impressions = $impressions;
104 }
105 /**
106 * @return string
107 */
108 public function getImpressions()
109 {
110 return $this->impressions;
111 }
112 /**
113 * @param string
114 */
115 public function setKind($kind)
116 {
117 $this->kind = $kind;
118 }
119 /**
120 * @return string
121 */
122 public function getKind()
123 {
124 return $this->kind;
125 }
126 /**
127 * @param string
128 */
129 public function setName($name)
130 {
131 $this->name = $name;
132 }
133 /**
134 * @return string
135 */
136 public function getName()
137 {
138 return $this->name;
139 }
140 public function setSpend($spend)
141 {
142 $this->spend = $spend;
143 }
144 public function getSpend()
145 {
146 return $this->spend;
147 }
148 /**
149 * @param string
150 */
151 public function setStartDate($startDate)
152 {
153 $this->startDate = $startDate;
154 }
155 /**
156 * @return string
157 */
158 public function getStartDate()
159 {
160 return $this->startDate;
161 }
162 /**
163 * @param string
164 */
165 public function setType($type)
166 {
167 $this->type = $type;
168 }
169 /**
170 * @return string
171 */
172 public function getType()
173 {
174 return $this->type;
175 }
176}
177
178// Adding a class alias for backwards compatibility with the previous class name.
179class_alias(TvCampaignSummary::class, 'Google_Service_Dfareporting_TvCampaignSummary');
Note: See TracBrowser for help on using the repository browser.