columns = $columns;
}
/**
* @return int
*/
public function getColumns()
{
return $this->columns;
}
/**
* @param int
*/
public function setRows($rows)
{
$this->rows = $rows;
}
/**
* @return int
*/
public function getRows()
{
return $this->rows;
}
/**
* @param string[]
*/
public function setSuggestedDeletionIds($suggestedDeletionIds)
{
$this->suggestedDeletionIds = $suggestedDeletionIds;
}
/**
* @return string[]
*/
public function getSuggestedDeletionIds()
{
return $this->suggestedDeletionIds;
}
/**
* @param string[]
*/
public function setSuggestedInsertionIds($suggestedInsertionIds)
{
$this->suggestedInsertionIds = $suggestedInsertionIds;
}
/**
* @return string[]
*/
public function getSuggestedInsertionIds()
{
return $this->suggestedInsertionIds;
}
/**
* @param TableRow[]
*/
public function setTableRows($tableRows)
{
$this->tableRows = $tableRows;
}
/**
* @return TableRow[]
*/
public function getTableRows()
{
return $this->tableRows;
}
/**
* @param TableStyle
*/
public function setTableStyle(TableStyle $tableStyle)
{
$this->tableStyle = $tableStyle;
}
/**
* @return TableStyle
*/
public function getTableStyle()
{
return $this->tableStyle;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Table::class, 'Google_Service_Docs_Table');