fields = $fields; } /** * @return string */ public function getFields() { return $this->fields; } /** * The object ID of the shape the updates are applied to. * * @param string $objectId */ public function setObjectId($objectId) { $this->objectId = $objectId; } /** * @return string */ public function getObjectId() { return $this->objectId; } /** * The shape properties to update. * * @param ShapeProperties $shapeProperties */ public function setShapeProperties(ShapeProperties $shapeProperties) { $this->shapeProperties = $shapeProperties; } /** * @return ShapeProperties */ public function getShapeProperties() { return $this->shapeProperties; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(UpdateShapePropertiesRequest::class, 'Google_Service_Slides_UpdateShapePropertiesRequest');