alignment = $alignment; } /** * @return string */ public function getAlignment() { return $this->alignment; } /** * @param string */ public function setDirection($direction) { $this->direction = $direction; } /** * @return string */ public function getDirection() { return $this->direction; } /** * @param Dimension */ public function setIndentEnd(Dimension $indentEnd) { $this->indentEnd = $indentEnd; } /** * @return Dimension */ public function getIndentEnd() { return $this->indentEnd; } /** * @param Dimension */ public function setIndentFirstLine(Dimension $indentFirstLine) { $this->indentFirstLine = $indentFirstLine; } /** * @return Dimension */ public function getIndentFirstLine() { return $this->indentFirstLine; } /** * @param Dimension */ public function setIndentStart(Dimension $indentStart) { $this->indentStart = $indentStart; } /** * @return Dimension */ public function getIndentStart() { return $this->indentStart; } /** * @param float */ public function setLineSpacing($lineSpacing) { $this->lineSpacing = $lineSpacing; } /** * @return float */ public function getLineSpacing() { return $this->lineSpacing; } /** * @param Dimension */ public function setSpaceAbove(Dimension $spaceAbove) { $this->spaceAbove = $spaceAbove; } /** * @return Dimension */ public function getSpaceAbove() { return $this->spaceAbove; } /** * @param Dimension */ public function setSpaceBelow(Dimension $spaceBelow) { $this->spaceBelow = $spaceBelow; } /** * @return Dimension */ public function getSpaceBelow() { return $this->spaceBelow; } /** * @param string */ public function setSpacingMode($spacingMode) { $this->spacingMode = $spacingMode; } /** * @return string */ public function getSpacingMode() { return $this->spacingMode; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ParagraphStyle::class, 'Google_Service_Slides_ParagraphStyle');