isPrefix = $isPrefix; } /** * @return bool */ public function getIsPrefix() { return $this->isPrefix; } /** * Detected break type. * * Accepted values: UNKNOWN, SPACE, SURE_SPACE, EOL_SURE_SPACE, HYPHEN, * LINE_BREAK * * @param self::TYPE_* $type */ public function setType($type) { $this->type = $type; } /** * @return self::TYPE_* */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak::class, 'Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak');