description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param Position */ public function setEnd(Position $end) { $this->end = $end; } /** * @return Position */ public function getEnd() { return $this->end; } /** * @param string */ public function setFieldPath($fieldPath) { $this->fieldPath = $fieldPath; } /** * @return string */ public function getFieldPath() { return $this->fieldPath; } /** * @param Position */ public function setStart(Position $start) { $this->start = $start; } /** * @return Position */ public function getStart() { return $this->start; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CustomModuleValidationError::class, 'Google_Service_SecurityCommandCenter_CustomModuleValidationError');