source: vendor/google/apiclient-services/src/Docs/DocumentStyleSuggestionState.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: 8.0 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\Docs;
19
20class DocumentStyleSuggestionState extends \Google\Model
21{
22 protected $backgroundSuggestionStateType = BackgroundSuggestionState::class;
23 protected $backgroundSuggestionStateDataType = '';
24 /**
25 * @var bool
26 */
27 public $defaultFooterIdSuggested;
28 /**
29 * @var bool
30 */
31 public $defaultHeaderIdSuggested;
32 /**
33 * @var bool
34 */
35 public $evenPageFooterIdSuggested;
36 /**
37 * @var bool
38 */
39 public $evenPageHeaderIdSuggested;
40 /**
41 * @var bool
42 */
43 public $firstPageFooterIdSuggested;
44 /**
45 * @var bool
46 */
47 public $firstPageHeaderIdSuggested;
48 /**
49 * @var bool
50 */
51 public $flipPageOrientationSuggested;
52 /**
53 * @var bool
54 */
55 public $marginBottomSuggested;
56 /**
57 * @var bool
58 */
59 public $marginFooterSuggested;
60 /**
61 * @var bool
62 */
63 public $marginHeaderSuggested;
64 /**
65 * @var bool
66 */
67 public $marginLeftSuggested;
68 /**
69 * @var bool
70 */
71 public $marginRightSuggested;
72 /**
73 * @var bool
74 */
75 public $marginTopSuggested;
76 /**
77 * @var bool
78 */
79 public $pageNumberStartSuggested;
80 protected $pageSizeSuggestionStateType = SizeSuggestionState::class;
81 protected $pageSizeSuggestionStateDataType = '';
82 /**
83 * @var bool
84 */
85 public $useCustomHeaderFooterMarginsSuggested;
86 /**
87 * @var bool
88 */
89 public $useEvenPageHeaderFooterSuggested;
90 /**
91 * @var bool
92 */
93 public $useFirstPageHeaderFooterSuggested;
94
95 /**
96 * @param BackgroundSuggestionState
97 */
98 public function setBackgroundSuggestionState(BackgroundSuggestionState $backgroundSuggestionState)
99 {
100 $this->backgroundSuggestionState = $backgroundSuggestionState;
101 }
102 /**
103 * @return BackgroundSuggestionState
104 */
105 public function getBackgroundSuggestionState()
106 {
107 return $this->backgroundSuggestionState;
108 }
109 /**
110 * @param bool
111 */
112 public function setDefaultFooterIdSuggested($defaultFooterIdSuggested)
113 {
114 $this->defaultFooterIdSuggested = $defaultFooterIdSuggested;
115 }
116 /**
117 * @return bool
118 */
119 public function getDefaultFooterIdSuggested()
120 {
121 return $this->defaultFooterIdSuggested;
122 }
123 /**
124 * @param bool
125 */
126 public function setDefaultHeaderIdSuggested($defaultHeaderIdSuggested)
127 {
128 $this->defaultHeaderIdSuggested = $defaultHeaderIdSuggested;
129 }
130 /**
131 * @return bool
132 */
133 public function getDefaultHeaderIdSuggested()
134 {
135 return $this->defaultHeaderIdSuggested;
136 }
137 /**
138 * @param bool
139 */
140 public function setEvenPageFooterIdSuggested($evenPageFooterIdSuggested)
141 {
142 $this->evenPageFooterIdSuggested = $evenPageFooterIdSuggested;
143 }
144 /**
145 * @return bool
146 */
147 public function getEvenPageFooterIdSuggested()
148 {
149 return $this->evenPageFooterIdSuggested;
150 }
151 /**
152 * @param bool
153 */
154 public function setEvenPageHeaderIdSuggested($evenPageHeaderIdSuggested)
155 {
156 $this->evenPageHeaderIdSuggested = $evenPageHeaderIdSuggested;
157 }
158 /**
159 * @return bool
160 */
161 public function getEvenPageHeaderIdSuggested()
162 {
163 return $this->evenPageHeaderIdSuggested;
164 }
165 /**
166 * @param bool
167 */
168 public function setFirstPageFooterIdSuggested($firstPageFooterIdSuggested)
169 {
170 $this->firstPageFooterIdSuggested = $firstPageFooterIdSuggested;
171 }
172 /**
173 * @return bool
174 */
175 public function getFirstPageFooterIdSuggested()
176 {
177 return $this->firstPageFooterIdSuggested;
178 }
179 /**
180 * @param bool
181 */
182 public function setFirstPageHeaderIdSuggested($firstPageHeaderIdSuggested)
183 {
184 $this->firstPageHeaderIdSuggested = $firstPageHeaderIdSuggested;
185 }
186 /**
187 * @return bool
188 */
189 public function getFirstPageHeaderIdSuggested()
190 {
191 return $this->firstPageHeaderIdSuggested;
192 }
193 /**
194 * @param bool
195 */
196 public function setFlipPageOrientationSuggested($flipPageOrientationSuggested)
197 {
198 $this->flipPageOrientationSuggested = $flipPageOrientationSuggested;
199 }
200 /**
201 * @return bool
202 */
203 public function getFlipPageOrientationSuggested()
204 {
205 return $this->flipPageOrientationSuggested;
206 }
207 /**
208 * @param bool
209 */
210 public function setMarginBottomSuggested($marginBottomSuggested)
211 {
212 $this->marginBottomSuggested = $marginBottomSuggested;
213 }
214 /**
215 * @return bool
216 */
217 public function getMarginBottomSuggested()
218 {
219 return $this->marginBottomSuggested;
220 }
221 /**
222 * @param bool
223 */
224 public function setMarginFooterSuggested($marginFooterSuggested)
225 {
226 $this->marginFooterSuggested = $marginFooterSuggested;
227 }
228 /**
229 * @return bool
230 */
231 public function getMarginFooterSuggested()
232 {
233 return $this->marginFooterSuggested;
234 }
235 /**
236 * @param bool
237 */
238 public function setMarginHeaderSuggested($marginHeaderSuggested)
239 {
240 $this->marginHeaderSuggested = $marginHeaderSuggested;
241 }
242 /**
243 * @return bool
244 */
245 public function getMarginHeaderSuggested()
246 {
247 return $this->marginHeaderSuggested;
248 }
249 /**
250 * @param bool
251 */
252 public function setMarginLeftSuggested($marginLeftSuggested)
253 {
254 $this->marginLeftSuggested = $marginLeftSuggested;
255 }
256 /**
257 * @return bool
258 */
259 public function getMarginLeftSuggested()
260 {
261 return $this->marginLeftSuggested;
262 }
263 /**
264 * @param bool
265 */
266 public function setMarginRightSuggested($marginRightSuggested)
267 {
268 $this->marginRightSuggested = $marginRightSuggested;
269 }
270 /**
271 * @return bool
272 */
273 public function getMarginRightSuggested()
274 {
275 return $this->marginRightSuggested;
276 }
277 /**
278 * @param bool
279 */
280 public function setMarginTopSuggested($marginTopSuggested)
281 {
282 $this->marginTopSuggested = $marginTopSuggested;
283 }
284 /**
285 * @return bool
286 */
287 public function getMarginTopSuggested()
288 {
289 return $this->marginTopSuggested;
290 }
291 /**
292 * @param bool
293 */
294 public function setPageNumberStartSuggested($pageNumberStartSuggested)
295 {
296 $this->pageNumberStartSuggested = $pageNumberStartSuggested;
297 }
298 /**
299 * @return bool
300 */
301 public function getPageNumberStartSuggested()
302 {
303 return $this->pageNumberStartSuggested;
304 }
305 /**
306 * @param SizeSuggestionState
307 */
308 public function setPageSizeSuggestionState(SizeSuggestionState $pageSizeSuggestionState)
309 {
310 $this->pageSizeSuggestionState = $pageSizeSuggestionState;
311 }
312 /**
313 * @return SizeSuggestionState
314 */
315 public function getPageSizeSuggestionState()
316 {
317 return $this->pageSizeSuggestionState;
318 }
319 /**
320 * @param bool
321 */
322 public function setUseCustomHeaderFooterMarginsSuggested($useCustomHeaderFooterMarginsSuggested)
323 {
324 $this->useCustomHeaderFooterMarginsSuggested = $useCustomHeaderFooterMarginsSuggested;
325 }
326 /**
327 * @return bool
328 */
329 public function getUseCustomHeaderFooterMarginsSuggested()
330 {
331 return $this->useCustomHeaderFooterMarginsSuggested;
332 }
333 /**
334 * @param bool
335 */
336 public function setUseEvenPageHeaderFooterSuggested($useEvenPageHeaderFooterSuggested)
337 {
338 $this->useEvenPageHeaderFooterSuggested = $useEvenPageHeaderFooterSuggested;
339 }
340 /**
341 * @return bool
342 */
343 public function getUseEvenPageHeaderFooterSuggested()
344 {
345 return $this->useEvenPageHeaderFooterSuggested;
346 }
347 /**
348 * @param bool
349 */
350 public function setUseFirstPageHeaderFooterSuggested($useFirstPageHeaderFooterSuggested)
351 {
352 $this->useFirstPageHeaderFooterSuggested = $useFirstPageHeaderFooterSuggested;
353 }
354 /**
355 * @return bool
356 */
357 public function getUseFirstPageHeaderFooterSuggested()
358 {
359 return $this->useFirstPageHeaderFooterSuggested;
360 }
361}
362
363// Adding a class alias for backwards compatibility with the previous class name.
364class_alias(DocumentStyleSuggestionState::class, 'Google_Service_Docs_DocumentStyleSuggestionState');
Note: See TracBrowser for help on using the repository browser.