identifier = $identifier; } /** * @return string */ public function getIdentifier() { return $this->identifier; } /** * @param ImageComponent */ public function setImage(ImageComponent $image) { $this->image = $image; } /** * @return ImageComponent */ public function getImage() { return $this->image; } /** * @param string */ public function setLayout($layout) { $this->layout = $layout; } /** * @return string */ public function getLayout() { return $this->layout; } /** * @param string */ public function setSubtitle($subtitle) { $this->subtitle = $subtitle; } /** * @return string */ public function getSubtitle() { return $this->subtitle; } /** * @param string */ public function setTextAlignment($textAlignment) { $this->textAlignment = $textAlignment; } /** * @return string */ public function getTextAlignment() { return $this->textAlignment; } /** * @param string */ public function setTitle($title) { $this->title = $title; } /** * @return string */ public function getTitle() { return $this->title; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GridItem::class, 'Google_Service_CloudSearch_GridItem');