alignment = $alignment;
}
/**
* @return string
*/
public function getAlignment()
{
return $this->alignment;
}
/**
* @param Dimension
*/
public function setOffset(Dimension $offset)
{
$this->offset = $offset;
}
/**
* @return Dimension
*/
public function getOffset()
{
return $this->offset;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(TabStop::class, 'Google_Service_Docs_TabStop');