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 |
|
---|
18 | namespace Google\Service\Docs;
|
---|
19 |
|
---|
20 | class EmbeddedObjectSuggestionState extends \Google\Model
|
---|
21 | {
|
---|
22 | /**
|
---|
23 | * @var bool
|
---|
24 | */
|
---|
25 | public $descriptionSuggested;
|
---|
26 | protected $embeddedDrawingPropertiesSuggestionStateType = EmbeddedDrawingPropertiesSuggestionState::class;
|
---|
27 | protected $embeddedDrawingPropertiesSuggestionStateDataType = '';
|
---|
28 | protected $embeddedObjectBorderSuggestionStateType = EmbeddedObjectBorderSuggestionState::class;
|
---|
29 | protected $embeddedObjectBorderSuggestionStateDataType = '';
|
---|
30 | protected $imagePropertiesSuggestionStateType = ImagePropertiesSuggestionState::class;
|
---|
31 | protected $imagePropertiesSuggestionStateDataType = '';
|
---|
32 | protected $linkedContentReferenceSuggestionStateType = LinkedContentReferenceSuggestionState::class;
|
---|
33 | protected $linkedContentReferenceSuggestionStateDataType = '';
|
---|
34 | /**
|
---|
35 | * @var bool
|
---|
36 | */
|
---|
37 | public $marginBottomSuggested;
|
---|
38 | /**
|
---|
39 | * @var bool
|
---|
40 | */
|
---|
41 | public $marginLeftSuggested;
|
---|
42 | /**
|
---|
43 | * @var bool
|
---|
44 | */
|
---|
45 | public $marginRightSuggested;
|
---|
46 | /**
|
---|
47 | * @var bool
|
---|
48 | */
|
---|
49 | public $marginTopSuggested;
|
---|
50 | protected $sizeSuggestionStateType = SizeSuggestionState::class;
|
---|
51 | protected $sizeSuggestionStateDataType = '';
|
---|
52 | /**
|
---|
53 | * @var bool
|
---|
54 | */
|
---|
55 | public $titleSuggested;
|
---|
56 |
|
---|
57 | /**
|
---|
58 | * @param bool
|
---|
59 | */
|
---|
60 | public function setDescriptionSuggested($descriptionSuggested)
|
---|
61 | {
|
---|
62 | $this->descriptionSuggested = $descriptionSuggested;
|
---|
63 | }
|
---|
64 | /**
|
---|
65 | * @return bool
|
---|
66 | */
|
---|
67 | public function getDescriptionSuggested()
|
---|
68 | {
|
---|
69 | return $this->descriptionSuggested;
|
---|
70 | }
|
---|
71 | /**
|
---|
72 | * @param EmbeddedDrawingPropertiesSuggestionState
|
---|
73 | */
|
---|
74 | public function setEmbeddedDrawingPropertiesSuggestionState(EmbeddedDrawingPropertiesSuggestionState $embeddedDrawingPropertiesSuggestionState)
|
---|
75 | {
|
---|
76 | $this->embeddedDrawingPropertiesSuggestionState = $embeddedDrawingPropertiesSuggestionState;
|
---|
77 | }
|
---|
78 | /**
|
---|
79 | * @return EmbeddedDrawingPropertiesSuggestionState
|
---|
80 | */
|
---|
81 | public function getEmbeddedDrawingPropertiesSuggestionState()
|
---|
82 | {
|
---|
83 | return $this->embeddedDrawingPropertiesSuggestionState;
|
---|
84 | }
|
---|
85 | /**
|
---|
86 | * @param EmbeddedObjectBorderSuggestionState
|
---|
87 | */
|
---|
88 | public function setEmbeddedObjectBorderSuggestionState(EmbeddedObjectBorderSuggestionState $embeddedObjectBorderSuggestionState)
|
---|
89 | {
|
---|
90 | $this->embeddedObjectBorderSuggestionState = $embeddedObjectBorderSuggestionState;
|
---|
91 | }
|
---|
92 | /**
|
---|
93 | * @return EmbeddedObjectBorderSuggestionState
|
---|
94 | */
|
---|
95 | public function getEmbeddedObjectBorderSuggestionState()
|
---|
96 | {
|
---|
97 | return $this->embeddedObjectBorderSuggestionState;
|
---|
98 | }
|
---|
99 | /**
|
---|
100 | * @param ImagePropertiesSuggestionState
|
---|
101 | */
|
---|
102 | public function setImagePropertiesSuggestionState(ImagePropertiesSuggestionState $imagePropertiesSuggestionState)
|
---|
103 | {
|
---|
104 | $this->imagePropertiesSuggestionState = $imagePropertiesSuggestionState;
|
---|
105 | }
|
---|
106 | /**
|
---|
107 | * @return ImagePropertiesSuggestionState
|
---|
108 | */
|
---|
109 | public function getImagePropertiesSuggestionState()
|
---|
110 | {
|
---|
111 | return $this->imagePropertiesSuggestionState;
|
---|
112 | }
|
---|
113 | /**
|
---|
114 | * @param LinkedContentReferenceSuggestionState
|
---|
115 | */
|
---|
116 | public function setLinkedContentReferenceSuggestionState(LinkedContentReferenceSuggestionState $linkedContentReferenceSuggestionState)
|
---|
117 | {
|
---|
118 | $this->linkedContentReferenceSuggestionState = $linkedContentReferenceSuggestionState;
|
---|
119 | }
|
---|
120 | /**
|
---|
121 | * @return LinkedContentReferenceSuggestionState
|
---|
122 | */
|
---|
123 | public function getLinkedContentReferenceSuggestionState()
|
---|
124 | {
|
---|
125 | return $this->linkedContentReferenceSuggestionState;
|
---|
126 | }
|
---|
127 | /**
|
---|
128 | * @param bool
|
---|
129 | */
|
---|
130 | public function setMarginBottomSuggested($marginBottomSuggested)
|
---|
131 | {
|
---|
132 | $this->marginBottomSuggested = $marginBottomSuggested;
|
---|
133 | }
|
---|
134 | /**
|
---|
135 | * @return bool
|
---|
136 | */
|
---|
137 | public function getMarginBottomSuggested()
|
---|
138 | {
|
---|
139 | return $this->marginBottomSuggested;
|
---|
140 | }
|
---|
141 | /**
|
---|
142 | * @param bool
|
---|
143 | */
|
---|
144 | public function setMarginLeftSuggested($marginLeftSuggested)
|
---|
145 | {
|
---|
146 | $this->marginLeftSuggested = $marginLeftSuggested;
|
---|
147 | }
|
---|
148 | /**
|
---|
149 | * @return bool
|
---|
150 | */
|
---|
151 | public function getMarginLeftSuggested()
|
---|
152 | {
|
---|
153 | return $this->marginLeftSuggested;
|
---|
154 | }
|
---|
155 | /**
|
---|
156 | * @param bool
|
---|
157 | */
|
---|
158 | public function setMarginRightSuggested($marginRightSuggested)
|
---|
159 | {
|
---|
160 | $this->marginRightSuggested = $marginRightSuggested;
|
---|
161 | }
|
---|
162 | /**
|
---|
163 | * @return bool
|
---|
164 | */
|
---|
165 | public function getMarginRightSuggested()
|
---|
166 | {
|
---|
167 | return $this->marginRightSuggested;
|
---|
168 | }
|
---|
169 | /**
|
---|
170 | * @param bool
|
---|
171 | */
|
---|
172 | public function setMarginTopSuggested($marginTopSuggested)
|
---|
173 | {
|
---|
174 | $this->marginTopSuggested = $marginTopSuggested;
|
---|
175 | }
|
---|
176 | /**
|
---|
177 | * @return bool
|
---|
178 | */
|
---|
179 | public function getMarginTopSuggested()
|
---|
180 | {
|
---|
181 | return $this->marginTopSuggested;
|
---|
182 | }
|
---|
183 | /**
|
---|
184 | * @param SizeSuggestionState
|
---|
185 | */
|
---|
186 | public function setSizeSuggestionState(SizeSuggestionState $sizeSuggestionState)
|
---|
187 | {
|
---|
188 | $this->sizeSuggestionState = $sizeSuggestionState;
|
---|
189 | }
|
---|
190 | /**
|
---|
191 | * @return SizeSuggestionState
|
---|
192 | */
|
---|
193 | public function getSizeSuggestionState()
|
---|
194 | {
|
---|
195 | return $this->sizeSuggestionState;
|
---|
196 | }
|
---|
197 | /**
|
---|
198 | * @param bool
|
---|
199 | */
|
---|
200 | public function setTitleSuggested($titleSuggested)
|
---|
201 | {
|
---|
202 | $this->titleSuggested = $titleSuggested;
|
---|
203 | }
|
---|
204 | /**
|
---|
205 | * @return bool
|
---|
206 | */
|
---|
207 | public function getTitleSuggested()
|
---|
208 | {
|
---|
209 | return $this->titleSuggested;
|
---|
210 | }
|
---|
211 | }
|
---|
212 |
|
---|
213 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
214 | class_alias(EmbeddedObjectSuggestionState::class, 'Google_Service_Docs_EmbeddedObjectSuggestionState');
|
---|