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 NestingLevelSuggestionState extends \Google\Model 21{ 22 /** 23 * @var bool 24 */ 25 public $bulletAlignmentSuggested; 26 /** 27 * @var bool 28 */ 29 public $glyphFormatSuggested; 30 /** 31 * @var bool 32 */ 33 public $glyphSymbolSuggested; 34 /** 35 * @var bool 36 */ 37 public $glyphTypeSuggested; 38 /** 39 * @var bool 40 */ 41 public $indentFirstLineSuggested; 42 /** 43 * @var bool 44 */ 45 public $indentStartSuggested; 46 /** 47 * @var bool 48 */ 49 public $startNumberSuggested; 50 protected $textStyleSuggestionStateType = TextStyleSuggestionState::class; 51 protected $textStyleSuggestionStateDataType = ''; 52 53 /** 54 * @param bool 55 */ 56 public function setBulletAlignmentSuggested($bulletAlignmentSuggested) 57 { 58 $this->bulletAlignmentSuggested = $bulletAlignmentSuggested; 59 } 60 /** 61 * @return bool 62 */ 63 public function getBulletAlignmentSuggested() 64 { 65 return $this->bulletAlignmentSuggested; 66 } 67 /** 68 * @param bool 69 */ 70 public function setGlyphFormatSuggested($glyphFormatSuggested) 71 { 72 $this->glyphFormatSuggested = $glyphFormatSuggested; 73 } 74 /** 75 * @return bool 76 */ 77 public function getGlyphFormatSuggested() 78 { 79 return $this->glyphFormatSuggested; 80 } 81 /** 82 * @param bool 83 */ 84 public function setGlyphSymbolSuggested($glyphSymbolSuggested) 85 { 86 $this->glyphSymbolSuggested = $glyphSymbolSuggested; 87 } 88 /** 89 * @return bool 90 */ 91 public function getGlyphSymbolSuggested() 92 { 93 return $this->glyphSymbolSuggested; 94 } 95 /** 96 * @param bool 97 */ 98 public function setGlyphTypeSuggested($glyphTypeSuggested) 99 { 100 $this->glyphTypeSuggested = $glyphTypeSuggested; 101 } 102 /** 103 * @return bool 104 */ 105 public function getGlyphTypeSuggested() 106 { 107 return $this->glyphTypeSuggested; 108 } 109 /** 110 * @param bool 111 */ 112 public function setIndentFirstLineSuggested($indentFirstLineSuggested) 113 { 114 $this->indentFirstLineSuggested = $indentFirstLineSuggested; 115 } 116 /** 117 * @return bool 118 */ 119 public function getIndentFirstLineSuggested() 120 { 121 return $this->indentFirstLineSuggested; 122 } 123 /** 124 * @param bool 125 */ 126 public function setIndentStartSuggested($indentStartSuggested) 127 { 128 $this->indentStartSuggested = $indentStartSuggested; 129 } 130 /** 131 * @return bool 132 */ 133 public function getIndentStartSuggested() 134 { 135 return $this->indentStartSuggested; 136 } 137 /** 138 * @param bool 139 */ 140 public function setStartNumberSuggested($startNumberSuggested) 141 { 142 $this->startNumberSuggested = $startNumberSuggested; 143 } 144 /** 145 * @return bool 146 */ 147 public function getStartNumberSuggested() 148 { 149 return $this->startNumberSuggested; 150 } 151 /** 152 * @param TextStyleSuggestionState 153 */ 154 public function setTextStyleSuggestionState(TextStyleSuggestionState $textStyleSuggestionState) 155 { 156 $this->textStyleSuggestionState = $textStyleSuggestionState; 157 } 158 /** 159 * @return TextStyleSuggestionState 160 */ 161 public function getTextStyleSuggestionState() 162 { 163 return $this->textStyleSuggestionState; 164 } 165} 166 167// Adding a class alias for backwards compatibility with the previous class name. 168class_alias(NestingLevelSuggestionState::class, 'Google_Service_Docs_NestingLevelSuggestionState'); 169