collapsed = $collapsed;
}
/**
* @return bool
*/
public function getCollapsed()
{
return $this->collapsed;
}
/**
* @param int
*/
public function setDepth($depth)
{
$this->depth = $depth;
}
/**
* @return int
*/
public function getDepth()
{
return $this->depth;
}
/**
* @param DimensionRange
*/
public function setRange(DimensionRange $range)
{
$this->range = $range;
}
/**
* @return DimensionRange
*/
public function getRange()
{
return $this->range;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(DimensionGroup::class, 'Google_Service_Sheets_DimensionGroup');