fields = $fields; } /** * @return string */ public function getFields() { return $this->fields; } /** * The object ID of the table. * * @param string $objectId */ public function setObjectId($objectId) { $this->objectId = $objectId; } /** * @return string */ public function getObjectId() { return $this->objectId; } /** * The table cell properties to update. * * @param TableCellProperties $tableCellProperties */ public function setTableCellProperties(TableCellProperties $tableCellProperties) { $this->tableCellProperties = $tableCellProperties; } /** * @return TableCellProperties */ public function getTableCellProperties() { return $this->tableCellProperties; } /** * The table range representing the subset of the table to which the updates * are applied. If a table range is not specified, the updates will apply to * the entire table. * * @param TableRange $tableRange */ public function setTableRange(TableRange $tableRange) { $this->tableRange = $tableRange; } /** * @return TableRange */ public function getTableRange() { return $this->tableRange; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(UpdateTableCellPropertiesRequest::class, 'Google_Service_Slides_UpdateTableCellPropertiesRequest');