code = $code; } /** * @return string */ public function getCode() { return $this->code; } /** * Required. End line number (1-based). * * @param int $endLine */ public function setEndLine($endLine) { $this->endLine = $endLine; } /** * @return int */ public function getEndLine() { return $this->endLine; } /** * Required. Path of the file. * * @param string $path */ public function setPath($path) { $this->path = $path; } /** * @return string */ public function getPath() { return $this->path; } /** * Required. Start line number (1-based). * * @param int $startLine */ public function setStartLine($startLine) { $this->startLine = $startLine; } /** * @return int */ public function getStartLine() { return $this->startLine; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleChecksRepoScanV1alphaSourceCode::class, 'Google_Service_ChecksService_GoogleChecksRepoScanV1alphaSourceCode');