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 Request extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $createFooterType = CreateFooterRequest::class;
|
---|
23 | protected $createFooterDataType = '';
|
---|
24 | protected $createFootnoteType = CreateFootnoteRequest::class;
|
---|
25 | protected $createFootnoteDataType = '';
|
---|
26 | protected $createHeaderType = CreateHeaderRequest::class;
|
---|
27 | protected $createHeaderDataType = '';
|
---|
28 | protected $createNamedRangeType = CreateNamedRangeRequest::class;
|
---|
29 | protected $createNamedRangeDataType = '';
|
---|
30 | protected $createParagraphBulletsType = CreateParagraphBulletsRequest::class;
|
---|
31 | protected $createParagraphBulletsDataType = '';
|
---|
32 | protected $deleteContentRangeType = DeleteContentRangeRequest::class;
|
---|
33 | protected $deleteContentRangeDataType = '';
|
---|
34 | protected $deleteFooterType = DeleteFooterRequest::class;
|
---|
35 | protected $deleteFooterDataType = '';
|
---|
36 | protected $deleteHeaderType = DeleteHeaderRequest::class;
|
---|
37 | protected $deleteHeaderDataType = '';
|
---|
38 | protected $deleteNamedRangeType = DeleteNamedRangeRequest::class;
|
---|
39 | protected $deleteNamedRangeDataType = '';
|
---|
40 | protected $deleteParagraphBulletsType = DeleteParagraphBulletsRequest::class;
|
---|
41 | protected $deleteParagraphBulletsDataType = '';
|
---|
42 | protected $deletePositionedObjectType = DeletePositionedObjectRequest::class;
|
---|
43 | protected $deletePositionedObjectDataType = '';
|
---|
44 | protected $deleteTableColumnType = DeleteTableColumnRequest::class;
|
---|
45 | protected $deleteTableColumnDataType = '';
|
---|
46 | protected $deleteTableRowType = DeleteTableRowRequest::class;
|
---|
47 | protected $deleteTableRowDataType = '';
|
---|
48 | protected $insertInlineImageType = InsertInlineImageRequest::class;
|
---|
49 | protected $insertInlineImageDataType = '';
|
---|
50 | protected $insertPageBreakType = InsertPageBreakRequest::class;
|
---|
51 | protected $insertPageBreakDataType = '';
|
---|
52 | protected $insertSectionBreakType = InsertSectionBreakRequest::class;
|
---|
53 | protected $insertSectionBreakDataType = '';
|
---|
54 | protected $insertTableType = InsertTableRequest::class;
|
---|
55 | protected $insertTableDataType = '';
|
---|
56 | protected $insertTableColumnType = InsertTableColumnRequest::class;
|
---|
57 | protected $insertTableColumnDataType = '';
|
---|
58 | protected $insertTableRowType = InsertTableRowRequest::class;
|
---|
59 | protected $insertTableRowDataType = '';
|
---|
60 | protected $insertTextType = InsertTextRequest::class;
|
---|
61 | protected $insertTextDataType = '';
|
---|
62 | protected $mergeTableCellsType = MergeTableCellsRequest::class;
|
---|
63 | protected $mergeTableCellsDataType = '';
|
---|
64 | protected $pinTableHeaderRowsType = PinTableHeaderRowsRequest::class;
|
---|
65 | protected $pinTableHeaderRowsDataType = '';
|
---|
66 | protected $replaceAllTextType = ReplaceAllTextRequest::class;
|
---|
67 | protected $replaceAllTextDataType = '';
|
---|
68 | protected $replaceImageType = ReplaceImageRequest::class;
|
---|
69 | protected $replaceImageDataType = '';
|
---|
70 | protected $replaceNamedRangeContentType = ReplaceNamedRangeContentRequest::class;
|
---|
71 | protected $replaceNamedRangeContentDataType = '';
|
---|
72 | protected $unmergeTableCellsType = UnmergeTableCellsRequest::class;
|
---|
73 | protected $unmergeTableCellsDataType = '';
|
---|
74 | protected $updateDocumentStyleType = UpdateDocumentStyleRequest::class;
|
---|
75 | protected $updateDocumentStyleDataType = '';
|
---|
76 | protected $updateParagraphStyleType = UpdateParagraphStyleRequest::class;
|
---|
77 | protected $updateParagraphStyleDataType = '';
|
---|
78 | protected $updateSectionStyleType = UpdateSectionStyleRequest::class;
|
---|
79 | protected $updateSectionStyleDataType = '';
|
---|
80 | protected $updateTableCellStyleType = UpdateTableCellStyleRequest::class;
|
---|
81 | protected $updateTableCellStyleDataType = '';
|
---|
82 | protected $updateTableColumnPropertiesType = UpdateTableColumnPropertiesRequest::class;
|
---|
83 | protected $updateTableColumnPropertiesDataType = '';
|
---|
84 | protected $updateTableRowStyleType = UpdateTableRowStyleRequest::class;
|
---|
85 | protected $updateTableRowStyleDataType = '';
|
---|
86 | protected $updateTextStyleType = UpdateTextStyleRequest::class;
|
---|
87 | protected $updateTextStyleDataType = '';
|
---|
88 |
|
---|
89 | /**
|
---|
90 | * @param CreateFooterRequest
|
---|
91 | */
|
---|
92 | public function setCreateFooter(CreateFooterRequest $createFooter)
|
---|
93 | {
|
---|
94 | $this->createFooter = $createFooter;
|
---|
95 | }
|
---|
96 | /**
|
---|
97 | * @return CreateFooterRequest
|
---|
98 | */
|
---|
99 | public function getCreateFooter()
|
---|
100 | {
|
---|
101 | return $this->createFooter;
|
---|
102 | }
|
---|
103 | /**
|
---|
104 | * @param CreateFootnoteRequest
|
---|
105 | */
|
---|
106 | public function setCreateFootnote(CreateFootnoteRequest $createFootnote)
|
---|
107 | {
|
---|
108 | $this->createFootnote = $createFootnote;
|
---|
109 | }
|
---|
110 | /**
|
---|
111 | * @return CreateFootnoteRequest
|
---|
112 | */
|
---|
113 | public function getCreateFootnote()
|
---|
114 | {
|
---|
115 | return $this->createFootnote;
|
---|
116 | }
|
---|
117 | /**
|
---|
118 | * @param CreateHeaderRequest
|
---|
119 | */
|
---|
120 | public function setCreateHeader(CreateHeaderRequest $createHeader)
|
---|
121 | {
|
---|
122 | $this->createHeader = $createHeader;
|
---|
123 | }
|
---|
124 | /**
|
---|
125 | * @return CreateHeaderRequest
|
---|
126 | */
|
---|
127 | public function getCreateHeader()
|
---|
128 | {
|
---|
129 | return $this->createHeader;
|
---|
130 | }
|
---|
131 | /**
|
---|
132 | * @param CreateNamedRangeRequest
|
---|
133 | */
|
---|
134 | public function setCreateNamedRange(CreateNamedRangeRequest $createNamedRange)
|
---|
135 | {
|
---|
136 | $this->createNamedRange = $createNamedRange;
|
---|
137 | }
|
---|
138 | /**
|
---|
139 | * @return CreateNamedRangeRequest
|
---|
140 | */
|
---|
141 | public function getCreateNamedRange()
|
---|
142 | {
|
---|
143 | return $this->createNamedRange;
|
---|
144 | }
|
---|
145 | /**
|
---|
146 | * @param CreateParagraphBulletsRequest
|
---|
147 | */
|
---|
148 | public function setCreateParagraphBullets(CreateParagraphBulletsRequest $createParagraphBullets)
|
---|
149 | {
|
---|
150 | $this->createParagraphBullets = $createParagraphBullets;
|
---|
151 | }
|
---|
152 | /**
|
---|
153 | * @return CreateParagraphBulletsRequest
|
---|
154 | */
|
---|
155 | public function getCreateParagraphBullets()
|
---|
156 | {
|
---|
157 | return $this->createParagraphBullets;
|
---|
158 | }
|
---|
159 | /**
|
---|
160 | * @param DeleteContentRangeRequest
|
---|
161 | */
|
---|
162 | public function setDeleteContentRange(DeleteContentRangeRequest $deleteContentRange)
|
---|
163 | {
|
---|
164 | $this->deleteContentRange = $deleteContentRange;
|
---|
165 | }
|
---|
166 | /**
|
---|
167 | * @return DeleteContentRangeRequest
|
---|
168 | */
|
---|
169 | public function getDeleteContentRange()
|
---|
170 | {
|
---|
171 | return $this->deleteContentRange;
|
---|
172 | }
|
---|
173 | /**
|
---|
174 | * @param DeleteFooterRequest
|
---|
175 | */
|
---|
176 | public function setDeleteFooter(DeleteFooterRequest $deleteFooter)
|
---|
177 | {
|
---|
178 | $this->deleteFooter = $deleteFooter;
|
---|
179 | }
|
---|
180 | /**
|
---|
181 | * @return DeleteFooterRequest
|
---|
182 | */
|
---|
183 | public function getDeleteFooter()
|
---|
184 | {
|
---|
185 | return $this->deleteFooter;
|
---|
186 | }
|
---|
187 | /**
|
---|
188 | * @param DeleteHeaderRequest
|
---|
189 | */
|
---|
190 | public function setDeleteHeader(DeleteHeaderRequest $deleteHeader)
|
---|
191 | {
|
---|
192 | $this->deleteHeader = $deleteHeader;
|
---|
193 | }
|
---|
194 | /**
|
---|
195 | * @return DeleteHeaderRequest
|
---|
196 | */
|
---|
197 | public function getDeleteHeader()
|
---|
198 | {
|
---|
199 | return $this->deleteHeader;
|
---|
200 | }
|
---|
201 | /**
|
---|
202 | * @param DeleteNamedRangeRequest
|
---|
203 | */
|
---|
204 | public function setDeleteNamedRange(DeleteNamedRangeRequest $deleteNamedRange)
|
---|
205 | {
|
---|
206 | $this->deleteNamedRange = $deleteNamedRange;
|
---|
207 | }
|
---|
208 | /**
|
---|
209 | * @return DeleteNamedRangeRequest
|
---|
210 | */
|
---|
211 | public function getDeleteNamedRange()
|
---|
212 | {
|
---|
213 | return $this->deleteNamedRange;
|
---|
214 | }
|
---|
215 | /**
|
---|
216 | * @param DeleteParagraphBulletsRequest
|
---|
217 | */
|
---|
218 | public function setDeleteParagraphBullets(DeleteParagraphBulletsRequest $deleteParagraphBullets)
|
---|
219 | {
|
---|
220 | $this->deleteParagraphBullets = $deleteParagraphBullets;
|
---|
221 | }
|
---|
222 | /**
|
---|
223 | * @return DeleteParagraphBulletsRequest
|
---|
224 | */
|
---|
225 | public function getDeleteParagraphBullets()
|
---|
226 | {
|
---|
227 | return $this->deleteParagraphBullets;
|
---|
228 | }
|
---|
229 | /**
|
---|
230 | * @param DeletePositionedObjectRequest
|
---|
231 | */
|
---|
232 | public function setDeletePositionedObject(DeletePositionedObjectRequest $deletePositionedObject)
|
---|
233 | {
|
---|
234 | $this->deletePositionedObject = $deletePositionedObject;
|
---|
235 | }
|
---|
236 | /**
|
---|
237 | * @return DeletePositionedObjectRequest
|
---|
238 | */
|
---|
239 | public function getDeletePositionedObject()
|
---|
240 | {
|
---|
241 | return $this->deletePositionedObject;
|
---|
242 | }
|
---|
243 | /**
|
---|
244 | * @param DeleteTableColumnRequest
|
---|
245 | */
|
---|
246 | public function setDeleteTableColumn(DeleteTableColumnRequest $deleteTableColumn)
|
---|
247 | {
|
---|
248 | $this->deleteTableColumn = $deleteTableColumn;
|
---|
249 | }
|
---|
250 | /**
|
---|
251 | * @return DeleteTableColumnRequest
|
---|
252 | */
|
---|
253 | public function getDeleteTableColumn()
|
---|
254 | {
|
---|
255 | return $this->deleteTableColumn;
|
---|
256 | }
|
---|
257 | /**
|
---|
258 | * @param DeleteTableRowRequest
|
---|
259 | */
|
---|
260 | public function setDeleteTableRow(DeleteTableRowRequest $deleteTableRow)
|
---|
261 | {
|
---|
262 | $this->deleteTableRow = $deleteTableRow;
|
---|
263 | }
|
---|
264 | /**
|
---|
265 | * @return DeleteTableRowRequest
|
---|
266 | */
|
---|
267 | public function getDeleteTableRow()
|
---|
268 | {
|
---|
269 | return $this->deleteTableRow;
|
---|
270 | }
|
---|
271 | /**
|
---|
272 | * @param InsertInlineImageRequest
|
---|
273 | */
|
---|
274 | public function setInsertInlineImage(InsertInlineImageRequest $insertInlineImage)
|
---|
275 | {
|
---|
276 | $this->insertInlineImage = $insertInlineImage;
|
---|
277 | }
|
---|
278 | /**
|
---|
279 | * @return InsertInlineImageRequest
|
---|
280 | */
|
---|
281 | public function getInsertInlineImage()
|
---|
282 | {
|
---|
283 | return $this->insertInlineImage;
|
---|
284 | }
|
---|
285 | /**
|
---|
286 | * @param InsertPageBreakRequest
|
---|
287 | */
|
---|
288 | public function setInsertPageBreak(InsertPageBreakRequest $insertPageBreak)
|
---|
289 | {
|
---|
290 | $this->insertPageBreak = $insertPageBreak;
|
---|
291 | }
|
---|
292 | /**
|
---|
293 | * @return InsertPageBreakRequest
|
---|
294 | */
|
---|
295 | public function getInsertPageBreak()
|
---|
296 | {
|
---|
297 | return $this->insertPageBreak;
|
---|
298 | }
|
---|
299 | /**
|
---|
300 | * @param InsertSectionBreakRequest
|
---|
301 | */
|
---|
302 | public function setInsertSectionBreak(InsertSectionBreakRequest $insertSectionBreak)
|
---|
303 | {
|
---|
304 | $this->insertSectionBreak = $insertSectionBreak;
|
---|
305 | }
|
---|
306 | /**
|
---|
307 | * @return InsertSectionBreakRequest
|
---|
308 | */
|
---|
309 | public function getInsertSectionBreak()
|
---|
310 | {
|
---|
311 | return $this->insertSectionBreak;
|
---|
312 | }
|
---|
313 | /**
|
---|
314 | * @param InsertTableRequest
|
---|
315 | */
|
---|
316 | public function setInsertTable(InsertTableRequest $insertTable)
|
---|
317 | {
|
---|
318 | $this->insertTable = $insertTable;
|
---|
319 | }
|
---|
320 | /**
|
---|
321 | * @return InsertTableRequest
|
---|
322 | */
|
---|
323 | public function getInsertTable()
|
---|
324 | {
|
---|
325 | return $this->insertTable;
|
---|
326 | }
|
---|
327 | /**
|
---|
328 | * @param InsertTableColumnRequest
|
---|
329 | */
|
---|
330 | public function setInsertTableColumn(InsertTableColumnRequest $insertTableColumn)
|
---|
331 | {
|
---|
332 | $this->insertTableColumn = $insertTableColumn;
|
---|
333 | }
|
---|
334 | /**
|
---|
335 | * @return InsertTableColumnRequest
|
---|
336 | */
|
---|
337 | public function getInsertTableColumn()
|
---|
338 | {
|
---|
339 | return $this->insertTableColumn;
|
---|
340 | }
|
---|
341 | /**
|
---|
342 | * @param InsertTableRowRequest
|
---|
343 | */
|
---|
344 | public function setInsertTableRow(InsertTableRowRequest $insertTableRow)
|
---|
345 | {
|
---|
346 | $this->insertTableRow = $insertTableRow;
|
---|
347 | }
|
---|
348 | /**
|
---|
349 | * @return InsertTableRowRequest
|
---|
350 | */
|
---|
351 | public function getInsertTableRow()
|
---|
352 | {
|
---|
353 | return $this->insertTableRow;
|
---|
354 | }
|
---|
355 | /**
|
---|
356 | * @param InsertTextRequest
|
---|
357 | */
|
---|
358 | public function setInsertText(InsertTextRequest $insertText)
|
---|
359 | {
|
---|
360 | $this->insertText = $insertText;
|
---|
361 | }
|
---|
362 | /**
|
---|
363 | * @return InsertTextRequest
|
---|
364 | */
|
---|
365 | public function getInsertText()
|
---|
366 | {
|
---|
367 | return $this->insertText;
|
---|
368 | }
|
---|
369 | /**
|
---|
370 | * @param MergeTableCellsRequest
|
---|
371 | */
|
---|
372 | public function setMergeTableCells(MergeTableCellsRequest $mergeTableCells)
|
---|
373 | {
|
---|
374 | $this->mergeTableCells = $mergeTableCells;
|
---|
375 | }
|
---|
376 | /**
|
---|
377 | * @return MergeTableCellsRequest
|
---|
378 | */
|
---|
379 | public function getMergeTableCells()
|
---|
380 | {
|
---|
381 | return $this->mergeTableCells;
|
---|
382 | }
|
---|
383 | /**
|
---|
384 | * @param PinTableHeaderRowsRequest
|
---|
385 | */
|
---|
386 | public function setPinTableHeaderRows(PinTableHeaderRowsRequest $pinTableHeaderRows)
|
---|
387 | {
|
---|
388 | $this->pinTableHeaderRows = $pinTableHeaderRows;
|
---|
389 | }
|
---|
390 | /**
|
---|
391 | * @return PinTableHeaderRowsRequest
|
---|
392 | */
|
---|
393 | public function getPinTableHeaderRows()
|
---|
394 | {
|
---|
395 | return $this->pinTableHeaderRows;
|
---|
396 | }
|
---|
397 | /**
|
---|
398 | * @param ReplaceAllTextRequest
|
---|
399 | */
|
---|
400 | public function setReplaceAllText(ReplaceAllTextRequest $replaceAllText)
|
---|
401 | {
|
---|
402 | $this->replaceAllText = $replaceAllText;
|
---|
403 | }
|
---|
404 | /**
|
---|
405 | * @return ReplaceAllTextRequest
|
---|
406 | */
|
---|
407 | public function getReplaceAllText()
|
---|
408 | {
|
---|
409 | return $this->replaceAllText;
|
---|
410 | }
|
---|
411 | /**
|
---|
412 | * @param ReplaceImageRequest
|
---|
413 | */
|
---|
414 | public function setReplaceImage(ReplaceImageRequest $replaceImage)
|
---|
415 | {
|
---|
416 | $this->replaceImage = $replaceImage;
|
---|
417 | }
|
---|
418 | /**
|
---|
419 | * @return ReplaceImageRequest
|
---|
420 | */
|
---|
421 | public function getReplaceImage()
|
---|
422 | {
|
---|
423 | return $this->replaceImage;
|
---|
424 | }
|
---|
425 | /**
|
---|
426 | * @param ReplaceNamedRangeContentRequest
|
---|
427 | */
|
---|
428 | public function setReplaceNamedRangeContent(ReplaceNamedRangeContentRequest $replaceNamedRangeContent)
|
---|
429 | {
|
---|
430 | $this->replaceNamedRangeContent = $replaceNamedRangeContent;
|
---|
431 | }
|
---|
432 | /**
|
---|
433 | * @return ReplaceNamedRangeContentRequest
|
---|
434 | */
|
---|
435 | public function getReplaceNamedRangeContent()
|
---|
436 | {
|
---|
437 | return $this->replaceNamedRangeContent;
|
---|
438 | }
|
---|
439 | /**
|
---|
440 | * @param UnmergeTableCellsRequest
|
---|
441 | */
|
---|
442 | public function setUnmergeTableCells(UnmergeTableCellsRequest $unmergeTableCells)
|
---|
443 | {
|
---|
444 | $this->unmergeTableCells = $unmergeTableCells;
|
---|
445 | }
|
---|
446 | /**
|
---|
447 | * @return UnmergeTableCellsRequest
|
---|
448 | */
|
---|
449 | public function getUnmergeTableCells()
|
---|
450 | {
|
---|
451 | return $this->unmergeTableCells;
|
---|
452 | }
|
---|
453 | /**
|
---|
454 | * @param UpdateDocumentStyleRequest
|
---|
455 | */
|
---|
456 | public function setUpdateDocumentStyle(UpdateDocumentStyleRequest $updateDocumentStyle)
|
---|
457 | {
|
---|
458 | $this->updateDocumentStyle = $updateDocumentStyle;
|
---|
459 | }
|
---|
460 | /**
|
---|
461 | * @return UpdateDocumentStyleRequest
|
---|
462 | */
|
---|
463 | public function getUpdateDocumentStyle()
|
---|
464 | {
|
---|
465 | return $this->updateDocumentStyle;
|
---|
466 | }
|
---|
467 | /**
|
---|
468 | * @param UpdateParagraphStyleRequest
|
---|
469 | */
|
---|
470 | public function setUpdateParagraphStyle(UpdateParagraphStyleRequest $updateParagraphStyle)
|
---|
471 | {
|
---|
472 | $this->updateParagraphStyle = $updateParagraphStyle;
|
---|
473 | }
|
---|
474 | /**
|
---|
475 | * @return UpdateParagraphStyleRequest
|
---|
476 | */
|
---|
477 | public function getUpdateParagraphStyle()
|
---|
478 | {
|
---|
479 | return $this->updateParagraphStyle;
|
---|
480 | }
|
---|
481 | /**
|
---|
482 | * @param UpdateSectionStyleRequest
|
---|
483 | */
|
---|
484 | public function setUpdateSectionStyle(UpdateSectionStyleRequest $updateSectionStyle)
|
---|
485 | {
|
---|
486 | $this->updateSectionStyle = $updateSectionStyle;
|
---|
487 | }
|
---|
488 | /**
|
---|
489 | * @return UpdateSectionStyleRequest
|
---|
490 | */
|
---|
491 | public function getUpdateSectionStyle()
|
---|
492 | {
|
---|
493 | return $this->updateSectionStyle;
|
---|
494 | }
|
---|
495 | /**
|
---|
496 | * @param UpdateTableCellStyleRequest
|
---|
497 | */
|
---|
498 | public function setUpdateTableCellStyle(UpdateTableCellStyleRequest $updateTableCellStyle)
|
---|
499 | {
|
---|
500 | $this->updateTableCellStyle = $updateTableCellStyle;
|
---|
501 | }
|
---|
502 | /**
|
---|
503 | * @return UpdateTableCellStyleRequest
|
---|
504 | */
|
---|
505 | public function getUpdateTableCellStyle()
|
---|
506 | {
|
---|
507 | return $this->updateTableCellStyle;
|
---|
508 | }
|
---|
509 | /**
|
---|
510 | * @param UpdateTableColumnPropertiesRequest
|
---|
511 | */
|
---|
512 | public function setUpdateTableColumnProperties(UpdateTableColumnPropertiesRequest $updateTableColumnProperties)
|
---|
513 | {
|
---|
514 | $this->updateTableColumnProperties = $updateTableColumnProperties;
|
---|
515 | }
|
---|
516 | /**
|
---|
517 | * @return UpdateTableColumnPropertiesRequest
|
---|
518 | */
|
---|
519 | public function getUpdateTableColumnProperties()
|
---|
520 | {
|
---|
521 | return $this->updateTableColumnProperties;
|
---|
522 | }
|
---|
523 | /**
|
---|
524 | * @param UpdateTableRowStyleRequest
|
---|
525 | */
|
---|
526 | public function setUpdateTableRowStyle(UpdateTableRowStyleRequest $updateTableRowStyle)
|
---|
527 | {
|
---|
528 | $this->updateTableRowStyle = $updateTableRowStyle;
|
---|
529 | }
|
---|
530 | /**
|
---|
531 | * @return UpdateTableRowStyleRequest
|
---|
532 | */
|
---|
533 | public function getUpdateTableRowStyle()
|
---|
534 | {
|
---|
535 | return $this->updateTableRowStyle;
|
---|
536 | }
|
---|
537 | /**
|
---|
538 | * @param UpdateTextStyleRequest
|
---|
539 | */
|
---|
540 | public function setUpdateTextStyle(UpdateTextStyleRequest $updateTextStyle)
|
---|
541 | {
|
---|
542 | $this->updateTextStyle = $updateTextStyle;
|
---|
543 | }
|
---|
544 | /**
|
---|
545 | * @return UpdateTextStyleRequest
|
---|
546 | */
|
---|
547 | public function getUpdateTextStyle()
|
---|
548 | {
|
---|
549 | return $this->updateTextStyle;
|
---|
550 | }
|
---|
551 | }
|
---|
552 |
|
---|
553 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
554 | class_alias(Request::class, 'Google_Service_Docs_Request');
|
---|