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\Slides; 19 20class UpdateTableBorderPropertiesRequest extends \Google\Model 21{ 22 /** 23 * @var string 24 */ 25 public $borderPosition; 26 /** 27 * @var string 28 */ 29 public $fields; 30 /** 31 * @var string 32 */ 33 public $objectId; 34 protected $tableBorderPropertiesType = TableBorderProperties::class; 35 protected $tableBorderPropertiesDataType = ''; 36 protected $tableRangeType = TableRange::class; 37 protected $tableRangeDataType = ''; 38 39 /** 40 * @param string 41 */ 42 public function setBorderPosition($borderPosition) 43 { 44 $this->borderPosition = $borderPosition; 45 } 46 /** 47 * @return string 48 */ 49 public function getBorderPosition() 50 { 51 return $this->borderPosition; 52 } 53 /** 54 * @param string 55 */ 56 public function setFields($fields) 57 { 58 $this->fields = $fields; 59 } 60 /** 61 * @return string 62 */ 63 public function getFields() 64 { 65 return $this->fields; 66 } 67 /** 68 * @param string 69 */ 70 public function setObjectId($objectId) 71 { 72 $this->objectId = $objectId; 73 } 74 /** 75 * @return string 76 */ 77 public function getObjectId() 78 { 79 return $this->objectId; 80 } 81 /** 82 * @param TableBorderProperties 83 */ 84 public function setTableBorderProperties(TableBorderProperties $tableBorderProperties) 85 { 86 $this->tableBorderProperties = $tableBorderProperties; 87 } 88 /** 89 * @return TableBorderProperties 90 */ 91 public function getTableBorderProperties() 92 { 93 return $this->tableBorderProperties; 94 } 95 /** 96 * @param TableRange 97 */ 98 public function setTableRange(TableRange $tableRange) 99 { 100 $this->tableRange = $tableRange; 101 } 102 /** 103 * @return TableRange 104 */ 105 public function getTableRange() 106 { 107 return $this->tableRange; 108 } 109} 110 111// Adding a class alias for backwards compatibility with the previous class name. 112class_alias(UpdateTableBorderPropertiesRequest::class, 'Google_Service_Slides_UpdateTableBorderPropertiesRequest'); 113