attestation = $attestation; } /** * @return AttestationNote */ public function getAttestation() { return $this->attestation; } /** * @param BuildNote */ public function setBuild(BuildNote $build) { $this->build = $build; } /** * @return BuildNote */ public function getBuild() { return $this->build; } /** * @param ComplianceNote */ public function setCompliance(ComplianceNote $compliance) { $this->compliance = $compliance; } /** * @return ComplianceNote */ public function getCompliance() { return $this->compliance; } /** * @param string */ public function setCreateTime($createTime) { $this->createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * @param DeploymentNote */ public function setDeployment(DeploymentNote $deployment) { $this->deployment = $deployment; } /** * @return DeploymentNote */ public function getDeployment() { return $this->deployment; } /** * @param DiscoveryNote */ public function setDiscovery(DiscoveryNote $discovery) { $this->discovery = $discovery; } /** * @return DiscoveryNote */ public function getDiscovery() { return $this->discovery; } /** * @param DSSEAttestationNote */ public function setDsseAttestation(DSSEAttestationNote $dsseAttestation) { $this->dsseAttestation = $dsseAttestation; } /** * @return DSSEAttestationNote */ public function getDsseAttestation() { return $this->dsseAttestation; } /** * @param string */ public function setExpirationTime($expirationTime) { $this->expirationTime = $expirationTime; } /** * @return string */ public function getExpirationTime() { return $this->expirationTime; } /** * @param ImageNote */ public function setImage(ImageNote $image) { $this->image = $image; } /** * @return ImageNote */ public function getImage() { return $this->image; } /** * @param string */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * @param string */ public function setLongDescription($longDescription) { $this->longDescription = $longDescription; } /** * @return string */ public function getLongDescription() { return $this->longDescription; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param PackageNote */ public function setPackage(PackageNote $package) { $this->package = $package; } /** * @return PackageNote */ public function getPackage() { return $this->package; } /** * @param string[] */ public function setRelatedNoteNames($relatedNoteNames) { $this->relatedNoteNames = $relatedNoteNames; } /** * @return string[] */ public function getRelatedNoteNames() { return $this->relatedNoteNames; } /** * @param RelatedUrl[] */ public function setRelatedUrl($relatedUrl) { $this->relatedUrl = $relatedUrl; } /** * @return RelatedUrl[] */ public function getRelatedUrl() { return $this->relatedUrl; } /** * @param string */ public function setShortDescription($shortDescription) { $this->shortDescription = $shortDescription; } /** * @return string */ public function getShortDescription() { return $this->shortDescription; } /** * @param string */ public function setUpdateTime($updateTime) { $this->updateTime = $updateTime; } /** * @return string */ public function getUpdateTime() { return $this->updateTime; } /** * @param UpgradeNote */ public function setUpgrade(UpgradeNote $upgrade) { $this->upgrade = $upgrade; } /** * @return UpgradeNote */ public function getUpgrade() { return $this->upgrade; } /** * @param VulnerabilityNote */ public function setVulnerability(VulnerabilityNote $vulnerability) { $this->vulnerability = $vulnerability; } /** * @return VulnerabilityNote */ public function getVulnerability() { return $this->vulnerability; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Note::class, 'Google_Service_ContainerAnalysis_Note');