PluginProbe
Authorizer / 2.6.10
Authorizer v2.6.10
3.15.3 3.15.2 3.15.1 3.15.0 3.14.3 3.14.4 3.14.2 3.14.1 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.9.0 2.9.1 2.9.10 2.9.11 2.9.12 2.9.13 2.9.2 2.9.3 2.9.6 All 126 releases
authorizer / vendor / google-api-php-client / src / Google / Service / Sheets.php

Sheets.php in Authorizer 2.6.10, at vendor/google-api-php-client/src/Google/Service/Sheets.php

5,294 lines 129.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Copyright 2016 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 /**
19 * Service definition for Sheets (v4).
20 *
21 * <p>
22 * An API for reading and modifying Google Sheets.</p>
23 *
24 * <p>
25 * For more information about this service, see the API
26 * <a href="https://developers.google.com/sheets/" target="_blank">Documentation</a>
27 * </p>
28 *
29 * @author Google, Inc.
30 */
31 class Google_Service_Sheets extends Google_Service
32 {
33 /** View and manage the files in your Google Drive. */
34 const DRIVE =
35 "https://www.googleapis.com/auth/drive";
36 /** View the files in your Google Drive. */
37 const DRIVE_READONLY =
38 "https://www.googleapis.com/auth/drive.readonly";
39 /** View and manage your spreadsheets in Google Drive. */
40 const SPREADSHEETS =
41 "https://www.googleapis.com/auth/spreadsheets";
42 /** View your Google Spreadsheets. */
43 const SPREADSHEETS_READONLY =
44 "https://www.googleapis.com/auth/spreadsheets.readonly";
45
46 public $spreadsheets;
47 public $spreadsheets_sheets;
48 public $spreadsheets_values;
49
50
51 /**
52 * Constructs the internal representation of the Sheets service.
53 *
54 * @param Google_Client $client
55 */
56 public function __construct(Google_Client $client)
57 {
58 parent::__construct($client);
59 $this->rootUrl = 'https://sheets.googleapis.com/';
60 $this->servicePath = '';
61 $this->version = 'v4';
62 $this->serviceName = 'sheets';
63
64 $this->spreadsheets = new Google_Service_Sheets_Spreadsheets_Resource(
65 $this,
66 $this->serviceName,
67 'spreadsheets',
68 array(
69 'methods' => array(
70 'batchUpdate' => array(
71 'path' => 'v4/spreadsheets/{spreadsheetId}:batchUpdate',
72 'httpMethod' => 'POST',
73 'parameters' => array(
74 'spreadsheetId' => array(
75 'location' => 'path',
76 'type' => 'string',
77 'required' => true,
78 ),
79 ),
80 ),'create' => array(
81 'path' => 'v4/spreadsheets',
82 'httpMethod' => 'POST',
83 'parameters' => array(),
84 ),'get' => array(
85 'path' => 'v4/spreadsheets/{spreadsheetId}',
86 'httpMethod' => 'GET',
87 'parameters' => array(
88 'spreadsheetId' => array(
89 'location' => 'path',
90 'type' => 'string',
91 'required' => true,
92 ),
93 'ranges' => array(
94 'location' => 'query',
95 'type' => 'string',
96 'repeated' => true,
97 ),
98 'includeGridData' => array(
99 'location' => 'query',
100 'type' => 'boolean',
101 ),
102 ),
103 ),
104 )
105 )
106 );
107 $this->spreadsheets_sheets = new Google_Service_Sheets_SpreadsheetsSheets_Resource(
108 $this,
109 $this->serviceName,
110 'sheets',
111 array(
112 'methods' => array(
113 'copyTo' => array(
114 'path' => 'v4/spreadsheets/{spreadsheetId}/sheets/{sheetId}:copyTo',
115 'httpMethod' => 'POST',
116 'parameters' => array(
117 'spreadsheetId' => array(
118 'location' => 'path',
119 'type' => 'string',
120 'required' => true,
121 ),
122 'sheetId' => array(
123 'location' => 'path',
124 'type' => 'integer',
125 'required' => true,
126 ),
127 ),
128 ),
129 )
130 )
131 );
132 $this->spreadsheets_values = new Google_Service_Sheets_SpreadsheetsValues_Resource(
133 $this,
134 $this->serviceName,
135 'values',
136 array(
137 'methods' => array(
138 'batchGet' => array(
139 'path' => 'v4/spreadsheets/{spreadsheetId}/values:batchGet',
140 'httpMethod' => 'GET',
141 'parameters' => array(
142 'spreadsheetId' => array(
143 'location' => 'path',
144 'type' => 'string',
145 'required' => true,
146 ),
147 'ranges' => array(
148 'location' => 'query',
149 'type' => 'string',
150 'repeated' => true,
151 ),
152 'valueRenderOption' => array(
153 'location' => 'query',
154 'type' => 'string',
155 ),
156 'dateTimeRenderOption' => array(
157 'location' => 'query',
158 'type' => 'string',
159 ),
160 'majorDimension' => array(
161 'location' => 'query',
162 'type' => 'string',
163 ),
164 ),
165 ),'batchUpdate' => array(
166 'path' => 'v4/spreadsheets/{spreadsheetId}/values:batchUpdate',
167 'httpMethod' => 'POST',
168 'parameters' => array(
169 'spreadsheetId' => array(
170 'location' => 'path',
171 'type' => 'string',
172 'required' => true,
173 ),
174 ),
175 ),'get' => array(
176 'path' => 'v4/spreadsheets/{spreadsheetId}/values/{range}',
177 'httpMethod' => 'GET',
178 'parameters' => array(
179 'spreadsheetId' => array(
180 'location' => 'path',
181 'type' => 'string',
182 'required' => true,
183 ),
184 'range' => array(
185 'location' => 'path',
186 'type' => 'string',
187 'required' => true,
188 ),
189 'valueRenderOption' => array(
190 'location' => 'query',
191 'type' => 'string',
192 ),
193 'dateTimeRenderOption' => array(
194 'location' => 'query',
195 'type' => 'string',
196 ),
197 'majorDimension' => array(
198 'location' => 'query',
199 'type' => 'string',
200 ),
201 ),
202 ),'update' => array(
203 'path' => 'v4/spreadsheets/{spreadsheetId}/values/{range}',
204 'httpMethod' => 'PUT',
205 'parameters' => array(
206 'spreadsheetId' => array(
207 'location' => 'path',
208 'type' => 'string',
209 'required' => true,
210 ),
211 'range' => array(
212 'location' => 'path',
213 'type' => 'string',
214 'required' => true,
215 ),
216 'valueInputOption' => array(
217 'location' => 'query',
218 'type' => 'string',
219 ),
220 ),
221 ),
222 )
223 )
224 );
225 }
226 }
227
228
229 /**
230 * The "spreadsheets" collection of methods.
231 * Typical usage is:
232 * <code>
233 * $sheetsService = new Google_Service_Sheets(...);
234 * $spreadsheets = $sheetsService->spreadsheets;
235 * </code>
236 */
237 class Google_Service_Sheets_Spreadsheets_Resource extends Google_Service_Resource
238 {
239
240 /**
241 * Applies one or more updates to the spreadsheet.
242 *
243 * Each request is validated before being applied. If any request is not valid
244 * then the entire request will fail and nothing will be applied.
245 *
246 * Some requests have replies to give you some information about how they
247 * applied. The replies will mirror the requests. For example, if you applied 4
248 * updates and the 3rd one had a reply, then the response will have 2 empty
249 * replies, the actual reply, and another empty reply, in that order.
250 *
251 * Due to the collaborative nature of spreadsheets, it is not guaranteed that
252 * the spreadsheet will reflect exactly your changes after this completes,
253 * however it is guaranteed that all the updates in the request will be applied
254 * atomically. Your changes may be altered with respect to collaborator changes.
255 * If there are no collaborators, the spreadsheet should reflect your changes.
256 * (spreadsheets.batchUpdate)
257 *
258 * @param string $spreadsheetId The spreadsheet to apply the updates to.
259 * @param Google_BatchUpdateSpreadsheetRequest $postBody
260 * @param array $optParams Optional parameters.
261 * @return Google_Service_Sheets_BatchUpdateSpreadsheetResponse
262 */
263 public function batchUpdate($spreadsheetId, Google_Service_Sheets_BatchUpdateSpreadsheetRequest $postBody, $optParams = array())
264 {
265 $params = array('spreadsheetId' => $spreadsheetId, 'postBody' => $postBody);
266 $params = array_merge($params, $optParams);
267 return $this->call('batchUpdate', array($params), "Google_Service_Sheets_BatchUpdateSpreadsheetResponse");
268 }
269
270 /**
271 * Creates a spreadsheet, returning the newly created spreadsheet.
272 * (spreadsheets.create)
273 *
274 * @param Google_Spreadsheet $postBody
275 * @param array $optParams Optional parameters.
276 * @return Google_Service_Sheets_Spreadsheet
277 */
278 public function create(Google_Service_Sheets_Spreadsheet $postBody, $optParams = array())
279 {
280 $params = array('postBody' => $postBody);
281 $params = array_merge($params, $optParams);
282 return $this->call('create', array($params), "Google_Service_Sheets_Spreadsheet");
283 }
284
285 /**
286 * Returns the spreadsheet at the given id. The caller must specify the
287 * spreadsheet ID.
288 *
289 * By default, data within grids will not be returned. You can include grid data
290 * one of two ways: specify a field mask listing your desired fields (using the
291 * `fields` URL parameter in HTTP, or `FieldMaskContext.response_mask` in the
292 * request extensions in an RPC), or by setting the includeGridData URL
293 * parameter to true. If a field mask is set, the `includeGridData` parameter
294 * is ignored.
295 *
296 * For large spreadsheets, it is recommended to retrieve only the specific
297 * fields of the spreadsheet that you want.
298 *
299 * To retrieve only subsets of the spreadsheet, use the ranges URL parameter.
300 * Multiple ranges can be specified. Limiting the range will return only the
301 * portions of the spreadsheet that intersect the requested ranges. Ranges are
302 * specified using A1 notation. (spreadsheets.get)
303 *
304 * @param string $spreadsheetId The spreadsheet to request.
305 * @param array $optParams Optional parameters.
306 *
307 * @opt_param string ranges The ranges to retrieve from the spreadsheet.
308 * @opt_param bool includeGridData True if grid data should be returned. This
309 * parameter is ignored if a field mask was set in the request.
310 * @return Google_Service_Sheets_Spreadsheet
311 */
312 public function get($spreadsheetId, $optParams = array())
313 {
314 $params = array('spreadsheetId' => $spreadsheetId);
315 $params = array_merge($params, $optParams);
316 return $this->call('get', array($params), "Google_Service_Sheets_Spreadsheet");
317 }
318 }
319
320 /**
321 * The "sheets" collection of methods.
322 * Typical usage is:
323 * <code>
324 * $sheetsService = new Google_Service_Sheets(...);
325 * $sheets = $sheetsService->sheets;
326 * </code>
327 */
328 class Google_Service_Sheets_SpreadsheetsSheets_Resource extends Google_Service_Resource
329 {
330
331 /**
332 * Copies a single sheet from a spreadsheet to another spreadsheet. Returns the
333 * properties of the newly created sheet. (sheets.copyTo)
334 *
335 * @param string $spreadsheetId The id of the spreadsheet containing the sheet
336 * to copy.
337 * @param int $sheetId The ID of the sheet to copy.
338 * @param Google_CopySheetToAnotherSpreadsheetRequest $postBody
339 * @param array $optParams Optional parameters.
340 * @return Google_Service_Sheets_SheetProperties
341 */
342 public function copyTo($spreadsheetId, $sheetId, Google_Service_Sheets_CopySheetToAnotherSpreadsheetRequest $postBody, $optParams = array())
343 {
344 $params = array('spreadsheetId' => $spreadsheetId, 'sheetId' => $sheetId, 'postBody' => $postBody);
345 $params = array_merge($params, $optParams);
346 return $this->call('copyTo', array($params), "Google_Service_Sheets_SheetProperties");
347 }
348 }
349 /**
350 * The "values" collection of methods.
351 * Typical usage is:
352 * <code>
353 * $sheetsService = new Google_Service_Sheets(...);
354 * $values = $sheetsService->values;
355 * </code>
356 */
357 class Google_Service_Sheets_SpreadsheetsValues_Resource extends Google_Service_Resource
358 {
359
360 /**
361 * Returns one or more ranges of values from a spreadsheet. The caller must
362 * specify the spreadsheet ID and one or more ranges. (values.batchGet)
363 *
364 * @param string $spreadsheetId The id of the spreadsheet to retrieve data from.
365 * @param array $optParams Optional parameters.
366 *
367 * @opt_param string ranges The A1 notation of the values to retrieve.
368 * @opt_param string valueRenderOption How values should be represented in the
369 * output.
370 * @opt_param string dateTimeRenderOption How dates, times, and durations should
371 * be represented in the output. This is ignored if ValueRenderOption option is
372 * FORMATTED_VALUE.
373 * @opt_param string majorDimension The major dimension that results should use.
374 *
375 * For example, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`, then
376 * requesting `range=A1:B2,majorDimension=ROWS` will return `[[1,2],[3,4]]`,
377 * whereas requesting `range=A1:B2,majorDimension=COLUMNS` will return
378 * `[[1,3],[2,4]]`.
379 * @return Google_Service_Sheets_BatchGetValuesResponse
380 */
381 public function batchGet($spreadsheetId, $optParams = array())
382 {
383 $params = array('spreadsheetId' => $spreadsheetId);
384 $params = array_merge($params, $optParams);
385 return $this->call('batchGet', array($params), "Google_Service_Sheets_BatchGetValuesResponse");
386 }
387
388 /**
389 * Sets values in a range of a spreadsheet. The caller must specify the
390 * spreadsheet ID, a valueInputOption, and one or more ValueRanges.
391 * (values.batchUpdate)
392 *
393 * @param string $spreadsheetId The id of the spreadsheet to update.
394 * @param Google_BatchUpdateValuesRequest $postBody
395 * @param array $optParams Optional parameters.
396 * @return Google_Service_Sheets_BatchUpdateValuesResponse
397 */
398 public function batchUpdate($spreadsheetId, Google_Service_Sheets_BatchUpdateValuesRequest $postBody, $optParams = array())
399 {
400 $params = array('spreadsheetId' => $spreadsheetId, 'postBody' => $postBody);
401 $params = array_merge($params, $optParams);
402 return $this->call('batchUpdate', array($params), "Google_Service_Sheets_BatchUpdateValuesResponse");
403 }
404
405 /**
406 * Returns a range of values from a spreadsheet. The caller must specify the
407 * spreadsheet ID and a range. (values.get)
408 *
409 * @param string $spreadsheetId The id of the spreadsheet to retrieve data from.
410 * @param string $range The A1 notation of the values to retrieve.
411 * @param array $optParams Optional parameters.
412 *
413 * @opt_param string valueRenderOption How values should be represented in the
414 * output.
415 * @opt_param string dateTimeRenderOption How dates, times, and durations should
416 * be represented in the output. This is ignored if the ValueRenderOption option
417 * is FORMATTED_VALUE.
418 * @opt_param string majorDimension The major dimension that results should use.
419 *
420 * For example, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`, then
421 * requesting `range=A1:B2,majorDimension=ROWS` will return `[[1,2],[3,4]]`,
422 * whereas requesting `range=A1:B2,majorDimension=COLUMNS` will return
423 * `[[1,3],[2,4]]`.
424 * @return Google_Service_Sheets_ValueRange
425 */
426 public function get($spreadsheetId, $range, $optParams = array())
427 {
428 $params = array('spreadsheetId' => $spreadsheetId, 'range' => $range);
429 $params = array_merge($params, $optParams);
430 return $this->call('get', array($params), "Google_Service_Sheets_ValueRange");
431 }
432
433 /**
434 * Sets values in a range of a spreadsheet. The caller must specify the
435 * spreadsheet ID, range, and a valueInputOption. (values.update)
436 *
437 * @param string $spreadsheetId The id of the spreadsheet to update.
438 * @param string $range The A1 notation of the values to update.
439 * @param Google_ValueRange $postBody
440 * @param array $optParams Optional parameters.
441 *
442 * @opt_param string valueInputOption How the input data should be interpreted.
443 * @return Google_Service_Sheets_UpdateValuesResponse
444 */
445 public function update($spreadsheetId, $range, Google_Service_Sheets_ValueRange $postBody, $optParams = array())
446 {
447 $params = array('spreadsheetId' => $spreadsheetId, 'range' => $range, 'postBody' => $postBody);
448 $params = array_merge($params, $optParams);
449 return $this->call('update', array($params), "Google_Service_Sheets_UpdateValuesResponse");
450 }
451 }
452
453
454
455
456 class Google_Service_Sheets_AddChartRequest extends Google_Model
457 {
458 protected $internal_gapi_mappings = array(
459 );
460 protected $chartType = 'Google_Service_Sheets_EmbeddedChart';
461 protected $chartDataType = '';
462
463
464 public function setChart(Google_Service_Sheets_EmbeddedChart $chart)
465 {
466 $this->chart = $chart;
467 }
468 public function getChart()
469 {
470 return $this->chart;
471 }
472 }
473
474 class Google_Service_Sheets_AddChartResponse extends Google_Model
475 {
476 protected $internal_gapi_mappings = array(
477 );
478 protected $chartType = 'Google_Service_Sheets_EmbeddedChart';
479 protected $chartDataType = '';
480
481
482 public function setChart(Google_Service_Sheets_EmbeddedChart $chart)
483 {
484 $this->chart = $chart;
485 }
486 public function getChart()
487 {
488 return $this->chart;
489 }
490 }
491
492 class Google_Service_Sheets_AddConditionalFormatRuleRequest extends Google_Model
493 {
494 protected $internal_gapi_mappings = array(
495 );
496 public $index;
497 protected $ruleType = 'Google_Service_Sheets_ConditionalFormatRule';
498 protected $ruleDataType = '';
499
500
501 public function setIndex($index)
502 {
503 $this->index = $index;
504 }
505 public function getIndex()
506 {
507 return $this->index;
508 }
509 public function setRule(Google_Service_Sheets_ConditionalFormatRule $rule)
510 {
511 $this->rule = $rule;
512 }
513 public function getRule()
514 {
515 return $this->rule;
516 }
517 }
518
519 class Google_Service_Sheets_AddFilterViewRequest extends Google_Model
520 {
521 protected $internal_gapi_mappings = array(
522 );
523 protected $filterType = 'Google_Service_Sheets_FilterView';
524 protected $filterDataType = '';
525
526
527 public function setFilter(Google_Service_Sheets_FilterView $filter)
528 {
529 $this->filter = $filter;
530 }
531 public function getFilter()
532 {
533 return $this->filter;
534 }
535 }
536
537 class Google_Service_Sheets_AddFilterViewResponse extends Google_Model
538 {
539 protected $internal_gapi_mappings = array(
540 );
541 protected $filterType = 'Google_Service_Sheets_FilterView';
542 protected $filterDataType = '';
543
544
545 public function setFilter(Google_Service_Sheets_FilterView $filter)
546 {
547 $this->filter = $filter;
548 }
549 public function getFilter()
550 {
551 return $this->filter;
552 }
553 }
554
555 class Google_Service_Sheets_AddNamedRangeRequest extends Google_Model
556 {
557 protected $internal_gapi_mappings = array(
558 );
559 protected $namedRangeType = 'Google_Service_Sheets_NamedRange';
560 protected $namedRangeDataType = '';
561
562
563 public function setNamedRange(Google_Service_Sheets_NamedRange $namedRange)
564 {
565 $this->namedRange = $namedRange;
566 }
567 public function getNamedRange()
568 {
569 return $this->namedRange;
570 }
571 }
572
573 class Google_Service_Sheets_AddNamedRangeResponse extends Google_Model
574 {
575 protected $internal_gapi_mappings = array(
576 );
577 protected $namedRangeType = 'Google_Service_Sheets_NamedRange';
578 protected $namedRangeDataType = '';
579
580
581 public function setNamedRange(Google_Service_Sheets_NamedRange $namedRange)
582 {
583 $this->namedRange = $namedRange;
584 }
585 public function getNamedRange()
586 {
587 return $this->namedRange;
588 }
589 }
590
591 class Google_Service_Sheets_AddProtectedRangeRequest extends Google_Model
592 {
593 protected $internal_gapi_mappings = array(
594 );
595 protected $protectedRangeType = 'Google_Service_Sheets_ProtectedRange';
596 protected $protectedRangeDataType = '';
597
598
599 public function setProtectedRange(Google_Service_Sheets_ProtectedRange $protectedRange)
600 {
601 $this->protectedRange = $protectedRange;
602 }
603 public function getProtectedRange()
604 {
605 return $this->protectedRange;
606 }
607 }
608
609 class Google_Service_Sheets_AddProtectedRangeResponse extends Google_Model
610 {
611 protected $internal_gapi_mappings = array(
612 );
613 protected $protectedRangeType = 'Google_Service_Sheets_ProtectedRange';
614 protected $protectedRangeDataType = '';
615
616
617 public function setProtectedRange(Google_Service_Sheets_ProtectedRange $protectedRange)
618 {
619 $this->protectedRange = $protectedRange;
620 }
621 public function getProtectedRange()
622 {
623 return $this->protectedRange;
624 }
625 }
626
627 class Google_Service_Sheets_AddSheetRequest extends Google_Model
628 {
629 protected $internal_gapi_mappings = array(
630 );
631 protected $propertiesType = 'Google_Service_Sheets_SheetProperties';
632 protected $propertiesDataType = '';
633
634
635 public function setProperties(Google_Service_Sheets_SheetProperties $properties)
636 {
637 $this->properties = $properties;
638 }
639 public function getProperties()
640 {
641 return $this->properties;
642 }
643 }
644
645 class Google_Service_Sheets_AddSheetResponse extends Google_Model
646 {
647 protected $internal_gapi_mappings = array(
648 );
649 protected $propertiesType = 'Google_Service_Sheets_SheetProperties';
650 protected $propertiesDataType = '';
651
652
653 public function setProperties(Google_Service_Sheets_SheetProperties $properties)
654 {
655 $this->properties = $properties;
656 }
657 public function getProperties()
658 {
659 return $this->properties;
660 }
661 }
662
663 class Google_Service_Sheets_AppendCellsRequest extends Google_Collection
664 {
665 protected $collection_key = 'rows';
666 protected $internal_gapi_mappings = array(
667 );
668 public $fields;
669 protected $rowsType = 'Google_Service_Sheets_RowData';
670 protected $rowsDataType = 'array';
671 public $sheetId;
672
673
674 public function setFields($fields)
675 {
676 $this->fields = $fields;
677 }
678 public function getFields()
679 {
680 return $this->fields;
681 }
682 public function setRows($rows)
683 {
684 $this->rows = $rows;
685 }
686 public function getRows()
687 {
688 return $this->rows;
689 }
690 public function setSheetId($sheetId)
691 {
692 $this->sheetId = $sheetId;
693 }
694 public function getSheetId()
695 {
696 return $this->sheetId;
697 }
698 }
699
700 class Google_Service_Sheets_AppendDimensionRequest extends Google_Model
701 {
702 protected $internal_gapi_mappings = array(
703 );
704 public $dimension;
705 public $length;
706 public $sheetId;
707
708
709 public function setDimension($dimension)
710 {
711 $this->dimension = $dimension;
712 }
713 public function getDimension()
714 {
715 return $this->dimension;
716 }
717 public function setLength($length)
718 {
719 $this->length = $length;
720 }
721 public function getLength()
722 {
723 return $this->length;
724 }
725 public function setSheetId($sheetId)
726 {
727 $this->sheetId = $sheetId;
728 }
729 public function getSheetId()
730 {
731 return $this->sheetId;
732 }
733 }
734
735 class Google_Service_Sheets_AutoFillRequest extends Google_Model
736 {
737 protected $internal_gapi_mappings = array(
738 );
739 protected $rangeType = 'Google_Service_Sheets_GridRange';
740 protected $rangeDataType = '';
741 protected $sourceAndDestinationType = 'Google_Service_Sheets_SourceAndDestination';
742 protected $sourceAndDestinationDataType = '';
743 public $useAlternateSeries;
744
745
746 public function setRange(Google_Service_Sheets_GridRange $range)
747 {
748 $this->range = $range;
749 }
750 public function getRange()
751 {
752 return $this->range;
753 }
754 public function setSourceAndDestination(Google_Service_Sheets_SourceAndDestination $sourceAndDestination)
755 {
756 $this->sourceAndDestination = $sourceAndDestination;
757 }
758 public function getSourceAndDestination()
759 {
760 return $this->sourceAndDestination;
761 }
762 public function setUseAlternateSeries($useAlternateSeries)
763 {
764 $this->useAlternateSeries = $useAlternateSeries;
765 }
766 public function getUseAlternateSeries()
767 {
768 return $this->useAlternateSeries;
769 }
770 }
771
772 class Google_Service_Sheets_AutoResizeDimensionsRequest extends Google_Model
773 {
774 protected $internal_gapi_mappings = array(
775 );
776 protected $dimensionsType = 'Google_Service_Sheets_DimensionRange';
777 protected $dimensionsDataType = '';
778
779
780 public function setDimensions(Google_Service_Sheets_DimensionRange $dimensions)
781 {
782 $this->dimensions = $dimensions;
783 }
784 public function getDimensions()
785 {
786 return $this->dimensions;
787 }
788 }
789
790 class Google_Service_Sheets_BasicChartAxis extends Google_Model
791 {
792 protected $internal_gapi_mappings = array(
793 );
794 protected $formatType = 'Google_Service_Sheets_TextFormat';
795 protected $formatDataType = '';
796 public $position;
797 public $title;
798
799
800 public function setFormat(Google_Service_Sheets_TextFormat $format)
801 {
802 $this->format = $format;
803 }
804 public function getFormat()
805 {
806 return $this->format;
807 }
808 public function setPosition($position)
809 {
810 $this->position = $position;
811 }
812 public function getPosition()
813 {
814 return $this->position;
815 }
816 public function setTitle($title)
817 {
818 $this->title = $title;
819 }
820 public function getTitle()
821 {
822 return $this->title;
823 }
824 }
825
826 class Google_Service_Sheets_BasicChartDomain extends Google_Model
827 {
828 protected $internal_gapi_mappings = array(
829 );
830 protected $domainType = 'Google_Service_Sheets_ChartData';
831 protected $domainDataType = '';
832
833
834 public function setDomain(Google_Service_Sheets_ChartData $domain)
835 {
836 $this->domain = $domain;
837 }
838 public function getDomain()
839 {
840 return $this->domain;
841 }
842 }
843
844 class Google_Service_Sheets_BasicChartSeries extends Google_Model
845 {
846 protected $internal_gapi_mappings = array(
847 );
848 protected $seriesType = 'Google_Service_Sheets_ChartData';
849 protected $seriesDataType = '';
850 public $targetAxis;
851 public $type;
852
853
854 public function setSeries(Google_Service_Sheets_ChartData $series)
855 {
856 $this->series = $series;
857 }
858 public function getSeries()
859 {
860 return $this->series;
861 }
862 public function setTargetAxis($targetAxis)
863 {
864 $this->targetAxis = $targetAxis;
865 }
866 public function getTargetAxis()
867 {
868 return $this->targetAxis;
869 }
870 public function setType($type)
871 {
872 $this->type = $type;
873 }
874 public function getType()
875 {
876 return $this->type;
877 }
878 }
879
880 class Google_Service_Sheets_BasicChartSpec extends Google_Collection
881 {
882 protected $collection_key = 'series';
883 protected $internal_gapi_mappings = array(
884 );
885 protected $axisType = 'Google_Service_Sheets_BasicChartAxis';
886 protected $axisDataType = 'array';
887 public $chartType;
888 protected $domainsType = 'Google_Service_Sheets_BasicChartDomain';
889 protected $domainsDataType = 'array';
890 public $headerCount;
891 public $legendPosition;
892 protected $seriesType = 'Google_Service_Sheets_BasicChartSeries';
893 protected $seriesDataType = 'array';
894
895
896 public function setAxis($axis)
897 {
898 $this->axis = $axis;
899 }
900 public function getAxis()
901 {
902 return $this->axis;
903 }
904 public function setChartType($chartType)
905 {
906 $this->chartType = $chartType;
907 }
908 public function getChartType()
909 {
910 return $this->chartType;
911 }
912 public function setDomains($domains)
913 {
914 $this->domains = $domains;
915 }
916 public function getDomains()
917 {
918 return $this->domains;
919 }
920 public function setHeaderCount($headerCount)
921 {
922 $this->headerCount = $headerCount;
923 }
924 public function getHeaderCount()
925 {
926 return $this->headerCount;
927 }
928 public function setLegendPosition($legendPosition)
929 {
930 $this->legendPosition = $legendPosition;
931 }
932 public function getLegendPosition()
933 {
934 return $this->legendPosition;
935 }
936 public function setSeries($series)
937 {
938 $this->series = $series;
939 }
940 public function getSeries()
941 {
942 return $this->series;
943 }
944 }
945
946 class Google_Service_Sheets_BasicFilter extends Google_Collection
947 {
948 protected $collection_key = 'sortSpecs';
949 protected $internal_gapi_mappings = array(
950 );
951 protected $criteriaType = 'Google_Service_Sheets_FilterCriteria';
952 protected $criteriaDataType = 'map';
953 protected $rangeType = 'Google_Service_Sheets_GridRange';
954 protected $rangeDataType = '';
955 protected $sortSpecsType = 'Google_Service_Sheets_SortSpec';
956 protected $sortSpecsDataType = 'array';
957
958
959 public function setCriteria($criteria)
960 {
961 $this->criteria = $criteria;
962 }
963 public function getCriteria()
964 {
965 return $this->criteria;
966 }
967 public function setRange(Google_Service_Sheets_GridRange $range)
968 {
969 $this->range = $range;
970 }
971 public function getRange()
972 {
973 return $this->range;
974 }
975 public function setSortSpecs($sortSpecs)
976 {
977 $this->sortSpecs = $sortSpecs;
978 }
979 public function getSortSpecs()
980 {
981 return $this->sortSpecs;
982 }
983 }
984
985 class Google_Service_Sheets_BatchGetValuesResponse extends Google_Collection
986 {
987 protected $collection_key = 'valueRanges';
988 protected $internal_gapi_mappings = array(
989 );
990 public $spreadsheetId;
991 protected $valueRangesType = 'Google_Service_Sheets_ValueRange';
992 protected $valueRangesDataType = 'array';
993
994
995 public function setSpreadsheetId($spreadsheetId)
996 {
997 $this->spreadsheetId = $spreadsheetId;
998 }
999 public function getSpreadsheetId()
1000 {
1001 return $this->spreadsheetId;
1002 }
1003 public function setValueRanges($valueRanges)
1004 {
1005 $this->valueRanges = $valueRanges;
1006 }
1007 public function getValueRanges()
1008 {
1009 return $this->valueRanges;
1010 }
1011 }
1012
1013 class Google_Service_Sheets_BatchUpdateSpreadsheetRequest extends Google_Collection
1014 {
1015 protected $collection_key = 'requests';
1016 protected $internal_gapi_mappings = array(
1017 );
1018 protected $requestsType = 'Google_Service_Sheets_Request';
1019 protected $requestsDataType = 'array';
1020
1021
1022 public function setRequests($requests)
1023 {
1024 $this->requests = $requests;
1025 }
1026 public function getRequests()
1027 {
1028 return $this->requests;
1029 }
1030 }
1031
1032 class Google_Service_Sheets_BatchUpdateSpreadsheetResponse extends Google_Collection
1033 {
1034 protected $collection_key = 'replies';
1035 protected $internal_gapi_mappings = array(
1036 );
1037 protected $repliesType = 'Google_Service_Sheets_Response';
1038 protected $repliesDataType = 'array';
1039 public $spreadsheetId;
1040
1041
1042 public function setReplies($replies)
1043 {
1044 $this->replies = $replies;
1045 }
1046 public function getReplies()
1047 {
1048 return $this->replies;
1049 }
1050 public function setSpreadsheetId($spreadsheetId)
1051 {
1052 $this->spreadsheetId = $spreadsheetId;
1053 }
1054 public function getSpreadsheetId()
1055 {
1056 return $this->spreadsheetId;
1057 }
1058 }
1059
1060 class Google_Service_Sheets_BatchUpdateValuesRequest extends Google_Collection
1061 {
1062 protected $collection_key = 'data';
1063 protected $internal_gapi_mappings = array(
1064 );
1065 protected $dataType = 'Google_Service_Sheets_ValueRange';
1066 protected $dataDataType = 'array';
1067 public $valueInputOption;
1068
1069
1070 public function setData($data)
1071 {
1072 $this->data = $data;
1073 }
1074 public function getData()
1075 {
1076 return $this->data;
1077 }
1078 public function setValueInputOption($valueInputOption)
1079 {
1080 $this->valueInputOption = $valueInputOption;
1081 }
1082 public function getValueInputOption()
1083 {
1084 return $this->valueInputOption;
1085 }
1086 }
1087
1088 class Google_Service_Sheets_BatchUpdateValuesResponse extends Google_Collection
1089 {
1090 protected $collection_key = 'responses';
1091 protected $internal_gapi_mappings = array(
1092 );
1093 protected $responsesType = 'Google_Service_Sheets_UpdateValuesResponse';
1094 protected $responsesDataType = 'array';
1095 public $spreadsheetId;
1096 public $totalUpdatedCells;
1097 public $totalUpdatedColumns;
1098 public $totalUpdatedRows;
1099 public $totalUpdatedSheets;
1100
1101
1102 public function setResponses($responses)
1103 {
1104 $this->responses = $responses;
1105 }
1106 public function getResponses()
1107 {
1108 return $this->responses;
1109 }
1110 public function setSpreadsheetId($spreadsheetId)
1111 {
1112 $this->spreadsheetId = $spreadsheetId;
1113 }
1114 public function getSpreadsheetId()
1115 {
1116 return $this->spreadsheetId;
1117 }
1118 public function setTotalUpdatedCells($totalUpdatedCells)
1119 {
1120 $this->totalUpdatedCells = $totalUpdatedCells;
1121 }
1122 public function getTotalUpdatedCells()
1123 {
1124 return $this->totalUpdatedCells;
1125 }
1126 public function setTotalUpdatedColumns($totalUpdatedColumns)
1127 {
1128 $this->totalUpdatedColumns = $totalUpdatedColumns;
1129 }
1130 public function getTotalUpdatedColumns()
1131 {
1132 return $this->totalUpdatedColumns;
1133 }
1134 public function setTotalUpdatedRows($totalUpdatedRows)
1135 {
1136 $this->totalUpdatedRows = $totalUpdatedRows;
1137 }
1138 public function getTotalUpdatedRows()
1139 {
1140 return $this->totalUpdatedRows;
1141 }
1142 public function setTotalUpdatedSheets($totalUpdatedSheets)
1143 {
1144 $this->totalUpdatedSheets = $totalUpdatedSheets;
1145 }
1146 public function getTotalUpdatedSheets()
1147 {
1148 return $this->totalUpdatedSheets;
1149 }
1150 }
1151
1152 class Google_Service_Sheets_BooleanCondition extends Google_Collection
1153 {
1154 protected $collection_key = 'values';
1155 protected $internal_gapi_mappings = array(
1156 );
1157 public $type;
1158 protected $valuesType = 'Google_Service_Sheets_ConditionValue';
1159 protected $valuesDataType = 'array';
1160
1161
1162 public function setType($type)
1163 {
1164 $this->type = $type;
1165 }
1166 public function getType()
1167 {
1168 return $this->type;
1169 }
1170 public function setValues($values)
1171 {
1172 $this->values = $values;
1173 }
1174 public function getValues()
1175 {
1176 return $this->values;
1177 }
1178 }
1179
1180 class Google_Service_Sheets_BooleanRule extends Google_Model
1181 {
1182 protected $internal_gapi_mappings = array(
1183 );
1184 protected $conditionType = 'Google_Service_Sheets_BooleanCondition';
1185 protected $conditionDataType = '';
1186 protected $formatType = 'Google_Service_Sheets_CellFormat';
1187 protected $formatDataType = '';
1188
1189
1190 public function setCondition(Google_Service_Sheets_BooleanCondition $condition)
1191 {
1192 $this->condition = $condition;
1193 }
1194 public function getCondition()
1195 {
1196 return $this->condition;
1197 }
1198 public function setFormat(Google_Service_Sheets_CellFormat $format)
1199 {
1200 $this->format = $format;
1201 }
1202 public function getFormat()
1203 {
1204 return $this->format;
1205 }
1206 }
1207
1208 class Google_Service_Sheets_Border extends Google_Model
1209 {
1210 protected $internal_gapi_mappings = array(
1211 );
1212 protected $colorType = 'Google_Service_Sheets_Color';
1213 protected $colorDataType = '';
1214 public $style;
1215 public $width;
1216
1217
1218 public function setColor(Google_Service_Sheets_Color $color)
1219 {
1220 $this->color = $color;
1221 }
1222 public function getColor()
1223 {
1224 return $this->color;
1225 }
1226 public function setStyle($style)
1227 {
1228 $this->style = $style;
1229 }
1230 public function getStyle()
1231 {
1232 return $this->style;
1233 }
1234 public function setWidth($width)
1235 {
1236 $this->width = $width;
1237 }
1238 public function getWidth()
1239 {
1240 return $this->width;
1241 }
1242 }
1243
1244 class Google_Service_Sheets_Borders extends Google_Model
1245 {
1246 protected $internal_gapi_mappings = array(
1247 );
1248 protected $bottomType = 'Google_Service_Sheets_Border';
1249 protected $bottomDataType = '';
1250 protected $leftType = 'Google_Service_Sheets_Border';
1251 protected $leftDataType = '';
1252 protected $rightType = 'Google_Service_Sheets_Border';
1253 protected $rightDataType = '';
1254 protected $topType = 'Google_Service_Sheets_Border';
1255 protected $topDataType = '';
1256
1257
1258 public function setBottom(Google_Service_Sheets_Border $bottom)
1259 {
1260 $this->bottom = $bottom;
1261 }
1262 public function getBottom()
1263 {
1264 return $this->bottom;
1265 }
1266 public function setLeft(Google_Service_Sheets_Border $left)
1267 {
1268 $this->left = $left;
1269 }
1270 public function getLeft()
1271 {
1272 return $this->left;
1273 }
1274 public function setRight(Google_Service_Sheets_Border $right)
1275 {
1276 $this->right = $right;
1277 }
1278 public function getRight()
1279 {
1280 return $this->right;
1281 }
1282 public function setTop(Google_Service_Sheets_Border $top)
1283 {
1284 $this->top = $top;
1285 }
1286 public function getTop()
1287 {
1288 return $this->top;
1289 }
1290 }
1291
1292 class Google_Service_Sheets_CellData extends Google_Collection
1293 {
1294 protected $collection_key = 'textFormatRuns';
1295 protected $internal_gapi_mappings = array(
1296 );
1297 protected $dataValidationType = 'Google_Service_Sheets_DataValidationRule';
1298 protected $dataValidationDataType = '';
1299 protected $effectiveFormatType = 'Google_Service_Sheets_CellFormat';
1300 protected $effectiveFormatDataType = '';
1301 protected $effectiveValueType = 'Google_Service_Sheets_ExtendedValue';
1302 protected $effectiveValueDataType = '';
1303 public $formattedValue;
1304 public $hyperlink;
1305 public $note;
1306 protected $pivotTableType = 'Google_Service_Sheets_PivotTable';
1307 protected $pivotTableDataType = '';
1308 protected $textFormatRunsType = 'Google_Service_Sheets_TextFormatRun';
1309 protected $textFormatRunsDataType = 'array';
1310 protected $userEnteredFormatType = 'Google_Service_Sheets_CellFormat';
1311 protected $userEnteredFormatDataType = '';
1312 protected $userEnteredValueType = 'Google_Service_Sheets_ExtendedValue';
1313 protected $userEnteredValueDataType = '';
1314
1315
1316 public function setDataValidation(Google_Service_Sheets_DataValidationRule $dataValidation)
1317 {
1318 $this->dataValidation = $dataValidation;
1319 }
1320 public function getDataValidation()
1321 {
1322 return $this->dataValidation;
1323 }
1324 public function setEffectiveFormat(Google_Service_Sheets_CellFormat $effectiveFormat)
1325 {
1326 $this->effectiveFormat = $effectiveFormat;
1327 }
1328 public function getEffectiveFormat()
1329 {
1330 return $this->effectiveFormat;
1331 }
1332 public function setEffectiveValue(Google_Service_Sheets_ExtendedValue $effectiveValue)
1333 {
1334 $this->effectiveValue = $effectiveValue;
1335 }
1336 public function getEffectiveValue()
1337 {
1338 return $this->effectiveValue;
1339 }
1340 public function setFormattedValue($formattedValue)
1341 {
1342 $this->formattedValue = $formattedValue;
1343 }
1344 public function getFormattedValue()
1345 {
1346 return $this->formattedValue;
1347 }
1348 public function setHyperlink($hyperlink)
1349 {
1350 $this->hyperlink = $hyperlink;
1351 }
1352 public function getHyperlink()
1353 {
1354 return $this->hyperlink;
1355 }
1356 public function setNote($note)
1357 {
1358 $this->note = $note;
1359 }
1360 public function getNote()
1361 {
1362 return $this->note;
1363 }
1364 public function setPivotTable(Google_Service_Sheets_PivotTable $pivotTable)
1365 {
1366 $this->pivotTable = $pivotTable;
1367 }
1368 public function getPivotTable()
1369 {
1370 return $this->pivotTable;
1371 }
1372 public function setTextFormatRuns($textFormatRuns)
1373 {
1374 $this->textFormatRuns = $textFormatRuns;
1375 }
1376 public function getTextFormatRuns()
1377 {
1378 return $this->textFormatRuns;
1379 }
1380 public function setUserEnteredFormat(Google_Service_Sheets_CellFormat $userEnteredFormat)
1381 {
1382 $this->userEnteredFormat = $userEnteredFormat;
1383 }
1384 public function getUserEnteredFormat()
1385 {
1386 return $this->userEnteredFormat;
1387 }
1388 public function setUserEnteredValue(Google_Service_Sheets_ExtendedValue $userEnteredValue)
1389 {
1390 $this->userEnteredValue = $userEnteredValue;
1391 }
1392 public function getUserEnteredValue()
1393 {
1394 return $this->userEnteredValue;
1395 }
1396 }
1397
1398 class Google_Service_Sheets_CellFormat extends Google_Model
1399 {
1400 protected $internal_gapi_mappings = array(
1401 );
1402 protected $backgroundColorType = 'Google_Service_Sheets_Color';
1403 protected $backgroundColorDataType = '';
1404 protected $bordersType = 'Google_Service_Sheets_Borders';
1405 protected $bordersDataType = '';
1406 public $horizontalAlignment;
1407 public $hyperlinkDisplayType;
1408 protected $numberFormatType = 'Google_Service_Sheets_NumberFormat';
1409 protected $numberFormatDataType = '';
1410 protected $paddingType = 'Google_Service_Sheets_Padding';
1411 protected $paddingDataType = '';
1412 public $textDirection;
1413 protected $textFormatType = 'Google_Service_Sheets_TextFormat';
1414 protected $textFormatDataType = '';
1415 public $verticalAlignment;
1416 public $wrapStrategy;
1417
1418
1419 public function setBackgroundColor(Google_Service_Sheets_Color $backgroundColor)
1420 {
1421 $this->backgroundColor = $backgroundColor;
1422 }
1423 public function getBackgroundColor()
1424 {
1425 return $this->backgroundColor;
1426 }
1427 public function setBorders(Google_Service_Sheets_Borders $borders)
1428 {
1429 $this->borders = $borders;
1430 }
1431 public function getBorders()
1432 {
1433 return $this->borders;
1434 }
1435 public function setHorizontalAlignment($horizontalAlignment)
1436 {
1437 $this->horizontalAlignment = $horizontalAlignment;
1438 }
1439 public function getHorizontalAlignment()
1440 {
1441 return $this->horizontalAlignment;
1442 }
1443 public function setHyperlinkDisplayType($hyperlinkDisplayType)
1444 {
1445 $this->hyperlinkDisplayType = $hyperlinkDisplayType;
1446 }
1447 public function getHyperlinkDisplayType()
1448 {
1449 return $this->hyperlinkDisplayType;
1450 }
1451 public function setNumberFormat(Google_Service_Sheets_NumberFormat $numberFormat)
1452 {
1453 $this->numberFormat = $numberFormat;
1454 }
1455 public function getNumberFormat()
1456 {
1457 return $this->numberFormat;
1458 }
1459 public function setPadding(Google_Service_Sheets_Padding $padding)
1460 {
1461 $this->padding = $padding;
1462 }
1463 public function getPadding()
1464 {
1465 return $this->padding;
1466 }
1467 public function setTextDirection($textDirection)
1468 {
1469 $this->textDirection = $textDirection;
1470 }
1471 public function getTextDirection()
1472 {
1473 return $this->textDirection;
1474 }
1475 public function setTextFormat(Google_Service_Sheets_TextFormat $textFormat)
1476 {
1477 $this->textFormat = $textFormat;
1478 }
1479 public function getTextFormat()
1480 {
1481 return $this->textFormat;
1482 }
1483 public function setVerticalAlignment($verticalAlignment)
1484 {
1485 $this->verticalAlignment = $verticalAlignment;
1486 }
1487 public function getVerticalAlignment()
1488 {
1489 return $this->verticalAlignment;
1490 }
1491 public function setWrapStrategy($wrapStrategy)
1492 {
1493 $this->wrapStrategy = $wrapStrategy;
1494 }
1495 public function getWrapStrategy()
1496 {
1497 return $this->wrapStrategy;
1498 }
1499 }
1500
1501 class Google_Service_Sheets_ChartData extends Google_Model
1502 {
1503 protected $internal_gapi_mappings = array(
1504 );
1505 protected $sourceRangeType = 'Google_Service_Sheets_ChartSourceRange';
1506 protected $sourceRangeDataType = '';
1507
1508
1509 public function setSourceRange(Google_Service_Sheets_ChartSourceRange $sourceRange)
1510 {
1511 $this->sourceRange = $sourceRange;
1512 }
1513 public function getSourceRange()
1514 {
1515 return $this->sourceRange;
1516 }
1517 }
1518
1519 class Google_Service_Sheets_ChartSourceRange extends Google_Collection
1520 {
1521 protected $collection_key = 'sources';
1522 protected $internal_gapi_mappings = array(
1523 );
1524 protected $sourcesType = 'Google_Service_Sheets_GridRange';
1525 protected $sourcesDataType = 'array';
1526
1527
1528 public function setSources($sources)
1529 {
1530 $this->sources = $sources;
1531 }
1532 public function getSources()
1533 {
1534 return $this->sources;
1535 }
1536 }
1537
1538 class Google_Service_Sheets_ChartSpec extends Google_Model
1539 {
1540 protected $internal_gapi_mappings = array(
1541 );
1542 protected $basicChartType = 'Google_Service_Sheets_BasicChartSpec';
1543 protected $basicChartDataType = '';
1544 public $hiddenDimensionStrategy;
1545 protected $pieChartType = 'Google_Service_Sheets_PieChartSpec';
1546 protected $pieChartDataType = '';
1547 public $title;
1548
1549
1550 public function setBasicChart(Google_Service_Sheets_BasicChartSpec $basicChart)
1551 {
1552 $this->basicChart = $basicChart;
1553 }
1554 public function getBasicChart()
1555 {
1556 return $this->basicChart;
1557 }
1558 public function setHiddenDimensionStrategy($hiddenDimensionStrategy)
1559 {
1560 $this->hiddenDimensionStrategy = $hiddenDimensionStrategy;
1561 }
1562 public function getHiddenDimensionStrategy()
1563 {
1564 return $this->hiddenDimensionStrategy;
1565 }
1566 public function setPieChart(Google_Service_Sheets_PieChartSpec $pieChart)
1567 {
1568 $this->pieChart = $pieChart;
1569 }
1570 public function getPieChart()
1571 {
1572 return $this->pieChart;
1573 }
1574 public function setTitle($title)
1575 {
1576 $this->title = $title;
1577 }
1578 public function getTitle()
1579 {
1580 return $this->title;
1581 }
1582 }
1583
1584 class Google_Service_Sheets_ClearBasicFilterRequest extends Google_Model
1585 {
1586 protected $internal_gapi_mappings = array(
1587 );
1588 public $sheetId;
1589
1590
1591 public function setSheetId($sheetId)
1592 {
1593 $this->sheetId = $sheetId;
1594 }
1595 public function getSheetId()
1596 {
1597 return $this->sheetId;
1598 }
1599 }
1600
1601 class Google_Service_Sheets_Color extends Google_Model
1602 {
1603 protected $internal_gapi_mappings = array(
1604 );
1605 public $alpha;
1606 public $blue;
1607 public $green;
1608 public $red;
1609
1610
1611 public function setAlpha($alpha)
1612 {
1613 $this->alpha = $alpha;
1614 }
1615 public function getAlpha()
1616 {
1617 return $this->alpha;
1618 }
1619 public function setBlue($blue)
1620 {
1621 $this->blue = $blue;
1622 }
1623 public function getBlue()
1624 {
1625 return $this->blue;
1626 }
1627 public function setGreen($green)
1628 {
1629 $this->green = $green;
1630 }
1631 public function getGreen()
1632 {
1633 return $this->green;
1634 }
1635 public function setRed($red)
1636 {
1637 $this->red = $red;
1638 }
1639 public function getRed()
1640 {
1641 return $this->red;
1642 }
1643 }
1644
1645 class Google_Service_Sheets_ConditionValue extends Google_Model
1646 {
1647 protected $internal_gapi_mappings = array(
1648 );
1649 public $relativeDate;
1650 public $userEnteredValue;
1651
1652
1653 public function setRelativeDate($relativeDate)
1654 {
1655 $this->relativeDate = $relativeDate;
1656 }
1657 public function getRelativeDate()
1658 {
1659 return $this->relativeDate;
1660 }
1661 public function setUserEnteredValue($userEnteredValue)
1662 {
1663 $this->userEnteredValue = $userEnteredValue;
1664 }
1665 public function getUserEnteredValue()
1666 {
1667 return $this->userEnteredValue;
1668 }
1669 }
1670
1671 class Google_Service_Sheets_ConditionalFormatRule extends Google_Collection
1672 {
1673 protected $collection_key = 'ranges';
1674 protected $internal_gapi_mappings = array(
1675 );
1676 protected $booleanRuleType = 'Google_Service_Sheets_BooleanRule';
1677 protected $booleanRuleDataType = '';
1678 protected $gradientRuleType = 'Google_Service_Sheets_GradientRule';
1679 protected $gradientRuleDataType = '';
1680 protected $rangesType = 'Google_Service_Sheets_GridRange';
1681 protected $rangesDataType = 'array';
1682
1683
1684 public function setBooleanRule(Google_Service_Sheets_BooleanRule $booleanRule)
1685 {
1686 $this->booleanRule = $booleanRule;
1687 }
1688 public function getBooleanRule()
1689 {
1690 return $this->booleanRule;
1691 }
1692 public function setGradientRule(Google_Service_Sheets_GradientRule $gradientRule)
1693 {
1694 $this->gradientRule = $gradientRule;
1695 }
1696 public function getGradientRule()
1697 {
1698 return $this->gradientRule;
1699 }
1700 public function setRanges($ranges)
1701 {
1702 $this->ranges = $ranges;
1703 }
1704 public function getRanges()
1705 {
1706 return $this->ranges;
1707 }
1708 }
1709
1710 class Google_Service_Sheets_CopyPasteRequest extends Google_Model
1711 {
1712 protected $internal_gapi_mappings = array(
1713 );
1714 protected $destinationType = 'Google_Service_Sheets_GridRange';
1715 protected $destinationDataType = '';
1716 public $pasteOrientation;
1717 public $pasteType;
1718 protected $sourceType = 'Google_Service_Sheets_GridRange';
1719 protected $sourceDataType = '';
1720
1721
1722 public function setDestination(Google_Service_Sheets_GridRange $destination)
1723 {
1724 $this->destination = $destination;
1725 }
1726 public function getDestination()
1727 {
1728 return $this->destination;
1729 }
1730 public function setPasteOrientation($pasteOrientation)
1731 {
1732 $this->pasteOrientation = $pasteOrientation;
1733 }
1734 public function getPasteOrientation()
1735 {
1736 return $this->pasteOrientation;
1737 }
1738 public function setPasteType($pasteType)
1739 {
1740 $this->pasteType = $pasteType;
1741 }
1742 public function getPasteType()
1743 {
1744 return $this->pasteType;
1745 }
1746 public function setSource(Google_Service_Sheets_GridRange $source)
1747 {
1748 $this->source = $source;
1749 }
1750 public function getSource()
1751 {
1752 return $this->source;
1753 }
1754 }
1755
1756 class Google_Service_Sheets_CopySheetToAnotherSpreadsheetRequest extends Google_Model
1757 {
1758 protected $internal_gapi_mappings = array(
1759 );
1760 public $destinationSpreadsheetId;
1761
1762
1763 public function setDestinationSpreadsheetId($destinationSpreadsheetId)
1764 {
1765 $this->destinationSpreadsheetId = $destinationSpreadsheetId;
1766 }
1767 public function getDestinationSpreadsheetId()
1768 {
1769 return $this->destinationSpreadsheetId;
1770 }
1771 }
1772
1773 class Google_Service_Sheets_CutPasteRequest extends Google_Model
1774 {
1775 protected $internal_gapi_mappings = array(
1776 );
1777 protected $destinationType = 'Google_Service_Sheets_GridCoordinate';
1778 protected $destinationDataType = '';
1779 public $pasteType;
1780 protected $sourceType = 'Google_Service_Sheets_GridRange';
1781 protected $sourceDataType = '';
1782
1783
1784 public function setDestination(Google_Service_Sheets_GridCoordinate $destination)
1785 {
1786 $this->destination = $destination;
1787 }
1788 public function getDestination()
1789 {
1790 return $this->destination;
1791 }
1792 public function setPasteType($pasteType)
1793 {
1794 $this->pasteType = $pasteType;
1795 }
1796 public function getPasteType()
1797 {
1798 return $this->pasteType;
1799 }
1800 public function setSource(Google_Service_Sheets_GridRange $source)
1801 {
1802 $this->source = $source;
1803 }
1804 public function getSource()
1805 {
1806 return $this->source;
1807 }
1808 }
1809
1810 class Google_Service_Sheets_DataValidationRule extends Google_Model
1811 {
1812 protected $internal_gapi_mappings = array(
1813 );
1814 protected $conditionType = 'Google_Service_Sheets_BooleanCondition';
1815 protected $conditionDataType = '';
1816 public $inputMessage;
1817 public $showCustomUi;
1818 public $strict;
1819
1820
1821 public function setCondition(Google_Service_Sheets_BooleanCondition $condition)
1822 {
1823 $this->condition = $condition;
1824 }
1825 public function getCondition()
1826 {
1827 return $this->condition;
1828 }
1829 public function setInputMessage($inputMessage)
1830 {
1831 $this->inputMessage = $inputMessage;
1832 }
1833 public function getInputMessage()
1834 {
1835 return $this->inputMessage;
1836 }
1837 public function setShowCustomUi($showCustomUi)
1838 {
1839 $this->showCustomUi = $showCustomUi;
1840 }
1841 public function getShowCustomUi()
1842 {
1843 return $this->showCustomUi;
1844 }
1845 public function setStrict($strict)
1846 {
1847 $this->strict = $strict;
1848 }
1849 public function getStrict()
1850 {
1851 return $this->strict;
1852 }
1853 }
1854
1855 class Google_Service_Sheets_DeleteConditionalFormatRuleRequest extends Google_Model
1856 {
1857 protected $internal_gapi_mappings = array(
1858 );
1859 public $index;
1860 public $sheetId;
1861
1862
1863 public function setIndex($index)
1864 {
1865 $this->index = $index;
1866 }
1867 public function getIndex()
1868 {
1869 return $this->index;
1870 }
1871 public function setSheetId($sheetId)
1872 {
1873 $this->sheetId = $sheetId;
1874 }
1875 public function getSheetId()
1876 {
1877 return $this->sheetId;
1878 }
1879 }
1880
1881 class Google_Service_Sheets_DeleteConditionalFormatRuleResponse extends Google_Model
1882 {
1883 protected $internal_gapi_mappings = array(
1884 );
1885 protected $ruleType = 'Google_Service_Sheets_ConditionalFormatRule';
1886 protected $ruleDataType = '';
1887
1888
1889 public function setRule(Google_Service_Sheets_ConditionalFormatRule $rule)
1890 {
1891 $this->rule = $rule;
1892 }
1893 public function getRule()
1894 {
1895 return $this->rule;
1896 }
1897 }
1898
1899 class Google_Service_Sheets_DeleteDimensionRequest extends Google_Model
1900 {
1901 protected $internal_gapi_mappings = array(
1902 );
1903 protected $rangeType = 'Google_Service_Sheets_DimensionRange';
1904 protected $rangeDataType = '';
1905
1906
1907 public function setRange(Google_Service_Sheets_DimensionRange $range)
1908 {
1909 $this->range = $range;
1910 }
1911 public function getRange()
1912 {
1913 return $this->range;
1914 }
1915 }
1916
1917 class Google_Service_Sheets_DeleteEmbeddedObjectRequest extends Google_Model
1918 {
1919 protected $internal_gapi_mappings = array(
1920 );
1921 public $objectId;
1922
1923
1924 public function setObjectId($objectId)
1925 {
1926 $this->objectId = $objectId;
1927 }
1928 public function getObjectId()
1929 {
1930 return $this->objectId;
1931 }
1932 }
1933
1934 class Google_Service_Sheets_DeleteFilterViewRequest extends Google_Model
1935 {
1936 protected $internal_gapi_mappings = array(
1937 );
1938 public $filterId;
1939
1940
1941 public function setFilterId($filterId)
1942 {
1943 $this->filterId = $filterId;
1944 }
1945 public function getFilterId()
1946 {
1947 return $this->filterId;
1948 }
1949 }
1950
1951 class Google_Service_Sheets_DeleteNamedRangeRequest extends Google_Model
1952 {
1953 protected $internal_gapi_mappings = array(
1954 );
1955 public $namedRangeId;
1956
1957
1958 public function setNamedRangeId($namedRangeId)
1959 {
1960 $this->namedRangeId = $namedRangeId;
1961 }
1962 public function getNamedRangeId()
1963 {
1964 return $this->namedRangeId;
1965 }
1966 }
1967
1968 class Google_Service_Sheets_DeleteProtectedRangeRequest extends Google_Model
1969 {
1970 protected $internal_gapi_mappings = array(
1971 );
1972 public $protectedRangeId;
1973
1974
1975 public function setProtectedRangeId($protectedRangeId)
1976 {
1977 $this->protectedRangeId = $protectedRangeId;
1978 }
1979 public function getProtectedRangeId()
1980 {
1981 return $this->protectedRangeId;
1982 }
1983 }
1984
1985 class Google_Service_Sheets_DeleteSheetRequest extends Google_Model
1986 {
1987 protected $internal_gapi_mappings = array(
1988 );
1989 public $sheetId;
1990
1991
1992 public function setSheetId($sheetId)
1993 {
1994 $this->sheetId = $sheetId;
1995 }
1996 public function getSheetId()
1997 {
1998 return $this->sheetId;
1999 }
2000 }
2001
2002 class Google_Service_Sheets_DimensionProperties extends Google_Model
2003 {
2004 protected $internal_gapi_mappings = array(
2005 );
2006 public $hiddenByFilter;
2007 public $hiddenByUser;
2008 public $pixelSize;
2009
2010
2011 public function setHiddenByFilter($hiddenByFilter)
2012 {
2013 $this->hiddenByFilter = $hiddenByFilter;
2014 }
2015 public function getHiddenByFilter()
2016 {
2017 return $this->hiddenByFilter;
2018 }
2019 public function setHiddenByUser($hiddenByUser)
2020 {
2021 $this->hiddenByUser = $hiddenByUser;
2022 }
2023 public function getHiddenByUser()
2024 {
2025 return $this->hiddenByUser;
2026 }
2027 public function setPixelSize($pixelSize)
2028 {
2029 $this->pixelSize = $pixelSize;
2030 }
2031 public function getPixelSize()
2032 {
2033 return $this->pixelSize;
2034 }
2035 }
2036
2037 class Google_Service_Sheets_DimensionRange extends Google_Model
2038 {
2039 protected $internal_gapi_mappings = array(
2040 );
2041 public $dimension;
2042 public $endIndex;
2043 public $sheetId;
2044 public $startIndex;
2045
2046
2047 public function setDimension($dimension)
2048 {
2049 $this->dimension = $dimension;
2050 }
2051 public function getDimension()
2052 {
2053 return $this->dimension;
2054 }
2055 public function setEndIndex($endIndex)
2056 {
2057 $this->endIndex = $endIndex;
2058 }
2059 public function getEndIndex()
2060 {
2061 return $this->endIndex;
2062 }
2063 public function setSheetId($sheetId)
2064 {
2065 $this->sheetId = $sheetId;
2066 }
2067 public function getSheetId()
2068 {
2069 return $this->sheetId;
2070 }
2071 public function setStartIndex($startIndex)
2072 {
2073 $this->startIndex = $startIndex;
2074 }
2075 public function getStartIndex()
2076 {
2077 return $this->startIndex;
2078 }
2079 }
2080
2081 class Google_Service_Sheets_DuplicateFilterViewRequest extends Google_Model
2082 {
2083 protected $internal_gapi_mappings = array(
2084 );
2085 public $filterId;
2086
2087
2088 public function setFilterId($filterId)
2089 {
2090 $this->filterId = $filterId;
2091 }
2092 public function getFilterId()
2093 {
2094 return $this->filterId;
2095 }
2096 }
2097
2098 class Google_Service_Sheets_DuplicateFilterViewResponse extends Google_Model
2099 {
2100 protected $internal_gapi_mappings = array(
2101 );
2102 protected $filterType = 'Google_Service_Sheets_FilterView';
2103 protected $filterDataType = '';
2104
2105
2106 public function setFilter(Google_Service_Sheets_FilterView $filter)
2107 {
2108 $this->filter = $filter;
2109 }
2110 public function getFilter()
2111 {
2112 return $this->filter;
2113 }
2114 }
2115
2116 class Google_Service_Sheets_DuplicateSheetRequest extends Google_Model
2117 {
2118 protected $internal_gapi_mappings = array(
2119 );
2120 public $insertSheetIndex;
2121 public $newSheetId;
2122 public $newSheetName;
2123 public $sourceSheetId;
2124
2125
2126 public function setInsertSheetIndex($insertSheetIndex)
2127 {
2128 $this->insertSheetIndex = $insertSheetIndex;
2129 }
2130 public function getInsertSheetIndex()
2131 {
2132 return $this->insertSheetIndex;
2133 }
2134 public function setNewSheetId($newSheetId)
2135 {
2136 $this->newSheetId = $newSheetId;
2137 }
2138 public function getNewSheetId()
2139 {
2140 return $this->newSheetId;
2141 }
2142 public function setNewSheetName($newSheetName)
2143 {
2144 $this->newSheetName = $newSheetName;
2145 }
2146 public function getNewSheetName()
2147 {
2148 return $this->newSheetName;
2149 }
2150 public function setSourceSheetId($sourceSheetId)
2151 {
2152 $this->sourceSheetId = $sourceSheetId;
2153 }
2154 public function getSourceSheetId()
2155 {
2156 return $this->sourceSheetId;
2157 }
2158 }
2159
2160 class Google_Service_Sheets_DuplicateSheetResponse extends Google_Model
2161 {
2162 protected $internal_gapi_mappings = array(
2163 );
2164 protected $propertiesType = 'Google_Service_Sheets_SheetProperties';
2165 protected $propertiesDataType = '';
2166
2167
2168 public function setProperties(Google_Service_Sheets_SheetProperties $properties)
2169 {
2170 $this->properties = $properties;
2171 }
2172 public function getProperties()
2173 {
2174 return $this->properties;
2175 }
2176 }
2177
2178 class Google_Service_Sheets_Editors extends Google_Collection
2179 {
2180 protected $collection_key = 'users';
2181 protected $internal_gapi_mappings = array(
2182 );
2183 public $domainUsersCanEdit;
2184 public $groups;
2185 public $users;
2186
2187
2188 public function setDomainUsersCanEdit($domainUsersCanEdit)
2189 {
2190 $this->domainUsersCanEdit = $domainUsersCanEdit;
2191 }
2192 public function getDomainUsersCanEdit()
2193 {
2194 return $this->domainUsersCanEdit;
2195 }
2196 public function setGroups($groups)
2197 {
2198 $this->groups = $groups;
2199 }
2200 public function getGroups()
2201 {
2202 return $this->groups;
2203 }
2204 public function setUsers($users)
2205 {
2206 $this->users = $users;
2207 }
2208 public function getUsers()
2209 {
2210 return $this->users;
2211 }
2212 }
2213
2214 class Google_Service_Sheets_EmbeddedChart extends Google_Model
2215 {
2216 protected $internal_gapi_mappings = array(
2217 );
2218 public $chartId;
2219 protected $positionType = 'Google_Service_Sheets_EmbeddedObjectPosition';
2220 protected $positionDataType = '';
2221 protected $specType = 'Google_Service_Sheets_ChartSpec';
2222 protected $specDataType = '';
2223
2224
2225 public function setChartId($chartId)
2226 {
2227 $this->chartId = $chartId;
2228 }
2229 public function getChartId()
2230 {
2231 return $this->chartId;
2232 }
2233 public function setPosition(Google_Service_Sheets_EmbeddedObjectPosition $position)
2234 {
2235 $this->position = $position;
2236 }
2237 public function getPosition()
2238 {
2239 return $this->position;
2240 }
2241 public function setSpec(Google_Service_Sheets_ChartSpec $spec)
2242 {
2243 $this->spec = $spec;
2244 }
2245 public function getSpec()
2246 {
2247 return $this->spec;
2248 }
2249 }
2250
2251 class Google_Service_Sheets_EmbeddedObjectPosition extends Google_Model
2252 {
2253 protected $internal_gapi_mappings = array(
2254 );
2255 public $newSheet;
2256 protected $overlayPositionType = 'Google_Service_Sheets_OverlayPosition';
2257 protected $overlayPositionDataType = '';
2258 public $sheetId;
2259
2260
2261 public function setNewSheet($newSheet)
2262 {
2263 $this->newSheet = $newSheet;
2264 }
2265 public function getNewSheet()
2266 {
2267 return $this->newSheet;
2268 }
2269 public function setOverlayPosition(Google_Service_Sheets_OverlayPosition $overlayPosition)
2270 {
2271 $this->overlayPosition = $overlayPosition;
2272 }
2273 public function getOverlayPosition()
2274 {
2275 return $this->overlayPosition;
2276 }
2277 public function setSheetId($sheetId)
2278 {
2279 $this->sheetId = $sheetId;
2280 }
2281 public function getSheetId()
2282 {
2283 return $this->sheetId;
2284 }
2285 }
2286
2287 class Google_Service_Sheets_ErrorValue extends Google_Model
2288 {
2289 protected $internal_gapi_mappings = array(
2290 );
2291 public $message;
2292 public $type;
2293
2294
2295 public function setMessage($message)
2296 {
2297 $this->message = $message;
2298 }
2299 public function getMessage()
2300 {
2301 return $this->message;
2302 }
2303 public function setType($type)
2304 {
2305 $this->type = $type;
2306 }
2307 public function getType()
2308 {
2309 return $this->type;
2310 }
2311 }
2312
2313 class Google_Service_Sheets_ExtendedValue extends Google_Model
2314 {
2315 protected $internal_gapi_mappings = array(
2316 );
2317 public $boolValue;
2318 protected $errorValueType = 'Google_Service_Sheets_ErrorValue';
2319 protected $errorValueDataType = '';
2320 public $formulaValue;
2321 public $numberValue;
2322 public $stringValue;
2323
2324
2325 public function setBoolValue($boolValue)
2326 {
2327 $this->boolValue = $boolValue;
2328 }
2329 public function getBoolValue()
2330 {
2331 return $this->boolValue;
2332 }
2333 public function setErrorValue(Google_Service_Sheets_ErrorValue $errorValue)
2334 {
2335 $this->errorValue = $errorValue;
2336 }
2337 public function getErrorValue()
2338 {
2339 return $this->errorValue;
2340 }
2341 public function setFormulaValue($formulaValue)
2342 {
2343 $this->formulaValue = $formulaValue;
2344 }
2345 public function getFormulaValue()
2346 {
2347 return $this->formulaValue;
2348 }
2349 public function setNumberValue($numberValue)
2350 {
2351 $this->numberValue = $numberValue;
2352 }
2353 public function getNumberValue()
2354 {
2355 return $this->numberValue;
2356 }
2357 public function setStringValue($stringValue)
2358 {
2359 $this->stringValue = $stringValue;
2360 }
2361 public function getStringValue()
2362 {
2363 return $this->stringValue;
2364 }
2365 }
2366
2367 class Google_Service_Sheets_FilterCriteria extends Google_Collection
2368 {
2369 protected $collection_key = 'hiddenValues';
2370 protected $internal_gapi_mappings = array(
2371 );
2372 protected $conditionType = 'Google_Service_Sheets_BooleanCondition';
2373 protected $conditionDataType = '';
2374 public $hiddenValues;
2375
2376
2377 public function setCondition(Google_Service_Sheets_BooleanCondition $condition)
2378 {
2379 $this->condition = $condition;
2380 }
2381 public function getCondition()
2382 {
2383 return $this->condition;
2384 }
2385 public function setHiddenValues($hiddenValues)
2386 {
2387 $this->hiddenValues = $hiddenValues;
2388 }
2389 public function getHiddenValues()
2390 {
2391 return $this->hiddenValues;
2392 }
2393 }
2394
2395 class Google_Service_Sheets_FilterView extends Google_Collection
2396 {
2397 protected $collection_key = 'sortSpecs';
2398 protected $internal_gapi_mappings = array(
2399 );
2400 protected $criteriaType = 'Google_Service_Sheets_FilterCriteria';
2401 protected $criteriaDataType = 'map';
2402 public $filterViewId;
2403 public $namedRangeId;
2404 protected $rangeType = 'Google_Service_Sheets_GridRange';
2405 protected $rangeDataType = '';
2406 protected $sortSpecsType = 'Google_Service_Sheets_SortSpec';
2407 protected $sortSpecsDataType = 'array';
2408 public $title;
2409
2410
2411 public function setCriteria($criteria)
2412 {
2413 $this->criteria = $criteria;
2414 }
2415 public function getCriteria()
2416 {
2417 return $this->criteria;
2418 }
2419 public function setFilterViewId($filterViewId)
2420 {
2421 $this->filterViewId = $filterViewId;
2422 }
2423 public function getFilterViewId()
2424 {
2425 return $this->filterViewId;
2426 }
2427 public function setNamedRangeId($namedRangeId)
2428 {
2429 $this->namedRangeId = $namedRangeId;
2430 }
2431 public function getNamedRangeId()
2432 {
2433 return $this->namedRangeId;
2434 }
2435 public function setRange(Google_Service_Sheets_GridRange $range)
2436 {
2437 $this->range = $range;
2438 }
2439 public function getRange()
2440 {
2441 return $this->range;
2442 }
2443 public function setSortSpecs($sortSpecs)
2444 {
2445 $this->sortSpecs = $sortSpecs;
2446 }
2447 public function getSortSpecs()
2448 {
2449 return $this->sortSpecs;
2450 }
2451 public function setTitle($title)
2452 {
2453 $this->title = $title;
2454 }
2455 public function getTitle()
2456 {
2457 return $this->title;
2458 }
2459 }
2460
2461 class Google_Service_Sheets_FindReplaceRequest extends Google_Model
2462 {
2463 protected $internal_gapi_mappings = array(
2464 );
2465 public $allSheets;
2466 public $find;
2467 public $includeFormulas;
2468 public $matchCase;
2469 public $matchEntireCell;
2470 protected $rangeType = 'Google_Service_Sheets_GridRange';
2471 protected $rangeDataType = '';
2472 public $replacement;
2473 public $searchByRegex;
2474 public $sheetId;
2475
2476
2477 public function setAllSheets($allSheets)
2478 {
2479 $this->allSheets = $allSheets;
2480 }
2481 public function getAllSheets()
2482 {
2483 return $this->allSheets;
2484 }
2485 public function setFind($find)
2486 {
2487 $this->find = $find;
2488 }
2489 public function getFind()
2490 {
2491 return $this->find;
2492 }
2493 public function setIncludeFormulas($includeFormulas)
2494 {
2495 $this->includeFormulas = $includeFormulas;
2496 }
2497 public function getIncludeFormulas()
2498 {
2499 return $this->includeFormulas;
2500 }
2501 public function setMatchCase($matchCase)
2502 {
2503 $this->matchCase = $matchCase;
2504 }
2505 public function getMatchCase()
2506 {
2507 return $this->matchCase;
2508 }
2509 public function setMatchEntireCell($matchEntireCell)
2510 {
2511 $this->matchEntireCell = $matchEntireCell;
2512 }
2513 public function getMatchEntireCell()
2514 {
2515 return $this->matchEntireCell;
2516 }
2517 public function setRange(Google_Service_Sheets_GridRange $range)
2518 {
2519 $this->range = $range;
2520 }
2521 public function getRange()
2522 {
2523 return $this->range;
2524 }
2525 public function setReplacement($replacement)
2526 {
2527 $this->replacement = $replacement;
2528 }
2529 public function getReplacement()
2530 {
2531 return $this->replacement;
2532 }
2533 public function setSearchByRegex($searchByRegex)
2534 {
2535 $this->searchByRegex = $searchByRegex;
2536 }
2537 public function getSearchByRegex()
2538 {
2539 return $this->searchByRegex;
2540 }
2541 public function setSheetId($sheetId)
2542 {
2543 $this->sheetId = $sheetId;
2544 }
2545 public function getSheetId()
2546 {
2547 return $this->sheetId;
2548 }
2549 }
2550
2551 class Google_Service_Sheets_FindReplaceResponse extends Google_Model
2552 {
2553 protected $internal_gapi_mappings = array(
2554 );
2555 public $formulasChanged;
2556 public $occurrencesChanged;
2557 public $rowsChanged;
2558 public $sheetsChanged;
2559 public $valuesChanged;
2560
2561
2562 public function setFormulasChanged($formulasChanged)
2563 {
2564 $this->formulasChanged = $formulasChanged;
2565 }
2566 public function getFormulasChanged()
2567 {
2568 return $this->formulasChanged;
2569 }
2570 public function setOccurrencesChanged($occurrencesChanged)
2571 {
2572 $this->occurrencesChanged = $occurrencesChanged;
2573 }
2574 public function getOccurrencesChanged()
2575 {
2576 return $this->occurrencesChanged;
2577 }
2578 public function setRowsChanged($rowsChanged)
2579 {
2580 $this->rowsChanged = $rowsChanged;
2581 }
2582 public function getRowsChanged()
2583 {
2584 return $this->rowsChanged;
2585 }
2586 public function setSheetsChanged($sheetsChanged)
2587 {
2588 $this->sheetsChanged = $sheetsChanged;
2589 }
2590 public function getSheetsChanged()
2591 {
2592 return $this->sheetsChanged;
2593 }
2594 public function setValuesChanged($valuesChanged)
2595 {
2596 $this->valuesChanged = $valuesChanged;
2597 }
2598 public function getValuesChanged()
2599 {
2600 return $this->valuesChanged;
2601 }
2602 }
2603
2604 class Google_Service_Sheets_GradientRule extends Google_Model
2605 {
2606 protected $internal_gapi_mappings = array(
2607 );
2608 protected $maxpointType = 'Google_Service_Sheets_InterpolationPoint';
2609 protected $maxpointDataType = '';
2610 protected $midpointType = 'Google_Service_Sheets_InterpolationPoint';
2611 protected $midpointDataType = '';
2612 protected $minpointType = 'Google_Service_Sheets_InterpolationPoint';
2613 protected $minpointDataType = '';
2614
2615
2616 public function setMaxpoint(Google_Service_Sheets_InterpolationPoint $maxpoint)
2617 {
2618 $this->maxpoint = $maxpoint;
2619 }
2620 public function getMaxpoint()
2621 {
2622 return $this->maxpoint;
2623 }
2624 public function setMidpoint(Google_Service_Sheets_InterpolationPoint $midpoint)
2625 {
2626 $this->midpoint = $midpoint;
2627 }
2628 public function getMidpoint()
2629 {
2630 return $this->midpoint;
2631 }
2632 public function setMinpoint(Google_Service_Sheets_InterpolationPoint $minpoint)
2633 {
2634 $this->minpoint = $minpoint;
2635 }
2636 public function getMinpoint()
2637 {
2638 return $this->minpoint;
2639 }
2640 }
2641
2642 class Google_Service_Sheets_GridCoordinate extends Google_Model
2643 {
2644 protected $internal_gapi_mappings = array(
2645 );
2646 public $columnIndex;
2647 public $rowIndex;
2648 public $sheetId;
2649
2650
2651 public function setColumnIndex($columnIndex)
2652 {
2653 $this->columnIndex = $columnIndex;
2654 }
2655 public function getColumnIndex()
2656 {
2657 return $this->columnIndex;
2658 }
2659 public function setRowIndex($rowIndex)
2660 {
2661 $this->rowIndex = $rowIndex;
2662 }
2663 public function getRowIndex()
2664 {
2665 return $this->rowIndex;
2666 }
2667 public function setSheetId($sheetId)
2668 {
2669 $this->sheetId = $sheetId;
2670 }
2671 public function getSheetId()
2672 {
2673 return $this->sheetId;
2674 }
2675 }
2676
2677 class Google_Service_Sheets_GridData extends Google_Collection
2678 {
2679 protected $collection_key = 'rowMetadata';
2680 protected $internal_gapi_mappings = array(
2681 );
2682 protected $columnMetadataType = 'Google_Service_Sheets_DimensionProperties';
2683 protected $columnMetadataDataType = 'array';
2684 protected $rowDataType = 'Google_Service_Sheets_RowData';
2685 protected $rowDataDataType = 'array';
2686 protected $rowMetadataType = 'Google_Service_Sheets_DimensionProperties';
2687 protected $rowMetadataDataType = 'array';
2688 public $startColumn;
2689 public $startRow;
2690
2691
2692 public function setColumnMetadata($columnMetadata)
2693 {
2694 $this->columnMetadata = $columnMetadata;
2695 }
2696 public function getColumnMetadata()
2697 {
2698 return $this->columnMetadata;
2699 }
2700 public function setRowData($rowData)
2701 {
2702 $this->rowData = $rowData;
2703 }
2704 public function getRowData()
2705 {
2706 return $this->rowData;
2707 }
2708 public function setRowMetadata($rowMetadata)
2709 {
2710 $this->rowMetadata = $rowMetadata;
2711 }
2712 public function getRowMetadata()
2713 {
2714 return $this->rowMetadata;
2715 }
2716 public function setStartColumn($startColumn)
2717 {
2718 $this->startColumn = $startColumn;
2719 }
2720 public function getStartColumn()
2721 {
2722 return $this->startColumn;
2723 }
2724 public function setStartRow($startRow)
2725 {
2726 $this->startRow = $startRow;
2727 }
2728 public function getStartRow()
2729 {
2730 return $this->startRow;
2731 }
2732 }
2733
2734 class Google_Service_Sheets_GridProperties extends Google_Model
2735 {
2736 protected $internal_gapi_mappings = array(
2737 );
2738 public $columnCount;
2739 public $frozenColumnCount;
2740 public $frozenRowCount;
2741 public $hideGridlines;
2742 public $rowCount;
2743
2744
2745 public function setColumnCount($columnCount)
2746 {
2747 $this->columnCount = $columnCount;
2748 }
2749 public function getColumnCount()
2750 {
2751 return $this->columnCount;
2752 }
2753 public function setFrozenColumnCount($frozenColumnCount)
2754 {
2755 $this->frozenColumnCount = $frozenColumnCount;
2756 }
2757 public function getFrozenColumnCount()
2758 {
2759 return $this->frozenColumnCount;
2760 }
2761 public function setFrozenRowCount($frozenRowCount)
2762 {
2763 $this->frozenRowCount = $frozenRowCount;
2764 }
2765 public function getFrozenRowCount()
2766 {
2767 return $this->frozenRowCount;
2768 }
2769 public function setHideGridlines($hideGridlines)
2770 {
2771 $this->hideGridlines = $hideGridlines;
2772 }
2773 public function getHideGridlines()
2774 {
2775 return $this->hideGridlines;
2776 }
2777 public function setRowCount($rowCount)
2778 {
2779 $this->rowCount = $rowCount;
2780 }
2781 public function getRowCount()
2782 {
2783 return $this->rowCount;
2784 }
2785 }
2786
2787 class Google_Service_Sheets_GridRange extends Google_Model
2788 {
2789 protected $internal_gapi_mappings = array(
2790 );
2791 public $endColumnIndex;
2792 public $endRowIndex;
2793 public $sheetId;
2794 public $startColumnIndex;
2795 public $startRowIndex;
2796
2797
2798 public function setEndColumnIndex($endColumnIndex)
2799 {
2800 $this->endColumnIndex = $endColumnIndex;
2801 }
2802 public function getEndColumnIndex()
2803 {
2804 return $this->endColumnIndex;
2805 }
2806 public function setEndRowIndex($endRowIndex)
2807 {
2808 $this->endRowIndex = $endRowIndex;
2809 }
2810 public function getEndRowIndex()
2811 {
2812 return $this->endRowIndex;
2813 }
2814 public function setSheetId($sheetId)
2815 {
2816 $this->sheetId = $sheetId;
2817 }
2818 public function getSheetId()
2819 {
2820 return $this->sheetId;
2821 }
2822 public function setStartColumnIndex($startColumnIndex)
2823 {
2824 $this->startColumnIndex = $startColumnIndex;
2825 }
2826 public function getStartColumnIndex()
2827 {
2828 return $this->startColumnIndex;
2829 }
2830 public function setStartRowIndex($startRowIndex)
2831 {
2832 $this->startRowIndex = $startRowIndex;
2833 }
2834 public function getStartRowIndex()
2835 {
2836 return $this->startRowIndex;
2837 }
2838 }
2839
2840 class Google_Service_Sheets_InsertDimensionRequest extends Google_Model
2841 {
2842 protected $internal_gapi_mappings = array(
2843 );
2844 public $inheritFromBefore;
2845 protected $rangeType = 'Google_Service_Sheets_DimensionRange';
2846 protected $rangeDataType = '';
2847
2848
2849 public function setInheritFromBefore($inheritFromBefore)
2850 {
2851 $this->inheritFromBefore = $inheritFromBefore;
2852 }
2853 public function getInheritFromBefore()
2854 {
2855 return $this->inheritFromBefore;
2856 }
2857 public function setRange(Google_Service_Sheets_DimensionRange $range)
2858 {
2859 $this->range = $range;
2860 }
2861 public function getRange()
2862 {
2863 return $this->range;
2864 }
2865 }
2866
2867 class Google_Service_Sheets_InterpolationPoint extends Google_Model
2868 {
2869 protected $internal_gapi_mappings = array(
2870 );
2871 protected $colorType = 'Google_Service_Sheets_Color';
2872 protected $colorDataType = '';
2873 public $type;
2874 public $value;
2875
2876
2877 public function setColor(Google_Service_Sheets_Color $color)
2878 {
2879 $this->color = $color;
2880 }
2881 public function getColor()
2882 {
2883 return $this->color;
2884 }
2885 public function setType($type)
2886 {
2887 $this->type = $type;
2888 }
2889 public function getType()
2890 {
2891 return $this->type;
2892 }
2893 public function setValue($value)
2894 {
2895 $this->value = $value;
2896 }
2897 public function getValue()
2898 {
2899 return $this->value;
2900 }
2901 }
2902
2903 class Google_Service_Sheets_MergeCellsRequest extends Google_Model
2904 {
2905 protected $internal_gapi_mappings = array(
2906 );
2907 public $mergeType;
2908 protected $rangeType = 'Google_Service_Sheets_GridRange';
2909 protected $rangeDataType = '';
2910
2911
2912 public function setMergeType($mergeType)
2913 {
2914 $this->mergeType = $mergeType;
2915 }
2916 public function getMergeType()
2917 {
2918 return $this->mergeType;
2919 }
2920 public function setRange(Google_Service_Sheets_GridRange $range)
2921 {
2922 $this->range = $range;
2923 }
2924 public function getRange()
2925 {
2926 return $this->range;
2927 }
2928 }
2929
2930 class Google_Service_Sheets_MoveDimensionRequest extends Google_Model
2931 {
2932 protected $internal_gapi_mappings = array(
2933 );
2934 public $destinationIndex;
2935 protected $sourceType = 'Google_Service_Sheets_DimensionRange';
2936 protected $sourceDataType = '';
2937
2938
2939 public function setDestinationIndex($destinationIndex)
2940 {
2941 $this->destinationIndex = $destinationIndex;
2942 }
2943 public function getDestinationIndex()
2944 {
2945 return $this->destinationIndex;
2946 }
2947 public function setSource(Google_Service_Sheets_DimensionRange $source)
2948 {
2949 $this->source = $source;
2950 }
2951 public function getSource()
2952 {
2953 return $this->source;
2954 }
2955 }
2956
2957 class Google_Service_Sheets_NamedRange extends Google_Model
2958 {
2959 protected $internal_gapi_mappings = array(
2960 );
2961 public $name;
2962 public $namedRangeId;
2963 protected $rangeType = 'Google_Service_Sheets_GridRange';
2964 protected $rangeDataType = '';
2965
2966
2967 public function setName($name)
2968 {
2969 $this->name = $name;
2970 }
2971 public function getName()
2972 {
2973 return $this->name;
2974 }
2975 public function setNamedRangeId($namedRangeId)
2976 {
2977 $this->namedRangeId = $namedRangeId;
2978 }
2979 public function getNamedRangeId()
2980 {
2981 return $this->namedRangeId;
2982 }
2983 public function setRange(Google_Service_Sheets_GridRange $range)
2984 {
2985 $this->range = $range;
2986 }
2987 public function getRange()
2988 {
2989 return $this->range;
2990 }
2991 }
2992
2993 class Google_Service_Sheets_NumberFormat extends Google_Model
2994 {
2995 protected $internal_gapi_mappings = array(
2996 );
2997 public $pattern;
2998 public $type;
2999
3000
3001 public function setPattern($pattern)
3002 {
3003 $this->pattern = $pattern;
3004 }
3005 public function getPattern()
3006 {
3007 return $this->pattern;
3008 }
3009 public function setType($type)
3010 {
3011 $this->type = $type;
3012 }
3013 public function getType()
3014 {
3015 return $this->type;
3016 }
3017 }
3018
3019 class Google_Service_Sheets_OverlayPosition extends Google_Model
3020 {
3021 protected $internal_gapi_mappings = array(
3022 );
3023 protected $anchorCellType = 'Google_Service_Sheets_GridCoordinate';
3024 protected $anchorCellDataType = '';
3025 public $heightPixels;
3026 public $offsetXPixels;
3027 public $offsetYPixels;
3028 public $widthPixels;
3029
3030
3031 public function setAnchorCell(Google_Service_Sheets_GridCoordinate $anchorCell)
3032 {
3033 $this->anchorCell = $anchorCell;
3034 }
3035 public function getAnchorCell()
3036 {
3037 return $this->anchorCell;
3038 }
3039 public function setHeightPixels($heightPixels)
3040 {
3041 $this->heightPixels = $heightPixels;
3042 }
3043 public function getHeightPixels()
3044 {
3045 return $this->heightPixels;
3046 }
3047 public function setOffsetXPixels($offsetXPixels)
3048 {
3049 $this->offsetXPixels = $offsetXPixels;
3050 }
3051 public function getOffsetXPixels()
3052 {
3053 return $this->offsetXPixels;
3054 }
3055 public function setOffsetYPixels($offsetYPixels)
3056 {
3057 $this->offsetYPixels = $offsetYPixels;
3058 }
3059 public function getOffsetYPixels()
3060 {
3061 return $this->offsetYPixels;
3062 }
3063 public function setWidthPixels($widthPixels)
3064 {
3065 $this->widthPixels = $widthPixels;
3066 }
3067 public function getWidthPixels()
3068 {
3069 return $this->widthPixels;
3070 }
3071 }
3072
3073 class Google_Service_Sheets_Padding extends Google_Model
3074 {
3075 protected $internal_gapi_mappings = array(
3076 );
3077 public $bottom;
3078 public $left;
3079 public $right;
3080 public $top;
3081
3082
3083 public function setBottom($bottom)
3084 {
3085 $this->bottom = $bottom;
3086 }
3087 public function getBottom()
3088 {
3089 return $this->bottom;
3090 }
3091 public function setLeft($left)
3092 {
3093 $this->left = $left;
3094 }
3095 public function getLeft()
3096 {
3097 return $this->left;
3098 }
3099 public function setRight($right)
3100 {
3101 $this->right = $right;
3102 }
3103 public function getRight()
3104 {
3105 return $this->right;
3106 }
3107 public function setTop($top)
3108 {
3109 $this->top = $top;
3110 }
3111 public function getTop()
3112 {
3113 return $this->top;
3114 }
3115 }
3116
3117 class Google_Service_Sheets_PasteDataRequest extends Google_Model
3118 {
3119 protected $internal_gapi_mappings = array(
3120 );
3121 protected $coordinateType = 'Google_Service_Sheets_GridCoordinate';
3122 protected $coordinateDataType = '';
3123 public $data;
3124 public $delimiter;
3125 public $html;
3126 public $type;
3127
3128
3129 public function setCoordinate(Google_Service_Sheets_GridCoordinate $coordinate)
3130 {
3131 $this->coordinate = $coordinate;
3132 }
3133 public function getCoordinate()
3134 {
3135 return $this->coordinate;
3136 }
3137 public function setData($data)
3138 {
3139 $this->data = $data;
3140 }
3141 public function getData()
3142 {
3143 return $this->data;
3144 }
3145 public function setDelimiter($delimiter)
3146 {
3147 $this->delimiter = $delimiter;
3148 }
3149 public function getDelimiter()
3150 {
3151 return $this->delimiter;
3152 }
3153 public function setHtml($html)
3154 {
3155 $this->html = $html;
3156 }
3157 public function getHtml()
3158 {
3159 return $this->html;
3160 }
3161 public function setType($type)
3162 {
3163 $this->type = $type;
3164 }
3165 public function getType()
3166 {
3167 return $this->type;
3168 }
3169 }
3170
3171 class Google_Service_Sheets_PieChartSpec extends Google_Model
3172 {
3173 protected $internal_gapi_mappings = array(
3174 );
3175 protected $domainType = 'Google_Service_Sheets_ChartData';
3176 protected $domainDataType = '';
3177 public $legendPosition;
3178 public $pieHole;
3179 protected $seriesType = 'Google_Service_Sheets_ChartData';
3180 protected $seriesDataType = '';
3181 public $threeDimensional;
3182
3183
3184 public function setDomain(Google_Service_Sheets_ChartData $domain)
3185 {
3186 $this->domain = $domain;
3187 }
3188 public function getDomain()
3189 {
3190 return $this->domain;
3191 }
3192 public function setLegendPosition($legendPosition)
3193 {
3194 $this->legendPosition = $legendPosition;
3195 }
3196 public function getLegendPosition()
3197 {
3198 return $this->legendPosition;
3199 }
3200 public function setPieHole($pieHole)
3201 {
3202 $this->pieHole = $pieHole;
3203 }
3204 public function getPieHole()
3205 {
3206 return $this->pieHole;
3207 }
3208 public function setSeries(Google_Service_Sheets_ChartData $series)
3209 {
3210 $this->series = $series;
3211 }
3212 public function getSeries()
3213 {
3214 return $this->series;
3215 }
3216 public function setThreeDimensional($threeDimensional)
3217 {
3218 $this->threeDimensional = $threeDimensional;
3219 }
3220 public function getThreeDimensional()
3221 {
3222 return $this->threeDimensional;
3223 }
3224 }
3225
3226 class Google_Service_Sheets_PivotFilterCriteria extends Google_Collection
3227 {
3228 protected $collection_key = 'visibleValues';
3229 protected $internal_gapi_mappings = array(
3230 );
3231 public $visibleValues;
3232
3233
3234 public function setVisibleValues($visibleValues)
3235 {
3236 $this->visibleValues = $visibleValues;
3237 }
3238 public function getVisibleValues()
3239 {
3240 return $this->visibleValues;
3241 }
3242 }
3243
3244 class Google_Service_Sheets_PivotGroup extends Google_Collection
3245 {
3246 protected $collection_key = 'valueMetadata';
3247 protected $internal_gapi_mappings = array(
3248 );
3249 public $showTotals;
3250 public $sortOrder;
3251 public $sourceColumnOffset;
3252 protected $valueBucketType = 'Google_Service_Sheets_PivotGroupSortValueBucket';
3253 protected $valueBucketDataType = '';
3254 protected $valueMetadataType = 'Google_Service_Sheets_PivotGroupValueMetadata';
3255 protected $valueMetadataDataType = 'array';
3256
3257
3258 public function setShowTotals($showTotals)
3259 {
3260 $this->showTotals = $showTotals;
3261 }
3262 public function getShowTotals()
3263 {
3264 return $this->showTotals;
3265 }
3266 public function setSortOrder($sortOrder)
3267 {
3268 $this->sortOrder = $sortOrder;
3269 }
3270 public function getSortOrder()
3271 {
3272 return $this->sortOrder;
3273 }
3274 public function setSourceColumnOffset($sourceColumnOffset)
3275 {
3276 $this->sourceColumnOffset = $sourceColumnOffset;
3277 }
3278 public function getSourceColumnOffset()
3279 {
3280 return $this->sourceColumnOffset;
3281 }
3282 public function setValueBucket(Google_Service_Sheets_PivotGroupSortValueBucket $valueBucket)
3283 {
3284 $this->valueBucket = $valueBucket;
3285 }
3286 public function getValueBucket()
3287 {
3288 return $this->valueBucket;
3289 }
3290 public function setValueMetadata($valueMetadata)
3291 {
3292 $this->valueMetadata = $valueMetadata;
3293 }
3294 public function getValueMetadata()
3295 {
3296 return $this->valueMetadata;
3297 }
3298 }
3299
3300 class Google_Service_Sheets_PivotGroupSortValueBucket extends Google_Collection
3301 {
3302 protected $collection_key = 'buckets';
3303 protected $internal_gapi_mappings = array(
3304 );
3305 protected $bucketsType = 'Google_Service_Sheets_ExtendedValue';
3306 protected $bucketsDataType = 'array';
3307 public $valuesIndex;
3308
3309
3310 public function setBuckets($buckets)
3311 {
3312 $this->buckets = $buckets;
3313 }
3314 public function getBuckets()
3315 {
3316 return $this->buckets;
3317 }
3318 public function setValuesIndex($valuesIndex)
3319 {
3320 $this->valuesIndex = $valuesIndex;
3321 }
3322 public function getValuesIndex()
3323 {
3324 return $this->valuesIndex;
3325 }
3326 }
3327
3328 class Google_Service_Sheets_PivotGroupValueMetadata extends Google_Model
3329 {
3330 protected $internal_gapi_mappings = array(
3331 );
3332 public $collapsed;
3333 protected $valueType = 'Google_Service_Sheets_ExtendedValue';
3334 protected $valueDataType = '';
3335
3336
3337 public function setCollapsed($collapsed)
3338 {
3339 $this->collapsed = $collapsed;
3340 }
3341 public function getCollapsed()
3342 {
3343 return $this->collapsed;
3344 }
3345 public function setValue(Google_Service_Sheets_ExtendedValue $value)
3346 {
3347 $this->value = $value;
3348 }
3349 public function getValue()
3350 {
3351 return $this->value;
3352 }
3353 }
3354
3355 class Google_Service_Sheets_PivotTable extends Google_Collection
3356 {
3357 protected $collection_key = 'values';
3358 protected $internal_gapi_mappings = array(
3359 );
3360 protected $columnsType = 'Google_Service_Sheets_PivotGroup';
3361 protected $columnsDataType = 'array';
3362 protected $criteriaType = 'Google_Service_Sheets_PivotFilterCriteria';
3363 protected $criteriaDataType = 'map';
3364 protected $rowsType = 'Google_Service_Sheets_PivotGroup';
3365 protected $rowsDataType = 'array';
3366 protected $sourceType = 'Google_Service_Sheets_GridRange';
3367 protected $sourceDataType = '';
3368 public $valueLayout;
3369 protected $valuesType = 'Google_Service_Sheets_PivotValue';
3370 protected $valuesDataType = 'array';
3371
3372
3373 public function setColumns($columns)
3374 {
3375 $this->columns = $columns;
3376 }
3377 public function getColumns()
3378 {
3379 return $this->columns;
3380 }
3381 public function setCriteria($criteria)
3382 {
3383 $this->criteria = $criteria;
3384 }
3385 public function getCriteria()
3386 {
3387 return $this->criteria;
3388 }
3389 public function setRows($rows)
3390 {
3391 $this->rows = $rows;
3392 }
3393 public function getRows()
3394 {
3395 return $this->rows;
3396 }
3397 public function setSource(Google_Service_Sheets_GridRange $source)
3398 {
3399 $this->source = $source;
3400 }
3401 public function getSource()
3402 {
3403 return $this->source;
3404 }
3405 public function setValueLayout($valueLayout)
3406 {
3407 $this->valueLayout = $valueLayout;
3408 }
3409 public function getValueLayout()
3410 {
3411 return $this->valueLayout;
3412 }
3413 public function setValues($values)
3414 {
3415 $this->values = $values;
3416 }
3417 public function getValues()
3418 {
3419 return $this->values;
3420 }
3421 }
3422
3423 class Google_Service_Sheets_PivotValue extends Google_Model
3424 {
3425 protected $internal_gapi_mappings = array(
3426 );
3427 public $formula;
3428 public $name;
3429 public $sourceColumnOffset;
3430 public $summarizeFunction;
3431
3432
3433 public function setFormula($formula)
3434 {
3435 $this->formula = $formula;
3436 }
3437 public function getFormula()
3438 {
3439 return $this->formula;
3440 }
3441 public function setName($name)
3442 {
3443 $this->name = $name;
3444 }
3445 public function getName()
3446 {
3447 return $this->name;
3448 }
3449 public function setSourceColumnOffset($sourceColumnOffset)
3450 {
3451 $this->sourceColumnOffset = $sourceColumnOffset;
3452 }
3453 public function getSourceColumnOffset()
3454 {
3455 return $this->sourceColumnOffset;
3456 }
3457 public function setSummarizeFunction($summarizeFunction)
3458 {
3459 $this->summarizeFunction = $summarizeFunction;
3460 }
3461 public function getSummarizeFunction()
3462 {
3463 return $this->summarizeFunction;
3464 }
3465 }
3466
3467 class Google_Service_Sheets_ProtectedRange extends Google_Collection
3468 {
3469 protected $collection_key = 'unprotectedRanges';
3470 protected $internal_gapi_mappings = array(
3471 );
3472 public $description;
3473 protected $editorsType = 'Google_Service_Sheets_Editors';
3474 protected $editorsDataType = '';
3475 public $namedRangeId;
3476 public $protectedRangeId;
3477 protected $rangeType = 'Google_Service_Sheets_GridRange';
3478 protected $rangeDataType = '';
3479 public $requestingUserCanEdit;
3480 protected $unprotectedRangesType = 'Google_Service_Sheets_GridRange';
3481 protected $unprotectedRangesDataType = 'array';
3482 public $warningOnly;
3483
3484
3485 public function setDescription($description)
3486 {
3487 $this->description = $description;
3488 }
3489 public function getDescription()
3490 {
3491 return $this->description;
3492 }
3493 public function setEditors(Google_Service_Sheets_Editors $editors)
3494 {
3495 $this->editors = $editors;
3496 }
3497 public function getEditors()
3498 {
3499 return $this->editors;
3500 }
3501 public function setNamedRangeId($namedRangeId)
3502 {
3503 $this->namedRangeId = $namedRangeId;
3504 }
3505 public function getNamedRangeId()
3506 {
3507 return $this->namedRangeId;
3508 }
3509 public function setProtectedRangeId($protectedRangeId)
3510 {
3511 $this->protectedRangeId = $protectedRangeId;
3512 }
3513 public function getProtectedRangeId()
3514 {
3515 return $this->protectedRangeId;
3516 }
3517 public function setRange(Google_Service_Sheets_GridRange $range)
3518 {
3519 $this->range = $range;
3520 }
3521 public function getRange()
3522 {
3523 return $this->range;
3524 }
3525 public function setRequestingUserCanEdit($requestingUserCanEdit)
3526 {
3527 $this->requestingUserCanEdit = $requestingUserCanEdit;
3528 }
3529 public function getRequestingUserCanEdit()
3530 {
3531 return $this->requestingUserCanEdit;
3532 }
3533 public function setUnprotectedRanges($unprotectedRanges)
3534 {
3535 $this->unprotectedRanges = $unprotectedRanges;
3536 }
3537 public function getUnprotectedRanges()
3538 {
3539 return $this->unprotectedRanges;
3540 }
3541 public function setWarningOnly($warningOnly)
3542 {
3543 $this->warningOnly = $warningOnly;
3544 }
3545 public function getWarningOnly()
3546 {
3547 return $this->warningOnly;
3548 }
3549 }
3550
3551 class Google_Service_Sheets_RepeatCellRequest extends Google_Model
3552 {
3553 protected $internal_gapi_mappings = array(
3554 );
3555 protected $cellType = 'Google_Service_Sheets_CellData';
3556 protected $cellDataType = '';
3557 public $fields;
3558 protected $rangeType = 'Google_Service_Sheets_GridRange';
3559 protected $rangeDataType = '';
3560
3561
3562 public function setCell(Google_Service_Sheets_CellData $cell)
3563 {
3564 $this->cell = $cell;
3565 }
3566 public function getCell()
3567 {
3568 return $this->cell;
3569 }
3570 public function setFields($fields)
3571 {
3572 $this->fields = $fields;
3573 }
3574 public function getFields()
3575 {
3576 return $this->fields;
3577 }
3578 public function setRange(Google_Service_Sheets_GridRange $range)
3579 {
3580 $this->range = $range;
3581 }
3582 public function getRange()
3583 {
3584 return $this->range;
3585 }
3586 }
3587
3588 class Google_Service_Sheets_Request extends Google_Model
3589 {
3590 protected $internal_gapi_mappings = array(
3591 );
3592 protected $addChartType = 'Google_Service_Sheets_AddChartRequest';
3593 protected $addChartDataType = '';
3594 protected $addConditionalFormatRuleType = 'Google_Service_Sheets_AddConditionalFormatRuleRequest';
3595 protected $addConditionalFormatRuleDataType = '';
3596 protected $addFilterViewType = 'Google_Service_Sheets_AddFilterViewRequest';
3597 protected $addFilterViewDataType = '';
3598 protected $addNamedRangeType = 'Google_Service_Sheets_AddNamedRangeRequest';
3599 protected $addNamedRangeDataType = '';
3600 protected $addProtectedRangeType = 'Google_Service_Sheets_AddProtectedRangeRequest';
3601 protected $addProtectedRangeDataType = '';
3602 protected $addSheetType = 'Google_Service_Sheets_AddSheetRequest';
3603 protected $addSheetDataType = '';
3604 protected $appendCellsType = 'Google_Service_Sheets_AppendCellsRequest';
3605 protected $appendCellsDataType = '';
3606 protected $appendDimensionType = 'Google_Service_Sheets_AppendDimensionRequest';
3607 protected $appendDimensionDataType = '';
3608 protected $autoFillType = 'Google_Service_Sheets_AutoFillRequest';
3609 protected $autoFillDataType = '';
3610 protected $autoResizeDimensionsType = 'Google_Service_Sheets_AutoResizeDimensionsRequest';
3611 protected $autoResizeDimensionsDataType = '';
3612 protected $clearBasicFilterType = 'Google_Service_Sheets_ClearBasicFilterRequest';
3613 protected $clearBasicFilterDataType = '';
3614 protected $copyPasteType = 'Google_Service_Sheets_CopyPasteRequest';
3615 protected $copyPasteDataType = '';
3616 protected $cutPasteType = 'Google_Service_Sheets_CutPasteRequest';
3617 protected $cutPasteDataType = '';
3618 protected $deleteConditionalFormatRuleType = 'Google_Service_Sheets_DeleteConditionalFormatRuleRequest';
3619 protected $deleteConditionalFormatRuleDataType = '';
3620 protected $deleteDimensionType = 'Google_Service_Sheets_DeleteDimensionRequest';
3621 protected $deleteDimensionDataType = '';
3622 protected $deleteEmbeddedObjectType = 'Google_Service_Sheets_DeleteEmbeddedObjectRequest';
3623 protected $deleteEmbeddedObjectDataType = '';
3624 protected $deleteFilterViewType = 'Google_Service_Sheets_DeleteFilterViewRequest';
3625 protected $deleteFilterViewDataType = '';
3626 protected $deleteNamedRangeType = 'Google_Service_Sheets_DeleteNamedRangeRequest';
3627 protected $deleteNamedRangeDataType = '';
3628 protected $deleteProtectedRangeType = 'Google_Service_Sheets_DeleteProtectedRangeRequest';
3629 protected $deleteProtectedRangeDataType = '';
3630 protected $deleteSheetType = 'Google_Service_Sheets_DeleteSheetRequest';
3631 protected $deleteSheetDataType = '';
3632 protected $duplicateFilterViewType = 'Google_Service_Sheets_DuplicateFilterViewRequest';
3633 protected $duplicateFilterViewDataType = '';
3634 protected $duplicateSheetType = 'Google_Service_Sheets_DuplicateSheetRequest';
3635 protected $duplicateSheetDataType = '';
3636 protected $findReplaceType = 'Google_Service_Sheets_FindReplaceRequest';
3637 protected $findReplaceDataType = '';
3638 protected $insertDimensionType = 'Google_Service_Sheets_InsertDimensionRequest';
3639 protected $insertDimensionDataType = '';
3640 protected $mergeCellsType = 'Google_Service_Sheets_MergeCellsRequest';
3641 protected $mergeCellsDataType = '';
3642 protected $moveDimensionType = 'Google_Service_Sheets_MoveDimensionRequest';
3643 protected $moveDimensionDataType = '';
3644 protected $pasteDataType = 'Google_Service_Sheets_PasteDataRequest';
3645 protected $pasteDataDataType = '';
3646 protected $repeatCellType = 'Google_Service_Sheets_RepeatCellRequest';
3647 protected $repeatCellDataType = '';
3648 protected $setBasicFilterType = 'Google_Service_Sheets_SetBasicFilterRequest';
3649 protected $setBasicFilterDataType = '';
3650 protected $setDataValidationType = 'Google_Service_Sheets_SetDataValidationRequest';
3651 protected $setDataValidationDataType = '';
3652 protected $sortRangeType = 'Google_Service_Sheets_SortRangeRequest';
3653 protected $sortRangeDataType = '';
3654 protected $textToColumnsType = 'Google_Service_Sheets_TextToColumnsRequest';
3655 protected $textToColumnsDataType = '';
3656 protected $unmergeCellsType = 'Google_Service_Sheets_UnmergeCellsRequest';
3657 protected $unmergeCellsDataType = '';
3658 protected $updateBordersType = 'Google_Service_Sheets_UpdateBordersRequest';
3659 protected $updateBordersDataType = '';
3660 protected $updateCellsType = 'Google_Service_Sheets_UpdateCellsRequest';
3661 protected $updateCellsDataType = '';
3662 protected $updateChartSpecType = 'Google_Service_Sheets_UpdateChartSpecRequest';
3663 protected $updateChartSpecDataType = '';
3664 protected $updateConditionalFormatRuleType = 'Google_Service_Sheets_UpdateConditionalFormatRuleRequest';
3665 protected $updateConditionalFormatRuleDataType = '';
3666 protected $updateDimensionPropertiesType = 'Google_Service_Sheets_UpdateDimensionPropertiesRequest';
3667 protected $updateDimensionPropertiesDataType = '';
3668 protected $updateEmbeddedObjectPositionType = 'Google_Service_Sheets_UpdateEmbeddedObjectPositionRequest';
3669 protected $updateEmbeddedObjectPositionDataType = '';
3670 protected $updateFilterViewType = 'Google_Service_Sheets_UpdateFilterViewRequest';
3671 protected $updateFilterViewDataType = '';
3672 protected $updateNamedRangeType = 'Google_Service_Sheets_UpdateNamedRangeRequest';
3673 protected $updateNamedRangeDataType = '';
3674 protected $updateProtectedRangeType = 'Google_Service_Sheets_UpdateProtectedRangeRequest';
3675 protected $updateProtectedRangeDataType = '';
3676 protected $updateSheetPropertiesType = 'Google_Service_Sheets_UpdateSheetPropertiesRequest';
3677 protected $updateSheetPropertiesDataType = '';
3678 protected $updateSpreadsheetPropertiesType = 'Google_Service_Sheets_UpdateSpreadsheetPropertiesRequest';
3679 protected $updateSpreadsheetPropertiesDataType = '';
3680
3681
3682 public function setAddChart(Google_Service_Sheets_AddChartRequest $addChart)
3683 {
3684 $this->addChart = $addChart;
3685 }
3686 public function getAddChart()
3687 {
3688 return $this->addChart;
3689 }
3690 public function setAddConditionalFormatRule(Google_Service_Sheets_AddConditionalFormatRuleRequest $addConditionalFormatRule)
3691 {
3692 $this->addConditionalFormatRule = $addConditionalFormatRule;
3693 }
3694 public function getAddConditionalFormatRule()
3695 {
3696 return $this->addConditionalFormatRule;
3697 }
3698 public function setAddFilterView(Google_Service_Sheets_AddFilterViewRequest $addFilterView)
3699 {
3700 $this->addFilterView = $addFilterView;
3701 }
3702 public function getAddFilterView()
3703 {
3704 return $this->addFilterView;
3705 }
3706 public function setAddNamedRange(Google_Service_Sheets_AddNamedRangeRequest $addNamedRange)
3707 {
3708 $this->addNamedRange = $addNamedRange;
3709 }
3710 public function getAddNamedRange()
3711 {
3712 return $this->addNamedRange;
3713 }
3714 public function setAddProtectedRange(Google_Service_Sheets_AddProtectedRangeRequest $addProtectedRange)
3715 {
3716 $this->addProtectedRange = $addProtectedRange;
3717 }
3718 public function getAddProtectedRange()
3719 {
3720 return $this->addProtectedRange;
3721 }
3722 public function setAddSheet(Google_Service_Sheets_AddSheetRequest $addSheet)
3723 {
3724 $this->addSheet = $addSheet;
3725 }
3726 public function getAddSheet()
3727 {
3728 return $this->addSheet;
3729 }
3730 public function setAppendCells(Google_Service_Sheets_AppendCellsRequest $appendCells)
3731 {
3732 $this->appendCells = $appendCells;
3733 }
3734 public function getAppendCells()
3735 {
3736 return $this->appendCells;
3737 }
3738 public function setAppendDimension(Google_Service_Sheets_AppendDimensionRequest $appendDimension)
3739 {
3740 $this->appendDimension = $appendDimension;
3741 }
3742 public function getAppendDimension()
3743 {
3744 return $this->appendDimension;
3745 }
3746 public function setAutoFill(Google_Service_Sheets_AutoFillRequest $autoFill)
3747 {
3748 $this->autoFill = $autoFill;
3749 }
3750 public function getAutoFill()
3751 {
3752 return $this->autoFill;
3753 }
3754 public function setAutoResizeDimensions(Google_Service_Sheets_AutoResizeDimensionsRequest $autoResizeDimensions)
3755 {
3756 $this->autoResizeDimensions = $autoResizeDimensions;
3757 }
3758 public function getAutoResizeDimensions()
3759 {
3760 return $this->autoResizeDimensions;
3761 }
3762 public function setClearBasicFilter(Google_Service_Sheets_ClearBasicFilterRequest $clearBasicFilter)
3763 {
3764 $this->clearBasicFilter = $clearBasicFilter;
3765 }
3766 public function getClearBasicFilter()
3767 {
3768 return $this->clearBasicFilter;
3769 }
3770 public function setCopyPaste(Google_Service_Sheets_CopyPasteRequest $copyPaste)
3771 {
3772 $this->copyPaste = $copyPaste;
3773 }
3774 public function getCopyPaste()
3775 {
3776 return $this->copyPaste;
3777 }
3778 public function setCutPaste(Google_Service_Sheets_CutPasteRequest $cutPaste)
3779 {
3780 $this->cutPaste = $cutPaste;
3781 }
3782 public function getCutPaste()
3783 {
3784 return $this->cutPaste;
3785 }
3786 public function setDeleteConditionalFormatRule(Google_Service_Sheets_DeleteConditionalFormatRuleRequest $deleteConditionalFormatRule)
3787 {
3788 $this->deleteConditionalFormatRule = $deleteConditionalFormatRule;
3789 }
3790 public function getDeleteConditionalFormatRule()
3791 {
3792 return $this->deleteConditionalFormatRule;
3793 }
3794 public function setDeleteDimension(Google_Service_Sheets_DeleteDimensionRequest $deleteDimension)
3795 {
3796 $this->deleteDimension = $deleteDimension;
3797 }
3798 public function getDeleteDimension()
3799 {
3800 return $this->deleteDimension;
3801 }
3802 public function setDeleteEmbeddedObject(Google_Service_Sheets_DeleteEmbeddedObjectRequest $deleteEmbeddedObject)
3803 {
3804 $this->deleteEmbeddedObject = $deleteEmbeddedObject;
3805 }
3806 public function getDeleteEmbeddedObject()
3807 {
3808 return $this->deleteEmbeddedObject;
3809 }
3810 public function setDeleteFilterView(Google_Service_Sheets_DeleteFilterViewRequest $deleteFilterView)
3811 {
3812 $this->deleteFilterView = $deleteFilterView;
3813 }
3814 public function getDeleteFilterView()
3815 {
3816 return $this->deleteFilterView;
3817 }
3818 public function setDeleteNamedRange(Google_Service_Sheets_DeleteNamedRangeRequest $deleteNamedRange)
3819 {
3820 $this->deleteNamedRange = $deleteNamedRange;
3821 }
3822 public function getDeleteNamedRange()
3823 {
3824 return $this->deleteNamedRange;
3825 }
3826 public function setDeleteProtectedRange(Google_Service_Sheets_DeleteProtectedRangeRequest $deleteProtectedRange)
3827 {
3828 $this->deleteProtectedRange = $deleteProtectedRange;
3829 }
3830 public function getDeleteProtectedRange()
3831 {
3832 return $this->deleteProtectedRange;
3833 }
3834 public function setDeleteSheet(Google_Service_Sheets_DeleteSheetRequest $deleteSheet)
3835 {
3836 $this->deleteSheet = $deleteSheet;
3837 }
3838 public function getDeleteSheet()
3839 {
3840 return $this->deleteSheet;
3841 }
3842 public function setDuplicateFilterView(Google_Service_Sheets_DuplicateFilterViewRequest $duplicateFilterView)
3843 {
3844 $this->duplicateFilterView = $duplicateFilterView;
3845 }
3846 public function getDuplicateFilterView()
3847 {
3848 return $this->duplicateFilterView;
3849 }
3850 public function setDuplicateSheet(Google_Service_Sheets_DuplicateSheetRequest $duplicateSheet)
3851 {
3852 $this->duplicateSheet = $duplicateSheet;
3853 }
3854 public function getDuplicateSheet()
3855 {
3856 return $this->duplicateSheet;
3857 }
3858 public function setFindReplace(Google_Service_Sheets_FindReplaceRequest $findReplace)
3859 {
3860 $this->findReplace = $findReplace;
3861 }
3862 public function getFindReplace()
3863 {
3864 return $this->findReplace;
3865 }
3866 public function setInsertDimension(Google_Service_Sheets_InsertDimensionRequest $insertDimension)
3867 {
3868 $this->insertDimension = $insertDimension;
3869 }
3870 public function getInsertDimension()
3871 {
3872 return $this->insertDimension;
3873 }
3874 public function setMergeCells(Google_Service_Sheets_MergeCellsRequest $mergeCells)
3875 {
3876 $this->mergeCells = $mergeCells;
3877 }
3878 public function getMergeCells()
3879 {
3880 return $this->mergeCells;
3881 }
3882 public function setMoveDimension(Google_Service_Sheets_MoveDimensionRequest $moveDimension)
3883 {
3884 $this->moveDimension = $moveDimension;
3885 }
3886 public function getMoveDimension()
3887 {
3888 return $this->moveDimension;
3889 }
3890 public function setPasteData(Google_Service_Sheets_PasteDataRequest $pasteData)
3891 {
3892 $this->pasteData = $pasteData;
3893 }
3894 public function getPasteData()
3895 {
3896 return $this->pasteData;
3897 }
3898 public function setRepeatCell(Google_Service_Sheets_RepeatCellRequest $repeatCell)
3899 {
3900 $this->repeatCell = $repeatCell;
3901 }
3902 public function getRepeatCell()
3903 {
3904 return $this->repeatCell;
3905 }
3906 public function setSetBasicFilter(Google_Service_Sheets_SetBasicFilterRequest $setBasicFilter)
3907 {
3908 $this->setBasicFilter = $setBasicFilter;
3909 }
3910 public function getSetBasicFilter()
3911 {
3912 return $this->setBasicFilter;
3913 }
3914 public function setSetDataValidation(Google_Service_Sheets_SetDataValidationRequest $setDataValidation)
3915 {
3916 $this->setDataValidation = $setDataValidation;
3917 }
3918 public function getSetDataValidation()
3919 {
3920 return $this->setDataValidation;
3921 }
3922 public function setSortRange(Google_Service_Sheets_SortRangeRequest $sortRange)
3923 {
3924 $this->sortRange = $sortRange;
3925 }
3926 public function getSortRange()
3927 {
3928 return $this->sortRange;
3929 }
3930 public function setTextToColumns(Google_Service_Sheets_TextToColumnsRequest $textToColumns)
3931 {
3932 $this->textToColumns = $textToColumns;
3933 }
3934 public function getTextToColumns()
3935 {
3936 return $this->textToColumns;
3937 }
3938 public function setUnmergeCells(Google_Service_Sheets_UnmergeCellsRequest $unmergeCells)
3939 {
3940 $this->unmergeCells = $unmergeCells;
3941 }
3942 public function getUnmergeCells()
3943 {
3944 return $this->unmergeCells;
3945 }
3946 public function setUpdateBorders(Google_Service_Sheets_UpdateBordersRequest $updateBorders)
3947 {
3948 $this->updateBorders = $updateBorders;
3949 }
3950 public function getUpdateBorders()
3951 {
3952 return $this->updateBorders;
3953 }
3954 public function setUpdateCells(Google_Service_Sheets_UpdateCellsRequest $updateCells)
3955 {
3956 $this->updateCells = $updateCells;
3957 }
3958 public function getUpdateCells()
3959 {
3960 return $this->updateCells;
3961 }
3962 public function setUpdateChartSpec(Google_Service_Sheets_UpdateChartSpecRequest $updateChartSpec)
3963 {
3964 $this->updateChartSpec = $updateChartSpec;
3965 }
3966 public function getUpdateChartSpec()
3967 {
3968 return $this->updateChartSpec;
3969 }
3970 public function setUpdateConditionalFormatRule(Google_Service_Sheets_UpdateConditionalFormatRuleRequest $updateConditionalFormatRule)
3971 {
3972 $this->updateConditionalFormatRule = $updateConditionalFormatRule;
3973 }
3974 public function getUpdateConditionalFormatRule()
3975 {
3976 return $this->updateConditionalFormatRule;
3977 }
3978 public function setUpdateDimensionProperties(Google_Service_Sheets_UpdateDimensionPropertiesRequest $updateDimensionProperties)
3979 {
3980 $this->updateDimensionProperties = $updateDimensionProperties;
3981 }
3982 public function getUpdateDimensionProperties()
3983 {
3984 return $this->updateDimensionProperties;
3985 }
3986 public function setUpdateEmbeddedObjectPosition(Google_Service_Sheets_UpdateEmbeddedObjectPositionRequest $updateEmbeddedObjectPosition)
3987 {
3988 $this->updateEmbeddedObjectPosition = $updateEmbeddedObjectPosition;
3989 }
3990 public function getUpdateEmbeddedObjectPosition()
3991 {
3992 return $this->updateEmbeddedObjectPosition;
3993 }
3994 public function setUpdateFilterView(Google_Service_Sheets_UpdateFilterViewRequest $updateFilterView)
3995 {
3996 $this->updateFilterView = $updateFilterView;
3997 }
3998 public function getUpdateFilterView()
3999 {
4000 return $this->updateFilterView;
4001 }
4002 public function setUpdateNamedRange(Google_Service_Sheets_UpdateNamedRangeRequest $updateNamedRange)
4003 {
4004 $this->updateNamedRange = $updateNamedRange;
4005 }
4006 public function getUpdateNamedRange()
4007 {
4008 return $this->updateNamedRange;
4009 }
4010 public function setUpdateProtectedRange(Google_Service_Sheets_UpdateProtectedRangeRequest $updateProtectedRange)
4011 {
4012 $this->updateProtectedRange = $updateProtectedRange;
4013 }
4014 public function getUpdateProtectedRange()
4015 {
4016 return $this->updateProtectedRange;
4017 }
4018 public function setUpdateSheetProperties(Google_Service_Sheets_UpdateSheetPropertiesRequest $updateSheetProperties)
4019 {
4020 $this->updateSheetProperties = $updateSheetProperties;
4021 }
4022 public function getUpdateSheetProperties()
4023 {
4024 return $this->updateSheetProperties;
4025 }
4026 public function setUpdateSpreadsheetProperties(Google_Service_Sheets_UpdateSpreadsheetPropertiesRequest $updateSpreadsheetProperties)
4027 {
4028 $this->updateSpreadsheetProperties = $updateSpreadsheetProperties;
4029 }
4030 public function getUpdateSpreadsheetProperties()
4031 {
4032 return $this->updateSpreadsheetProperties;
4033 }
4034 }
4035
4036 class Google_Service_Sheets_Response extends Google_Model
4037 {
4038 protected $internal_gapi_mappings = array(
4039 );
4040 protected $addChartType = 'Google_Service_Sheets_AddChartResponse';
4041 protected $addChartDataType = '';
4042 protected $addFilterViewType = 'Google_Service_Sheets_AddFilterViewResponse';
4043 protected $addFilterViewDataType = '';
4044 protected $addNamedRangeType = 'Google_Service_Sheets_AddNamedRangeResponse';
4045 protected $addNamedRangeDataType = '';
4046 protected $addProtectedRangeType = 'Google_Service_Sheets_AddProtectedRangeResponse';
4047 protected $addProtectedRangeDataType = '';
4048 protected $addSheetType = 'Google_Service_Sheets_AddSheetResponse';
4049 protected $addSheetDataType = '';
4050 protected $deleteConditionalFormatRuleType = 'Google_Service_Sheets_DeleteConditionalFormatRuleResponse';
4051 protected $deleteConditionalFormatRuleDataType = '';
4052 protected $duplicateFilterViewType = 'Google_Service_Sheets_DuplicateFilterViewResponse';
4053 protected $duplicateFilterViewDataType = '';
4054 protected $duplicateSheetType = 'Google_Service_Sheets_DuplicateSheetResponse';
4055 protected $duplicateSheetDataType = '';
4056 protected $findReplaceType = 'Google_Service_Sheets_FindReplaceResponse';
4057 protected $findReplaceDataType = '';
4058 protected $updateConditionalFormatRuleType = 'Google_Service_Sheets_UpdateConditionalFormatRuleResponse';
4059 protected $updateConditionalFormatRuleDataType = '';
4060 protected $updateEmbeddedObjectPositionType = 'Google_Service_Sheets_UpdateEmbeddedObjectPositionResponse';
4061 protected $updateEmbeddedObjectPositionDataType = '';
4062
4063
4064 public function setAddChart(Google_Service_Sheets_AddChartResponse $addChart)
4065 {
4066 $this->addChart = $addChart;
4067 }
4068 public function getAddChart()
4069 {
4070 return $this->addChart;
4071 }
4072 public function setAddFilterView(Google_Service_Sheets_AddFilterViewResponse $addFilterView)
4073 {
4074 $this->addFilterView = $addFilterView;
4075 }
4076 public function getAddFilterView()
4077 {
4078 return $this->addFilterView;
4079 }
4080 public function setAddNamedRange(Google_Service_Sheets_AddNamedRangeResponse $addNamedRange)
4081 {
4082 $this->addNamedRange = $addNamedRange;
4083 }
4084 public function getAddNamedRange()
4085 {
4086 return $this->addNamedRange;
4087 }
4088 public function setAddProtectedRange(Google_Service_Sheets_AddProtectedRangeResponse $addProtectedRange)
4089 {
4090 $this->addProtectedRange = $addProtectedRange;
4091 }
4092 public function getAddProtectedRange()
4093 {
4094 return $this->addProtectedRange;
4095 }
4096 public function setAddSheet(Google_Service_Sheets_AddSheetResponse $addSheet)
4097 {
4098 $this->addSheet = $addSheet;
4099 }
4100 public function getAddSheet()
4101 {
4102 return $this->addSheet;
4103 }
4104 public function setDeleteConditionalFormatRule(Google_Service_Sheets_DeleteConditionalFormatRuleResponse $deleteConditionalFormatRule)
4105 {
4106 $this->deleteConditionalFormatRule = $deleteConditionalFormatRule;
4107 }
4108 public function getDeleteConditionalFormatRule()
4109 {
4110 return $this->deleteConditionalFormatRule;
4111 }
4112 public function setDuplicateFilterView(Google_Service_Sheets_DuplicateFilterViewResponse $duplicateFilterView)
4113 {
4114 $this->duplicateFilterView = $duplicateFilterView;
4115 }
4116 public function getDuplicateFilterView()
4117 {
4118 return $this->duplicateFilterView;
4119 }
4120 public function setDuplicateSheet(Google_Service_Sheets_DuplicateSheetResponse $duplicateSheet)
4121 {
4122 $this->duplicateSheet = $duplicateSheet;
4123 }
4124 public function getDuplicateSheet()
4125 {
4126 return $this->duplicateSheet;
4127 }
4128 public function setFindReplace(Google_Service_Sheets_FindReplaceResponse $findReplace)
4129 {
4130 $this->findReplace = $findReplace;
4131 }
4132 public function getFindReplace()
4133 {
4134 return $this->findReplace;
4135 }
4136 public function setUpdateConditionalFormatRule(Google_Service_Sheets_UpdateConditionalFormatRuleResponse $updateConditionalFormatRule)
4137 {
4138 $this->updateConditionalFormatRule = $updateConditionalFormatRule;
4139 }
4140 public function getUpdateConditionalFormatRule()
4141 {
4142 return $this->updateConditionalFormatRule;
4143 }
4144 public function setUpdateEmbeddedObjectPosition(Google_Service_Sheets_UpdateEmbeddedObjectPositionResponse $updateEmbeddedObjectPosition)
4145 {
4146 $this->updateEmbeddedObjectPosition = $updateEmbeddedObjectPosition;
4147 }
4148 public function getUpdateEmbeddedObjectPosition()
4149 {
4150 return $this->updateEmbeddedObjectPosition;
4151 }
4152 }
4153
4154 class Google_Service_Sheets_RowData extends Google_Collection
4155 {
4156 protected $collection_key = 'values';
4157 protected $internal_gapi_mappings = array(
4158 );
4159 protected $valuesType = 'Google_Service_Sheets_CellData';
4160 protected $valuesDataType = 'array';
4161
4162
4163 public function setValues($values)
4164 {
4165 $this->values = $values;
4166 }
4167 public function getValues()
4168 {
4169 return $this->values;
4170 }
4171 }
4172
4173 class Google_Service_Sheets_SetBasicFilterRequest extends Google_Model
4174 {
4175 protected $internal_gapi_mappings = array(
4176 );
4177 protected $filterType = 'Google_Service_Sheets_BasicFilter';
4178 protected $filterDataType = '';
4179
4180
4181 public function setFilter(Google_Service_Sheets_BasicFilter $filter)
4182 {
4183 $this->filter = $filter;
4184 }
4185 public function getFilter()
4186 {
4187 return $this->filter;
4188 }
4189 }
4190
4191 class Google_Service_Sheets_SetDataValidationRequest extends Google_Model
4192 {
4193 protected $internal_gapi_mappings = array(
4194 );
4195 protected $rangeType = 'Google_Service_Sheets_GridRange';
4196 protected $rangeDataType = '';
4197 protected $ruleType = 'Google_Service_Sheets_DataValidationRule';
4198 protected $ruleDataType = '';
4199
4200
4201 public function setRange(Google_Service_Sheets_GridRange $range)
4202 {
4203 $this->range = $range;
4204 }
4205 public function getRange()
4206 {
4207 return $this->range;
4208 }
4209 public function setRule(Google_Service_Sheets_DataValidationRule $rule)
4210 {
4211 $this->rule = $rule;
4212 }
4213 public function getRule()
4214 {
4215 return $this->rule;
4216 }
4217 }
4218
4219 class Google_Service_Sheets_Sheet extends Google_Collection
4220 {
4221 protected $collection_key = 'protectedRanges';
4222 protected $internal_gapi_mappings = array(
4223 );
4224 protected $basicFilterType = 'Google_Service_Sheets_BasicFilter';
4225 protected $basicFilterDataType = '';
4226 protected $chartsType = 'Google_Service_Sheets_EmbeddedChart';
4227 protected $chartsDataType = 'array';
4228 protected $conditionalFormatsType = 'Google_Service_Sheets_ConditionalFormatRule';
4229 protected $conditionalFormatsDataType = 'array';
4230 protected $dataType = 'Google_Service_Sheets_GridData';
4231 protected $dataDataType = 'array';
4232 protected $filterViewsType = 'Google_Service_Sheets_FilterView';
4233 protected $filterViewsDataType = 'array';
4234 protected $mergesType = 'Google_Service_Sheets_GridRange';
4235 protected $mergesDataType = 'array';
4236 protected $propertiesType = 'Google_Service_Sheets_SheetProperties';
4237 protected $propertiesDataType = '';
4238 protected $protectedRangesType = 'Google_Service_Sheets_ProtectedRange';
4239 protected $protectedRangesDataType = 'array';
4240
4241
4242 public function setBasicFilter(Google_Service_Sheets_BasicFilter $basicFilter)
4243 {
4244 $this->basicFilter = $basicFilter;
4245 }
4246 public function getBasicFilter()
4247 {
4248 return $this->basicFilter;
4249 }
4250 public function setCharts($charts)
4251 {
4252 $this->charts = $charts;
4253 }
4254 public function getCharts()
4255 {
4256 return $this->charts;
4257 }
4258 public function setConditionalFormats($conditionalFormats)
4259 {
4260 $this->conditionalFormats = $conditionalFormats;
4261 }
4262 public function getConditionalFormats()
4263 {
4264 return $this->conditionalFormats;
4265 }
4266 public function setData($data)
4267 {
4268 $this->data = $data;
4269 }
4270 public function getData()
4271 {
4272 return $this->data;
4273 }
4274 public function setFilterViews($filterViews)
4275 {
4276 $this->filterViews = $filterViews;
4277 }
4278 public function getFilterViews()
4279 {
4280 return $this->filterViews;
4281 }
4282 public function setMerges($merges)
4283 {
4284 $this->merges = $merges;
4285 }
4286 public function getMerges()
4287 {
4288 return $this->merges;
4289 }
4290 public function setProperties(Google_Service_Sheets_SheetProperties $properties)
4291 {
4292 $this->properties = $properties;
4293 }
4294 public function getProperties()
4295 {
4296 return $this->properties;
4297 }
4298 public function setProtectedRanges($protectedRanges)
4299 {
4300 $this->protectedRanges = $protectedRanges;
4301 }
4302 public function getProtectedRanges()
4303 {
4304 return $this->protectedRanges;
4305 }
4306 }
4307
4308 class Google_Service_Sheets_SheetProperties extends Google_Model
4309 {
4310 protected $internal_gapi_mappings = array(
4311 );
4312 protected $gridPropertiesType = 'Google_Service_Sheets_GridProperties';
4313 protected $gridPropertiesDataType = '';
4314 public $hidden;
4315 public $index;
4316 public $rightToLeft;
4317 public $sheetId;
4318 public $sheetType;
4319 protected $tabColorType = 'Google_Service_Sheets_Color';
4320 protected $tabColorDataType = '';
4321 public $title;
4322
4323
4324 public function setGridProperties(Google_Service_Sheets_GridProperties $gridProperties)
4325 {
4326 $this->gridProperties = $gridProperties;
4327 }
4328 public function getGridProperties()
4329 {
4330 return $this->gridProperties;
4331 }
4332 public function setHidden($hidden)
4333 {
4334 $this->hidden = $hidden;
4335 }
4336 public function getHidden()
4337 {
4338 return $this->hidden;
4339 }
4340 public function setIndex($index)
4341 {
4342 $this->index = $index;
4343 }
4344 public function getIndex()
4345 {
4346 return $this->index;
4347 }
4348 public function setRightToLeft($rightToLeft)
4349 {
4350 $this->rightToLeft = $rightToLeft;
4351 }
4352 public function getRightToLeft()
4353 {
4354 return $this->rightToLeft;
4355 }
4356 public function setSheetId($sheetId)
4357 {
4358 $this->sheetId = $sheetId;
4359 }
4360 public function getSheetId()
4361 {
4362 return $this->sheetId;
4363 }
4364 public function setSheetType($sheetType)
4365 {
4366 $this->sheetType = $sheetType;
4367 }
4368 public function getSheetType()
4369 {
4370 return $this->sheetType;
4371 }
4372 public function setTabColor(Google_Service_Sheets_Color $tabColor)
4373 {
4374 $this->tabColor = $tabColor;
4375 }
4376 public function getTabColor()
4377 {
4378 return $this->tabColor;
4379 }
4380 public function setTitle($title)
4381 {
4382 $this->title = $title;
4383 }
4384 public function getTitle()
4385 {
4386 return $this->title;
4387 }
4388 }
4389
4390 class Google_Service_Sheets_SortRangeRequest extends Google_Collection
4391 {
4392 protected $collection_key = 'sortSpecs';
4393 protected $internal_gapi_mappings = array(
4394 );
4395 protected $rangeType = 'Google_Service_Sheets_GridRange';
4396 protected $rangeDataType = '';
4397 protected $sortSpecsType = 'Google_Service_Sheets_SortSpec';
4398 protected $sortSpecsDataType = 'array';
4399
4400
4401 public function setRange(Google_Service_Sheets_GridRange $range)
4402 {
4403 $this->range = $range;
4404 }
4405 public function getRange()
4406 {
4407 return $this->range;
4408 }
4409 public function setSortSpecs($sortSpecs)
4410 {
4411 $this->sortSpecs = $sortSpecs;
4412 }
4413 public function getSortSpecs()
4414 {
4415 return $this->sortSpecs;
4416 }
4417 }
4418
4419 class Google_Service_Sheets_SortSpec extends Google_Model
4420 {
4421 protected $internal_gapi_mappings = array(
4422 );
4423 public $dimensionIndex;
4424 public $sortOrder;
4425
4426
4427 public function setDimensionIndex($dimensionIndex)
4428 {
4429 $this->dimensionIndex = $dimensionIndex;
4430 }
4431 public function getDimensionIndex()
4432 {
4433 return $this->dimensionIndex;
4434 }
4435 public function setSortOrder($sortOrder)
4436 {
4437 $this->sortOrder = $sortOrder;
4438 }
4439 public function getSortOrder()
4440 {
4441 return $this->sortOrder;
4442 }
4443 }
4444
4445 class Google_Service_Sheets_SourceAndDestination extends Google_Model
4446 {
4447 protected $internal_gapi_mappings = array(
4448 );
4449 public $dimension;
4450 public $fillLength;
4451 protected $sourceType = 'Google_Service_Sheets_GridRange';
4452 protected $sourceDataType = '';
4453
4454
4455 public function setDimension($dimension)
4456 {
4457 $this->dimension = $dimension;
4458 }
4459 public function getDimension()
4460 {
4461 return $this->dimension;
4462 }
4463 public function setFillLength($fillLength)
4464 {
4465 $this->fillLength = $fillLength;
4466 }
4467 public function getFillLength()
4468 {
4469 return $this->fillLength;
4470 }
4471 public function setSource(Google_Service_Sheets_GridRange $source)
4472 {
4473 $this->source = $source;
4474 }
4475 public function getSource()
4476 {
4477 return $this->source;
4478 }
4479 }
4480
4481 class Google_Service_Sheets_Spreadsheet extends Google_Collection
4482 {
4483 protected $collection_key = 'sheets';
4484 protected $internal_gapi_mappings = array(
4485 );
4486 protected $namedRangesType = 'Google_Service_Sheets_NamedRange';
4487 protected $namedRangesDataType = 'array';
4488 protected $propertiesType = 'Google_Service_Sheets_SpreadsheetProperties';
4489 protected $propertiesDataType = '';
4490 protected $sheetsType = 'Google_Service_Sheets_Sheet';
4491 protected $sheetsDataType = 'array';
4492 public $spreadsheetId;
4493
4494
4495 public function setNamedRanges($namedRanges)
4496 {
4497 $this->namedRanges = $namedRanges;
4498 }
4499 public function getNamedRanges()
4500 {
4501 return $this->namedRanges;
4502 }
4503 public function setProperties(Google_Service_Sheets_SpreadsheetProperties $properties)
4504 {
4505 $this->properties = $properties;
4506 }
4507 public function getProperties()
4508 {
4509 return $this->properties;
4510 }
4511 public function setSheets($sheets)
4512 {
4513 $this->sheets = $sheets;
4514 }
4515 public function getSheets()
4516 {
4517 return $this->sheets;
4518 }
4519 public function setSpreadsheetId($spreadsheetId)
4520 {
4521 $this->spreadsheetId = $spreadsheetId;
4522 }
4523 public function getSpreadsheetId()
4524 {
4525 return $this->spreadsheetId;
4526 }
4527 }
4528
4529 class Google_Service_Sheets_SpreadsheetProperties extends Google_Model
4530 {
4531 protected $internal_gapi_mappings = array(
4532 );
4533 public $autoRecalc;
4534 protected $defaultFormatType = 'Google_Service_Sheets_CellFormat';
4535 protected $defaultFormatDataType = '';
4536 public $locale;
4537 public $timeZone;
4538 public $title;
4539
4540
4541 public function setAutoRecalc($autoRecalc)
4542 {
4543 $this->autoRecalc = $autoRecalc;
4544 }
4545 public function getAutoRecalc()
4546 {
4547 return $this->autoRecalc;
4548 }
4549 public function setDefaultFormat(Google_Service_Sheets_CellFormat $defaultFormat)
4550 {
4551 $this->defaultFormat = $defaultFormat;
4552 }
4553 public function getDefaultFormat()
4554 {
4555 return $this->defaultFormat;
4556 }
4557 public function setLocale($locale)
4558 {
4559 $this->locale = $locale;
4560 }
4561 public function getLocale()
4562 {
4563 return $this->locale;
4564 }
4565 public function setTimeZone($timeZone)
4566 {
4567 $this->timeZone = $timeZone;
4568 }
4569 public function getTimeZone()
4570 {
4571 return $this->timeZone;
4572 }
4573 public function setTitle($title)
4574 {
4575 $this->title = $title;
4576 }
4577 public function getTitle()
4578 {
4579 return $this->title;
4580 }
4581 }
4582
4583 class Google_Service_Sheets_TextFormat extends Google_Model
4584 {
4585 protected $internal_gapi_mappings = array(
4586 );
4587 public $bold;
4588 public $fontFamily;
4589 public $fontSize;
4590 protected $foregroundColorType = 'Google_Service_Sheets_Color';
4591 protected $foregroundColorDataType = '';
4592 public $italic;
4593 public $strikethrough;
4594 public $underline;
4595
4596
4597 public function setBold($bold)
4598 {
4599 $this->bold = $bold;
4600 }
4601 public function getBold()
4602 {
4603 return $this->bold;
4604 }
4605 public function setFontFamily($fontFamily)
4606 {
4607 $this->fontFamily = $fontFamily;
4608 }
4609 public function getFontFamily()
4610 {
4611 return $this->fontFamily;
4612 }
4613 public function setFontSize($fontSize)
4614 {
4615 $this->fontSize = $fontSize;
4616 }
4617 public function getFontSize()
4618 {
4619 return $this->fontSize;
4620 }
4621 public function setForegroundColor(Google_Service_Sheets_Color $foregroundColor)
4622 {
4623 $this->foregroundColor = $foregroundColor;
4624 }
4625 public function getForegroundColor()
4626 {
4627 return $this->foregroundColor;
4628 }
4629 public function setItalic($italic)
4630 {
4631 $this->italic = $italic;
4632 }
4633 public function getItalic()
4634 {
4635 return $this->italic;
4636 }
4637 public function setStrikethrough($strikethrough)
4638 {
4639 $this->strikethrough = $strikethrough;
4640 }
4641 public function getStrikethrough()
4642 {
4643 return $this->strikethrough;
4644 }
4645 public function setUnderline($underline)
4646 {
4647 $this->underline = $underline;
4648 }
4649 public function getUnderline()
4650 {
4651 return $this->underline;
4652 }
4653 }
4654
4655 class Google_Service_Sheets_TextFormatRun extends Google_Model
4656 {
4657 protected $internal_gapi_mappings = array(
4658 );
4659 protected $formatType = 'Google_Service_Sheets_TextFormat';
4660 protected $formatDataType = '';
4661 public $startIndex;
4662
4663
4664 public function setFormat(Google_Service_Sheets_TextFormat $format)
4665 {
4666 $this->format = $format;
4667 }
4668 public function getFormat()
4669 {
4670 return $this->format;
4671 }
4672 public function setStartIndex($startIndex)
4673 {
4674 $this->startIndex = $startIndex;
4675 }
4676 public function getStartIndex()
4677 {
4678 return $this->startIndex;
4679 }
4680 }
4681
4682 class Google_Service_Sheets_TextToColumnsRequest extends Google_Model
4683 {
4684 protected $internal_gapi_mappings = array(
4685 );
4686 public $delimiter;
4687 public $delimiterType;
4688 protected $sourceType = 'Google_Service_Sheets_GridRange';
4689 protected $sourceDataType = '';
4690
4691
4692 public function setDelimiter($delimiter)
4693 {
4694 $this->delimiter = $delimiter;
4695 }
4696 public function getDelimiter()
4697 {
4698 return $this->delimiter;
4699 }
4700 public function setDelimiterType($delimiterType)
4701 {
4702 $this->delimiterType = $delimiterType;
4703 }
4704 public function getDelimiterType()
4705 {
4706 return $this->delimiterType;
4707 }
4708 public function setSource(Google_Service_Sheets_GridRange $source)
4709 {
4710 $this->source = $source;
4711 }
4712 public function getSource()
4713 {
4714 return $this->source;
4715 }
4716 }
4717
4718 class Google_Service_Sheets_UnmergeCellsRequest extends Google_Model
4719 {
4720 protected $internal_gapi_mappings = array(
4721 );
4722 protected $rangeType = 'Google_Service_Sheets_GridRange';
4723 protected $rangeDataType = '';
4724
4725
4726 public function setRange(Google_Service_Sheets_GridRange $range)
4727 {
4728 $this->range = $range;
4729 }
4730 public function getRange()
4731 {
4732 return $this->range;
4733 }
4734 }
4735
4736 class Google_Service_Sheets_UpdateBordersRequest extends Google_Model
4737 {
4738 protected $internal_gapi_mappings = array(
4739 );
4740 protected $bottomType = 'Google_Service_Sheets_Border';
4741 protected $bottomDataType = '';
4742 protected $innerHorizontalType = 'Google_Service_Sheets_Border';
4743 protected $innerHorizontalDataType = '';
4744 protected $innerVerticalType = 'Google_Service_Sheets_Border';
4745 protected $innerVerticalDataType = '';
4746 protected $leftType = 'Google_Service_Sheets_Border';
4747 protected $leftDataType = '';
4748 protected $rangeType = 'Google_Service_Sheets_GridRange';
4749 protected $rangeDataType = '';
4750 protected $rightType = 'Google_Service_Sheets_Border';
4751 protected $rightDataType = '';
4752 protected $topType = 'Google_Service_Sheets_Border';
4753 protected $topDataType = '';
4754
4755
4756 public function setBottom(Google_Service_Sheets_Border $bottom)
4757 {
4758 $this->bottom = $bottom;
4759 }
4760 public function getBottom()
4761 {
4762 return $this->bottom;
4763 }
4764 public function setInnerHorizontal(Google_Service_Sheets_Border $innerHorizontal)
4765 {
4766 $this->innerHorizontal = $innerHorizontal;
4767 }
4768 public function getInnerHorizontal()
4769 {
4770 return $this->innerHorizontal;
4771 }
4772 public function setInnerVertical(Google_Service_Sheets_Border $innerVertical)
4773 {
4774 $this->innerVertical = $innerVertical;
4775 }
4776 public function getInnerVertical()
4777 {
4778 return $this->innerVertical;
4779 }
4780 public function setLeft(Google_Service_Sheets_Border $left)
4781 {
4782 $this->left = $left;
4783 }
4784 public function getLeft()
4785 {
4786 return $this->left;
4787 }
4788 public function setRange(Google_Service_Sheets_GridRange $range)
4789 {
4790 $this->range = $range;
4791 }
4792 public function getRange()
4793 {
4794 return $this->range;
4795 }
4796 public function setRight(Google_Service_Sheets_Border $right)
4797 {
4798 $this->right = $right;
4799 }
4800 public function getRight()
4801 {
4802 return $this->right;
4803 }
4804 public function setTop(Google_Service_Sheets_Border $top)
4805 {
4806 $this->top = $top;
4807 }
4808 public function getTop()
4809 {
4810 return $this->top;
4811 }
4812 }
4813
4814 class Google_Service_Sheets_UpdateCellsRequest extends Google_Collection
4815 {
4816 protected $collection_key = 'rows';
4817 protected $internal_gapi_mappings = array(
4818 );
4819 public $fields;
4820 protected $rangeType = 'Google_Service_Sheets_GridRange';
4821 protected $rangeDataType = '';
4822 protected $rowsType = 'Google_Service_Sheets_RowData';
4823 protected $rowsDataType = 'array';
4824 protected $startType = 'Google_Service_Sheets_GridCoordinate';
4825 protected $startDataType = '';
4826
4827
4828 public function setFields($fields)
4829 {
4830 $this->fields = $fields;
4831 }
4832 public function getFields()
4833 {
4834 return $this->fields;
4835 }
4836 public function setRange(Google_Service_Sheets_GridRange $range)
4837 {
4838 $this->range = $range;
4839 }
4840 public function getRange()
4841 {
4842 return $this->range;
4843 }
4844 public function setRows($rows)
4845 {
4846 $this->rows = $rows;
4847 }
4848 public function getRows()
4849 {
4850 return $this->rows;
4851 }
4852 public function setStart(Google_Service_Sheets_GridCoordinate $start)
4853 {
4854 $this->start = $start;
4855 }
4856 public function getStart()
4857 {
4858 return $this->start;
4859 }
4860 }
4861
4862 class Google_Service_Sheets_UpdateChartSpecRequest extends Google_Model
4863 {
4864 protected $internal_gapi_mappings = array(
4865 );
4866 public $chartId;
4867 protected $specType = 'Google_Service_Sheets_ChartSpec';
4868 protected $specDataType = '';
4869
4870
4871 public function setChartId($chartId)
4872 {
4873 $this->chartId = $chartId;
4874 }
4875 public function getChartId()
4876 {
4877 return $this->chartId;
4878 }
4879 public function setSpec(Google_Service_Sheets_ChartSpec $spec)
4880 {
4881 $this->spec = $spec;
4882 }
4883 public function getSpec()
4884 {
4885 return $this->spec;
4886 }
4887 }
4888
4889 class Google_Service_Sheets_UpdateConditionalFormatRuleRequest extends Google_Model
4890 {
4891 protected $internal_gapi_mappings = array(
4892 );
4893 public $index;
4894 public $newIndex;
4895 protected $ruleType = 'Google_Service_Sheets_ConditionalFormatRule';
4896 protected $ruleDataType = '';
4897 public $sheetId;
4898
4899
4900 public function setIndex($index)
4901 {
4902 $this->index = $index;
4903 }
4904 public function getIndex()
4905 {
4906 return $this->index;
4907 }
4908 public function setNewIndex($newIndex)
4909 {
4910 $this->newIndex = $newIndex;
4911 }
4912 public function getNewIndex()
4913 {
4914 return $this->newIndex;
4915 }
4916 public function setRule(Google_Service_Sheets_ConditionalFormatRule $rule)
4917 {
4918 $this->rule = $rule;
4919 }
4920 public function getRule()
4921 {
4922 return $this->rule;
4923 }
4924 public function setSheetId($sheetId)
4925 {
4926 $this->sheetId = $sheetId;
4927 }
4928 public function getSheetId()
4929 {
4930 return $this->sheetId;
4931 }
4932 }
4933
4934 class Google_Service_Sheets_UpdateConditionalFormatRuleResponse extends Google_Model
4935 {
4936 protected $internal_gapi_mappings = array(
4937 );
4938 public $newIndex;
4939 protected $newRuleType = 'Google_Service_Sheets_ConditionalFormatRule';
4940 protected $newRuleDataType = '';
4941 public $oldIndex;
4942 protected $oldRuleType = 'Google_Service_Sheets_ConditionalFormatRule';
4943 protected $oldRuleDataType = '';
4944
4945
4946 public function setNewIndex($newIndex)
4947 {
4948 $this->newIndex = $newIndex;
4949 }
4950 public function getNewIndex()
4951 {
4952 return $this->newIndex;
4953 }
4954 public function setNewRule(Google_Service_Sheets_ConditionalFormatRule $newRule)
4955 {
4956 $this->newRule = $newRule;
4957 }
4958 public function getNewRule()
4959 {
4960 return $this->newRule;
4961 }
4962 public function setOldIndex($oldIndex)
4963 {
4964 $this->oldIndex = $oldIndex;
4965 }
4966 public function getOldIndex()
4967 {
4968 return $this->oldIndex;
4969 }
4970 public function setOldRule(Google_Service_Sheets_ConditionalFormatRule $oldRule)
4971 {
4972 $this->oldRule = $oldRule;
4973 }
4974 public function getOldRule()
4975 {
4976 return $this->oldRule;
4977 }
4978 }
4979
4980 class Google_Service_Sheets_UpdateDimensionPropertiesRequest extends Google_Model
4981 {
4982 protected $internal_gapi_mappings = array(
4983 );
4984 public $fields;
4985 protected $propertiesType = 'Google_Service_Sheets_DimensionProperties';
4986 protected $propertiesDataType = '';
4987 protected $rangeType = 'Google_Service_Sheets_DimensionRange';
4988 protected $rangeDataType = '';
4989
4990
4991 public function setFields($fields)
4992 {
4993 $this->fields = $fields;
4994 }
4995 public function getFields()
4996 {
4997 return $this->fields;
4998 }
4999 public function setProperties(Google_Service_Sheets_DimensionProperties $properties)
5000 {
5001 $this->properties = $properties;
5002 }
5003 public function getProperties()
5004 {
5005 return $this->properties;
5006 }
5007 public function setRange(Google_Service_Sheets_DimensionRange $range)
5008 {
5009 $this->range = $range;
5010 }
5011 public function getRange()
5012 {
5013 return $this->range;
5014 }
5015 }
5016
5017 class Google_Service_Sheets_UpdateEmbeddedObjectPositionRequest extends Google_Model
5018 {
5019 protected $internal_gapi_mappings = array(
5020 );
5021 public $fields;
5022 protected $newPositionType = 'Google_Service_Sheets_EmbeddedObjectPosition';
5023 protected $newPositionDataType = '';
5024 public $objectId;
5025
5026
5027 public function setFields($fields)
5028 {
5029 $this->fields = $fields;
5030 }
5031 public function getFields()
5032 {
5033 return $this->fields;
5034 }
5035 public function setNewPosition(Google_Service_Sheets_EmbeddedObjectPosition $newPosition)
5036 {
5037 $this->newPosition = $newPosition;
5038 }
5039 public function getNewPosition()
5040 {
5041 return $this->newPosition;
5042 }
5043 public function setObjectId($objectId)
5044 {
5045 $this->objectId = $objectId;
5046 }
5047 public function getObjectId()
5048 {
5049 return $this->objectId;
5050 }
5051 }
5052
5053 class Google_Service_Sheets_UpdateEmbeddedObjectPositionResponse extends Google_Model
5054 {
5055 protected $internal_gapi_mappings = array(
5056 );
5057 protected $positionType = 'Google_Service_Sheets_EmbeddedObjectPosition';
5058 protected $positionDataType = '';
5059
5060
5061 public function setPosition(Google_Service_Sheets_EmbeddedObjectPosition $position)
5062 {
5063 $this->position = $position;
5064 }
5065 public function getPosition()
5066 {
5067 return $this->position;
5068 }
5069 }
5070
5071 class Google_Service_Sheets_UpdateFilterViewRequest extends Google_Model
5072 {
5073 protected $internal_gapi_mappings = array(
5074 );
5075 public $fields;
5076 protected $filterType = 'Google_Service_Sheets_FilterView';
5077 protected $filterDataType = '';
5078
5079
5080 public function setFields($fields)
5081 {
5082 $this->fields = $fields;
5083 }
5084 public function getFields()
5085 {
5086 return $this->fields;
5087 }
5088 public function setFilter(Google_Service_Sheets_FilterView $filter)
5089 {
5090 $this->filter = $filter;
5091 }
5092 public function getFilter()
5093 {
5094 return $this->filter;
5095 }
5096 }
5097
5098 class Google_Service_Sheets_UpdateNamedRangeRequest extends Google_Model
5099 {
5100 protected $internal_gapi_mappings = array(
5101 );
5102 public $fields;
5103 protected $namedRangeType = 'Google_Service_Sheets_NamedRange';
5104 protected $namedRangeDataType = '';
5105
5106
5107 public function setFields($fields)
5108 {
5109 $this->fields = $fields;
5110 }
5111 public function getFields()
5112 {
5113 return $this->fields;
5114 }
5115 public function setNamedRange(Google_Service_Sheets_NamedRange $namedRange)
5116 {
5117 $this->namedRange = $namedRange;
5118 }
5119 public function getNamedRange()
5120 {
5121 return $this->namedRange;
5122 }
5123 }
5124
5125 class Google_Service_Sheets_UpdateProtectedRangeRequest extends Google_Model
5126 {
5127 protected $internal_gapi_mappings = array(
5128 );
5129 public $fields;
5130 protected $protectedRangeType = 'Google_Service_Sheets_ProtectedRange';
5131 protected $protectedRangeDataType = '';
5132
5133
5134 public function setFields($fields)
5135 {
5136 $this->fields = $fields;
5137 }
5138 public function getFields()
5139 {
5140 return $this->fields;
5141 }
5142 public function setProtectedRange(Google_Service_Sheets_ProtectedRange $protectedRange)
5143 {
5144 $this->protectedRange = $protectedRange;
5145 }
5146 public function getProtectedRange()
5147 {
5148 return $this->protectedRange;
5149 }
5150 }
5151
5152 class Google_Service_Sheets_UpdateSheetPropertiesRequest extends Google_Model
5153 {
5154 protected $internal_gapi_mappings = array(
5155 );
5156 public $fields;
5157 protected $propertiesType = 'Google_Service_Sheets_SheetProperties';
5158 protected $propertiesDataType = '';
5159
5160
5161 public function setFields($fields)
5162 {
5163 $this->fields = $fields;
5164 }
5165 public function getFields()
5166 {
5167 return $this->fields;
5168 }
5169 public function setProperties(Google_Service_Sheets_SheetProperties $properties)
5170 {
5171 $this->properties = $properties;
5172 }
5173 public function getProperties()
5174 {
5175 return $this->properties;
5176 }
5177 }
5178
5179 class Google_Service_Sheets_UpdateSpreadsheetPropertiesRequest extends Google_Model
5180 {
5181 protected $internal_gapi_mappings = array(
5182 );
5183 public $fields;
5184 protected $propertiesType = 'Google_Service_Sheets_SpreadsheetProperties';
5185 protected $propertiesDataType = '';
5186
5187
5188 public function setFields($fields)
5189 {
5190 $this->fields = $fields;
5191 }
5192 public function getFields()
5193 {
5194 return $this->fields;
5195 }
5196 public function setProperties(Google_Service_Sheets_SpreadsheetProperties $properties)
5197 {
5198 $this->properties = $properties;
5199 }
5200 public function getProperties()
5201 {
5202 return $this->properties;
5203 }
5204 }
5205
5206 class Google_Service_Sheets_UpdateValuesResponse extends Google_Model
5207 {
5208 protected $internal_gapi_mappings = array(
5209 );
5210 public $spreadsheetId;
5211 public $updatedCells;
5212 public $updatedColumns;
5213 public $updatedRange;
5214 public $updatedRows;
5215
5216
5217 public function setSpreadsheetId($spreadsheetId)
5218 {
5219 $this->spreadsheetId = $spreadsheetId;
5220 }
5221 public function getSpreadsheetId()
5222 {
5223 return $this->spreadsheetId;
5224 }
5225 public function setUpdatedCells($updatedCells)
5226 {
5227 $this->updatedCells = $updatedCells;
5228 }
5229 public function getUpdatedCells()
5230 {
5231 return $this->updatedCells;
5232 }
5233 public function setUpdatedColumns($updatedColumns)
5234 {
5235 $this->updatedColumns = $updatedColumns;
5236 }
5237 public function getUpdatedColumns()
5238 {
5239 return $this->updatedColumns;
5240 }
5241 public function setUpdatedRange($updatedRange)
5242 {
5243 $this->updatedRange = $updatedRange;
5244 }
5245 public function getUpdatedRange()
5246 {
5247 return $this->updatedRange;
5248 }
5249 public function setUpdatedRows($updatedRows)
5250 {
5251 $this->updatedRows = $updatedRows;
5252 }
5253 public function getUpdatedRows()
5254 {
5255 return $this->updatedRows;
5256 }
5257 }
5258
5259 class Google_Service_Sheets_ValueRange extends Google_Collection
5260 {
5261 protected $collection_key = 'values';
5262 protected $internal_gapi_mappings = array(
5263 );
5264 public $majorDimension;
5265 public $range;
5266 public $values;
5267
5268
5269 public function setMajorDimension($majorDimension)
5270 {
5271 $this->majorDimension = $majorDimension;
5272 }
5273 public function getMajorDimension()
5274 {
5275 return $this->majorDimension;
5276 }
5277 public function setRange($range)
5278 {
5279 $this->range = $range;
5280 }
5281 public function getRange()
5282 {
5283 return $this->range;
5284 }
5285 public function setValues($values)
5286 {
5287 $this->values = $values;
5288 }
5289 public function getValues()
5290 {
5291 return $this->values;
5292 }
5293 }
5294