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 TextStyleSuggestionState extends \Google\Model
21{
22  /**
23   * @var bool
24   */
25  public $backgroundColorSuggested;
26  /**
27   * @var bool
28   */
29  public $baselineOffsetSuggested;
30  /**
31   * @var bool
32   */
33  public $boldSuggested;
34  /**
35   * @var bool
36   */
37  public $fontSizeSuggested;
38  /**
39   * @var bool
40   */
41  public $foregroundColorSuggested;
42  /**
43   * @var bool
44   */
45  public $italicSuggested;
46  /**
47   * @var bool
48   */
49  public $linkSuggested;
50  /**
51   * @var bool
52   */
53  public $smallCapsSuggested;
54  /**
55   * @var bool
56   */
57  public $strikethroughSuggested;
58  /**
59   * @var bool
60   */
61  public $underlineSuggested;
62  /**
63   * @var bool
64   */
65  public $weightedFontFamilySuggested;
66
67  /**
68   * @param bool
69   */
70  public function setBackgroundColorSuggested($backgroundColorSuggested)
71  {
72    $this->backgroundColorSuggested = $backgroundColorSuggested;
73  }
74  /**
75   * @return bool
76   */
77  public function getBackgroundColorSuggested()
78  {
79    return $this->backgroundColorSuggested;
80  }
81  /**
82   * @param bool
83   */
84  public function setBaselineOffsetSuggested($baselineOffsetSuggested)
85  {
86    $this->baselineOffsetSuggested = $baselineOffsetSuggested;
87  }
88  /**
89   * @return bool
90   */
91  public function getBaselineOffsetSuggested()
92  {
93    return $this->baselineOffsetSuggested;
94  }
95  /**
96   * @param bool
97   */
98  public function setBoldSuggested($boldSuggested)
99  {
100    $this->boldSuggested = $boldSuggested;
101  }
102  /**
103   * @return bool
104   */
105  public function getBoldSuggested()
106  {
107    return $this->boldSuggested;
108  }
109  /**
110   * @param bool
111   */
112  public function setFontSizeSuggested($fontSizeSuggested)
113  {
114    $this->fontSizeSuggested = $fontSizeSuggested;
115  }
116  /**
117   * @return bool
118   */
119  public function getFontSizeSuggested()
120  {
121    return $this->fontSizeSuggested;
122  }
123  /**
124   * @param bool
125   */
126  public function setForegroundColorSuggested($foregroundColorSuggested)
127  {
128    $this->foregroundColorSuggested = $foregroundColorSuggested;
129  }
130  /**
131   * @return bool
132   */
133  public function getForegroundColorSuggested()
134  {
135    return $this->foregroundColorSuggested;
136  }
137  /**
138   * @param bool
139   */
140  public function setItalicSuggested($italicSuggested)
141  {
142    $this->italicSuggested = $italicSuggested;
143  }
144  /**
145   * @return bool
146   */
147  public function getItalicSuggested()
148  {
149    return $this->italicSuggested;
150  }
151  /**
152   * @param bool
153   */
154  public function setLinkSuggested($linkSuggested)
155  {
156    $this->linkSuggested = $linkSuggested;
157  }
158  /**
159   * @return bool
160   */
161  public function getLinkSuggested()
162  {
163    return $this->linkSuggested;
164  }
165  /**
166   * @param bool
167   */
168  public function setSmallCapsSuggested($smallCapsSuggested)
169  {
170    $this->smallCapsSuggested = $smallCapsSuggested;
171  }
172  /**
173   * @return bool
174   */
175  public function getSmallCapsSuggested()
176  {
177    return $this->smallCapsSuggested;
178  }
179  /**
180   * @param bool
181   */
182  public function setStrikethroughSuggested($strikethroughSuggested)
183  {
184    $this->strikethroughSuggested = $strikethroughSuggested;
185  }
186  /**
187   * @return bool
188   */
189  public function getStrikethroughSuggested()
190  {
191    return $this->strikethroughSuggested;
192  }
193  /**
194   * @param bool
195   */
196  public function setUnderlineSuggested($underlineSuggested)
197  {
198    $this->underlineSuggested = $underlineSuggested;
199  }
200  /**
201   * @return bool
202   */
203  public function getUnderlineSuggested()
204  {
205    return $this->underlineSuggested;
206  }
207  /**
208   * @param bool
209   */
210  public function setWeightedFontFamilySuggested($weightedFontFamilySuggested)
211  {
212    $this->weightedFontFamilySuggested = $weightedFontFamilySuggested;
213  }
214  /**
215   * @return bool
216   */
217  public function getWeightedFontFamilySuggested()
218  {
219    return $this->weightedFontFamilySuggested;
220  }
221}
222
223// Adding a class alias for backwards compatibility with the previous class name.
224class_alias(TextStyleSuggestionState::class, 'Google_Service_Docs_TextStyleSuggestionState');
225