1<?php 2/* 3 * Copyright 2014 Google Inc. 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not 6 * use this file except in compliance with the License. You may obtain a copy of 7 * the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 14 * License for the specific language governing permissions and limitations under 15 * the License. 16 */ 17 18namespace Google\Service\Sheets; 19 20class BandedRange extends \Google\Model 21{ 22 /** 23 * @var int 24 */ 25 public $bandedRangeId; 26 protected $columnPropertiesType = BandingProperties::class; 27 protected $columnPropertiesDataType = ''; 28 protected $rangeType = GridRange::class; 29 protected $rangeDataType = ''; 30 protected $rowPropertiesType = BandingProperties::class; 31 protected $rowPropertiesDataType = ''; 32 33 /** 34 * @param int 35 */ 36 public function setBandedRangeId($bandedRangeId) 37 { 38 $this->bandedRangeId = $bandedRangeId; 39 } 40 /** 41 * @return int 42 */ 43 public function getBandedRangeId() 44 { 45 return $this->bandedRangeId; 46 } 47 /** 48 * @param BandingProperties 49 */ 50 public function setColumnProperties(BandingProperties $columnProperties) 51 { 52 $this->columnProperties = $columnProperties; 53 } 54 /** 55 * @return BandingProperties 56 */ 57 public function getColumnProperties() 58 { 59 return $this->columnProperties; 60 } 61 /** 62 * @param GridRange 63 */ 64 public function setRange(GridRange $range) 65 { 66 $this->range = $range; 67 } 68 /** 69 * @return GridRange 70 */ 71 public function getRange() 72 { 73 return $this->range; 74 } 75 /** 76 * @param BandingProperties 77 */ 78 public function setRowProperties(BandingProperties $rowProperties) 79 { 80 $this->rowProperties = $rowProperties; 81 } 82 /** 83 * @return BandingProperties 84 */ 85 public function getRowProperties() 86 { 87 return $this->rowProperties; 88 } 89} 90 91// Adding a class alias for backwards compatibility with the previous class name. 92class_alias(BandedRange::class, 'Google_Service_Sheets_BandedRange'); 93