arguments = $arguments; } /** * @return bool */ public function getArguments() { return $this->arguments; } /** * If true, the builder claims that recipe.environment is claimed to be * complete. * * @param bool $environment */ public function setEnvironment($environment) { $this->environment = $environment; } /** * @return bool */ public function getEnvironment() { return $this->environment; } /** * If true, the builder claims that materials are complete, usually through * some controls to prevent network access. Sometimes called "hermetic". * * @param bool $materials */ public function setMaterials($materials) { $this->materials = $materials; } /** * @return bool */ public function getMaterials() { return $this->materials; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SlsaCompleteness::class, 'Google_Service_OnDemandScanning_SlsaCompleteness');