checks = $checks; } /** * @return Check[] */ public function getChecks() { return $this->checks; } /** * @param string */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * @param ImageAllowlist */ public function setImageAllowlist(ImageAllowlist $imageAllowlist) { $this->imageAllowlist = $imageAllowlist; } /** * @return ImageAllowlist */ public function getImageAllowlist() { return $this->imageAllowlist; } /** * @param Scope */ public function setScope(Scope $scope) { $this->scope = $scope; } /** * @return Scope */ public function getScope() { return $this->scope; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CheckSet::class, 'Google_Service_BinaryAuthorization_CheckSet');