backgroundColor = $backgroundColor;
}
/**
* @return Color
*/
public function getBackgroundColor()
{
return $this->backgroundColor;
}
/**
* @param ColorStyle
*/
public function setBackgroundColorStyle(ColorStyle $backgroundColorStyle)
{
$this->backgroundColorStyle = $backgroundColorStyle;
}
/**
* @return ColorStyle
*/
public function getBackgroundColorStyle()
{
return $this->backgroundColorStyle;
}
/**
* @param DataSourceColumnReference
*/
public function setDataSourceColumnReference(DataSourceColumnReference $dataSourceColumnReference)
{
$this->dataSourceColumnReference = $dataSourceColumnReference;
}
/**
* @return DataSourceColumnReference
*/
public function getDataSourceColumnReference()
{
return $this->dataSourceColumnReference;
}
/**
* @param int
*/
public function setDimensionIndex($dimensionIndex)
{
$this->dimensionIndex = $dimensionIndex;
}
/**
* @return int
*/
public function getDimensionIndex()
{
return $this->dimensionIndex;
}
/**
* @param Color
*/
public function setForegroundColor(Color $foregroundColor)
{
$this->foregroundColor = $foregroundColor;
}
/**
* @return Color
*/
public function getForegroundColor()
{
return $this->foregroundColor;
}
/**
* @param ColorStyle
*/
public function setForegroundColorStyle(ColorStyle $foregroundColorStyle)
{
$this->foregroundColorStyle = $foregroundColorStyle;
}
/**
* @return ColorStyle
*/
public function getForegroundColorStyle()
{
return $this->foregroundColorStyle;
}
/**
* @param string
*/
public function setSortOrder($sortOrder)
{
$this->sortOrder = $sortOrder;
}
/**
* @return string
*/
public function getSortOrder()
{
return $this->sortOrder;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(SortSpec::class, 'Google_Service_Sheets_SortSpec');