[e3d4e0a] | 1 | <?php
|
---|
| 2 | /*
|
---|
| 3 | * Copyright 2014 Google Inc.
|
---|
| 4 | *
|
---|
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
---|
| 6 | * use this file except in compliance with the License. You may obtain a copy of
|
---|
| 7 | * the License at
|
---|
| 8 | *
|
---|
| 9 | * http://www.apache.org/licenses/LICENSE-2.0
|
---|
| 10 | *
|
---|
| 11 | * Unless required by applicable law or agreed to in writing, software
|
---|
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
---|
| 13 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
---|
| 14 | * License for the specific language governing permissions and limitations under
|
---|
| 15 | * the License.
|
---|
| 16 | */
|
---|
| 17 |
|
---|
| 18 | namespace Google\Service\Sheets;
|
---|
| 19 |
|
---|
| 20 | class ChartData extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | /**
|
---|
| 23 | * @var string
|
---|
| 24 | */
|
---|
| 25 | public $aggregateType;
|
---|
| 26 | protected $columnReferenceType = DataSourceColumnReference::class;
|
---|
| 27 | protected $columnReferenceDataType = '';
|
---|
| 28 | protected $groupRuleType = ChartGroupRule::class;
|
---|
| 29 | protected $groupRuleDataType = '';
|
---|
| 30 | protected $sourceRangeType = ChartSourceRange::class;
|
---|
| 31 | protected $sourceRangeDataType = '';
|
---|
| 32 |
|
---|
| 33 | /**
|
---|
| 34 | * @param string
|
---|
| 35 | */
|
---|
| 36 | public function setAggregateType($aggregateType)
|
---|
| 37 | {
|
---|
| 38 | $this->aggregateType = $aggregateType;
|
---|
| 39 | }
|
---|
| 40 | /**
|
---|
| 41 | * @return string
|
---|
| 42 | */
|
---|
| 43 | public function getAggregateType()
|
---|
| 44 | {
|
---|
| 45 | return $this->aggregateType;
|
---|
| 46 | }
|
---|
| 47 | /**
|
---|
| 48 | * @param DataSourceColumnReference
|
---|
| 49 | */
|
---|
| 50 | public function setColumnReference(DataSourceColumnReference $columnReference)
|
---|
| 51 | {
|
---|
| 52 | $this->columnReference = $columnReference;
|
---|
| 53 | }
|
---|
| 54 | /**
|
---|
| 55 | * @return DataSourceColumnReference
|
---|
| 56 | */
|
---|
| 57 | public function getColumnReference()
|
---|
| 58 | {
|
---|
| 59 | return $this->columnReference;
|
---|
| 60 | }
|
---|
| 61 | /**
|
---|
| 62 | * @param ChartGroupRule
|
---|
| 63 | */
|
---|
| 64 | public function setGroupRule(ChartGroupRule $groupRule)
|
---|
| 65 | {
|
---|
| 66 | $this->groupRule = $groupRule;
|
---|
| 67 | }
|
---|
| 68 | /**
|
---|
| 69 | * @return ChartGroupRule
|
---|
| 70 | */
|
---|
| 71 | public function getGroupRule()
|
---|
| 72 | {
|
---|
| 73 | return $this->groupRule;
|
---|
| 74 | }
|
---|
| 75 | /**
|
---|
| 76 | * @param ChartSourceRange
|
---|
| 77 | */
|
---|
| 78 | public function setSourceRange(ChartSourceRange $sourceRange)
|
---|
| 79 | {
|
---|
| 80 | $this->sourceRange = $sourceRange;
|
---|
| 81 | }
|
---|
| 82 | /**
|
---|
| 83 | * @return ChartSourceRange
|
---|
| 84 | */
|
---|
| 85 | public function getSourceRange()
|
---|
| 86 | {
|
---|
| 87 | return $this->sourceRange;
|
---|
| 88 | }
|
---|
| 89 | }
|
---|
| 90 |
|
---|
| 91 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 92 | class_alias(ChartData::class, 'Google_Service_Sheets_ChartData');
|
---|