layerCount = $layerCount; } /** * @return int */ public function getLayerCount() { return $this->layerCount; } /** * The name of the base image. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * The repository name in which the base image is from. * * @param string $repository */ public function setRepository($repository) { $this->repository = $repository; } /** * @return string */ public function getRepository() { return $this->repository; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GrafeasV1BaseImage::class, 'Google_Service_OnDemandScanning_GrafeasV1BaseImage');