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 ParagraphStyleSuggestionState extends \Google\Model 21{ 22 /** 23 * @var bool 24 */ 25 public $alignmentSuggested; 26 /** 27 * @var bool 28 */ 29 public $avoidWidowAndOrphanSuggested; 30 /** 31 * @var bool 32 */ 33 public $borderBetweenSuggested; 34 /** 35 * @var bool 36 */ 37 public $borderBottomSuggested; 38 /** 39 * @var bool 40 */ 41 public $borderLeftSuggested; 42 /** 43 * @var bool 44 */ 45 public $borderRightSuggested; 46 /** 47 * @var bool 48 */ 49 public $borderTopSuggested; 50 /** 51 * @var bool 52 */ 53 public $directionSuggested; 54 /** 55 * @var bool 56 */ 57 public $headingIdSuggested; 58 /** 59 * @var bool 60 */ 61 public $indentEndSuggested; 62 /** 63 * @var bool 64 */ 65 public $indentFirstLineSuggested; 66 /** 67 * @var bool 68 */ 69 public $indentStartSuggested; 70 /** 71 * @var bool 72 */ 73 public $keepLinesTogetherSuggested; 74 /** 75 * @var bool 76 */ 77 public $keepWithNextSuggested; 78 /** 79 * @var bool 80 */ 81 public $lineSpacingSuggested; 82 /** 83 * @var bool 84 */ 85 public $namedStyleTypeSuggested; 86 protected $shadingSuggestionStateType = ShadingSuggestionState::class; 87 protected $shadingSuggestionStateDataType = ''; 88 /** 89 * @var bool 90 */ 91 public $spaceAboveSuggested; 92 /** 93 * @var bool 94 */ 95 public $spaceBelowSuggested; 96 /** 97 * @var bool 98 */ 99 public $spacingModeSuggested; 100 101 /** 102 * @param bool 103 */ 104 public function setAlignmentSuggested($alignmentSuggested) 105 { 106 $this->alignmentSuggested = $alignmentSuggested; 107 } 108 /** 109 * @return bool 110 */ 111 public function getAlignmentSuggested() 112 { 113 return $this->alignmentSuggested; 114 } 115 /** 116 * @param bool 117 */ 118 public function setAvoidWidowAndOrphanSuggested($avoidWidowAndOrphanSuggested) 119 { 120 $this->avoidWidowAndOrphanSuggested = $avoidWidowAndOrphanSuggested; 121 } 122 /** 123 * @return bool 124 */ 125 public function getAvoidWidowAndOrphanSuggested() 126 { 127 return $this->avoidWidowAndOrphanSuggested; 128 } 129 /** 130 * @param bool 131 */ 132 public function setBorderBetweenSuggested($borderBetweenSuggested) 133 { 134 $this->borderBetweenSuggested = $borderBetweenSuggested; 135 } 136 /** 137 * @return bool 138 */ 139 public function getBorderBetweenSuggested() 140 { 141 return $this->borderBetweenSuggested; 142 } 143 /** 144 * @param bool 145 */ 146 public function setBorderBottomSuggested($borderBottomSuggested) 147 { 148 $this->borderBottomSuggested = $borderBottomSuggested; 149 } 150 /** 151 * @return bool 152 */ 153 public function getBorderBottomSuggested() 154 { 155 return $this->borderBottomSuggested; 156 } 157 /** 158 * @param bool 159 */ 160 public function setBorderLeftSuggested($borderLeftSuggested) 161 { 162 $this->borderLeftSuggested = $borderLeftSuggested; 163 } 164 /** 165 * @return bool 166 */ 167 public function getBorderLeftSuggested() 168 { 169 return $this->borderLeftSuggested; 170 } 171 /** 172 * @param bool 173 */ 174 public function setBorderRightSuggested($borderRightSuggested) 175 { 176 $this->borderRightSuggested = $borderRightSuggested; 177 } 178 /** 179 * @return bool 180 */ 181 public function getBorderRightSuggested() 182 { 183 return $this->borderRightSuggested; 184 } 185 /** 186 * @param bool 187 */ 188 public function setBorderTopSuggested($borderTopSuggested) 189 { 190 $this->borderTopSuggested = $borderTopSuggested; 191 } 192 /** 193 * @return bool 194 */ 195 public function getBorderTopSuggested() 196 { 197 return $this->borderTopSuggested; 198 } 199 /** 200 * @param bool 201 */ 202 public function setDirectionSuggested($directionSuggested) 203 { 204 $this->directionSuggested = $directionSuggested; 205 } 206 /** 207 * @return bool 208 */ 209 public function getDirectionSuggested() 210 { 211 return $this->directionSuggested; 212 } 213 /** 214 * @param bool 215 */ 216 public function setHeadingIdSuggested($headingIdSuggested) 217 { 218 $this->headingIdSuggested = $headingIdSuggested; 219 } 220 /** 221 * @return bool 222 */ 223 public function getHeadingIdSuggested() 224 { 225 return $this->headingIdSuggested; 226 } 227 /** 228 * @param bool 229 */ 230 public function setIndentEndSuggested($indentEndSuggested) 231 { 232 $this->indentEndSuggested = $indentEndSuggested; 233 } 234 /** 235 * @return bool 236 */ 237 public function getIndentEndSuggested() 238 { 239 return $this->indentEndSuggested; 240 } 241 /** 242 * @param bool 243 */ 244 public function setIndentFirstLineSuggested($indentFirstLineSuggested) 245 { 246 $this->indentFirstLineSuggested = $indentFirstLineSuggested; 247 } 248 /** 249 * @return bool 250 */ 251 public function getIndentFirstLineSuggested() 252 { 253 return $this->indentFirstLineSuggested; 254 } 255 /** 256 * @param bool 257 */ 258 public function setIndentStartSuggested($indentStartSuggested) 259 { 260 $this->indentStartSuggested = $indentStartSuggested; 261 } 262 /** 263 * @return bool 264 */ 265 public function getIndentStartSuggested() 266 { 267 return $this->indentStartSuggested; 268 } 269 /** 270 * @param bool 271 */ 272 public function setKeepLinesTogetherSuggested($keepLinesTogetherSuggested) 273 { 274 $this->keepLinesTogetherSuggested = $keepLinesTogetherSuggested; 275 } 276 /** 277 * @return bool 278 */ 279 public function getKeepLinesTogetherSuggested() 280 { 281 return $this->keepLinesTogetherSuggested; 282 } 283 /** 284 * @param bool 285 */ 286 public function setKeepWithNextSuggested($keepWithNextSuggested) 287 { 288 $this->keepWithNextSuggested = $keepWithNextSuggested; 289 } 290 /** 291 * @return bool 292 */ 293 public function getKeepWithNextSuggested() 294 { 295 return $this->keepWithNextSuggested; 296 } 297 /** 298 * @param bool 299 */ 300 public function setLineSpacingSuggested($lineSpacingSuggested) 301 { 302 $this->lineSpacingSuggested = $lineSpacingSuggested; 303 } 304 /** 305 * @return bool 306 */ 307 public function getLineSpacingSuggested() 308 { 309 return $this->lineSpacingSuggested; 310 } 311 /** 312 * @param bool 313 */ 314 public function setNamedStyleTypeSuggested($namedStyleTypeSuggested) 315 { 316 $this->namedStyleTypeSuggested = $namedStyleTypeSuggested; 317 } 318 /** 319 * @return bool 320 */ 321 public function getNamedStyleTypeSuggested() 322 { 323 return $this->namedStyleTypeSuggested; 324 } 325 /** 326 * @param ShadingSuggestionState 327 */ 328 public function setShadingSuggestionState(ShadingSuggestionState $shadingSuggestionState) 329 { 330 $this->shadingSuggestionState = $shadingSuggestionState; 331 } 332 /** 333 * @return ShadingSuggestionState 334 */ 335 public function getShadingSuggestionState() 336 { 337 return $this->shadingSuggestionState; 338 } 339 /** 340 * @param bool 341 */ 342 public function setSpaceAboveSuggested($spaceAboveSuggested) 343 { 344 $this->spaceAboveSuggested = $spaceAboveSuggested; 345 } 346 /** 347 * @return bool 348 */ 349 public function getSpaceAboveSuggested() 350 { 351 return $this->spaceAboveSuggested; 352 } 353 /** 354 * @param bool 355 */ 356 public function setSpaceBelowSuggested($spaceBelowSuggested) 357 { 358 $this->spaceBelowSuggested = $spaceBelowSuggested; 359 } 360 /** 361 * @return bool 362 */ 363 public function getSpaceBelowSuggested() 364 { 365 return $this->spaceBelowSuggested; 366 } 367 /** 368 * @param bool 369 */ 370 public function setSpacingModeSuggested($spacingModeSuggested) 371 { 372 $this->spacingModeSuggested = $spacingModeSuggested; 373 } 374 /** 375 * @return bool 376 */ 377 public function getSpacingModeSuggested() 378 { 379 return $this->spacingModeSuggested; 380 } 381} 382 383// Adding a class alias for backwards compatibility with the previous class name. 384class_alias(ParagraphStyleSuggestionState::class, 'Google_Service_Docs_ParagraphStyleSuggestionState'); 385