backgroundColor = $backgroundColor; } /** * @return GoogleTypeColor */ public function getBackgroundColor() { return $this->backgroundColor; } /** * @param bool */ public function setBold($bold) { $this->bold = $bold; } /** * @return bool */ public function getBold() { return $this->bold; } /** * @param int */ public function setFontSize($fontSize) { $this->fontSize = $fontSize; } /** * @return int */ public function getFontSize() { return $this->fontSize; } /** * @param string */ public function setFontType($fontType) { $this->fontType = $fontType; } /** * @return string */ public function getFontType() { return $this->fontType; } /** * @param int */ public function setFontWeight($fontWeight) { $this->fontWeight = $fontWeight; } /** * @return int */ public function getFontWeight() { return $this->fontWeight; } /** * @param bool */ public function setHandwritten($handwritten) { $this->handwritten = $handwritten; } /** * @return bool */ public function getHandwritten() { return $this->handwritten; } /** * @param bool */ public function setItalic($italic) { $this->italic = $italic; } /** * @return bool */ public function getItalic() { return $this->italic; } public function setLetterSpacing($letterSpacing) { $this->letterSpacing = $letterSpacing; } public function getLetterSpacing() { return $this->letterSpacing; } public function setPixelFontSize($pixelFontSize) { $this->pixelFontSize = $pixelFontSize; } public function getPixelFontSize() { return $this->pixelFontSize; } /** * @param bool */ public function setSmallcaps($smallcaps) { $this->smallcaps = $smallcaps; } /** * @return bool */ public function getSmallcaps() { return $this->smallcaps; } /** * @param bool */ public function setStrikeout($strikeout) { $this->strikeout = $strikeout; } /** * @return bool */ public function getStrikeout() { return $this->strikeout; } /** * @param bool */ public function setSubscript($subscript) { $this->subscript = $subscript; } /** * @return bool */ public function getSubscript() { return $this->subscript; } /** * @param bool */ public function setSuperscript($superscript) { $this->superscript = $superscript; } /** * @return bool */ public function getSuperscript() { return $this->superscript; } /** * @param GoogleTypeColor */ public function setTextColor(GoogleTypeColor $textColor) { $this->textColor = $textColor; } /** * @return GoogleTypeColor */ public function getTextColor() { return $this->textColor; } /** * @param bool */ public function setUnderlined($underlined) { $this->underlined = $underlined; } /** * @return bool */ public function getUnderlined() { return $this->underlined; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDocumentaiV1DocumentPageTokenStyleInfo::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentPageTokenStyleInfo');