ids = $ids; } /** * @return string[] */ public function getIds() { return $this->ids; } /** * Industry-wide compliance standards or benchmarks, such as CIS, PCI, and * OWASP. * * @param string $standard */ public function setStandard($standard) { $this->standard = $standard; } /** * @return string */ public function getStandard() { return $this->standard; } /** * Version of the standard or benchmark, for example, 1.1 * * @param string $version */ public function setVersion($version) { $this->version = $version; } /** * @return string */ public function getVersion() { return $this->version; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Compliance::class, 'Google_Service_SecurityCommandCenter_Compliance');