fields = $fields;
}
/**
* @return string
*/
public function getFields()
{
return $this->fields;
}
/**
* @param ParagraphStyle
*/
public function setParagraphStyle(ParagraphStyle $paragraphStyle)
{
$this->paragraphStyle = $paragraphStyle;
}
/**
* @return ParagraphStyle
*/
public function getParagraphStyle()
{
return $this->paragraphStyle;
}
/**
* @param Range
*/
public function setRange(Range $range)
{
$this->range = $range;
}
/**
* @return Range
*/
public function getRange()
{
return $this->range;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(UpdateParagraphStyleRequest::class, 'Google_Service_Docs_UpdateParagraphStyleRequest');