height = $height;
}
/**
* @return Dimension
*/
public function getHeight()
{
return $this->height;
}
/**
* @param Dimension
*/
public function setWidth(Dimension $width)
{
$this->width = $width;
}
/**
* @return Dimension
*/
public function getWidth()
{
return $this->width;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Size::class, 'Google_Service_Slides_Size');