dimension = $dimension;
}
/**
* @return string
*/
public function getDimension()
{
return $this->dimension;
}
/**
* @param int
*/
public function setFillLength($fillLength)
{
$this->fillLength = $fillLength;
}
/**
* @return int
*/
public function getFillLength()
{
return $this->fillLength;
}
/**
* @param GridRange
*/
public function setSource(GridRange $source)
{
$this->source = $source;
}
/**
* @return GridRange
*/
public function getSource()
{
return $this->source;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(SourceAndDestination::class, 'Google_Service_Sheets_SourceAndDestination');