fields = $fields;
}
/**
* @return string
*/
public function getFields()
{
return $this->fields;
}
/**
* @param int[]
*/
public function setRowIndices($rowIndices)
{
$this->rowIndices = $rowIndices;
}
/**
* @return int[]
*/
public function getRowIndices()
{
return $this->rowIndices;
}
/**
* @param TableRowStyle
*/
public function setTableRowStyle(TableRowStyle $tableRowStyle)
{
$this->tableRowStyle = $tableRowStyle;
}
/**
* @return TableRowStyle
*/
public function getTableRowStyle()
{
return $this->tableRowStyle;
}
/**
* @param Location
*/
public function setTableStartLocation(Location $tableStartLocation)
{
$this->tableStartLocation = $tableStartLocation;
}
/**
* @return Location
*/
public function getTableStartLocation()
{
return $this->tableStartLocation;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(UpdateTableRowStyleRequest::class, 'Google_Service_Docs_UpdateTableRowStyleRequest');