id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * Required. The type of the association. * * Accepted values: THREAT_INTEL_OBJECT_TYPE_UNSPECIFIED, * THREAT_INTEL_OBJECT_TYPE_THREAT_ACTOR, THREAT_INTEL_OBJECT_TYPE_MALWARE, * THREAT_INTEL_OBJECT_TYPE_REPORT, THREAT_INTEL_OBJECT_TYPE_CAMPAIGN, * THREAT_INTEL_OBJECT_TYPE_IOC_COLLECTION, * THREAT_INTEL_OBJECT_TYPE_SOFTWARE_AND_TOOLKITS, * THREAT_INTEL_OBJECT_TYPE_VULNERABILITY * * @param self::TYPE_* $type */ public function setType($type) { $this->type = $type; } /** * @return self::TYPE_* */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Association::class, 'Google_Service_ThreatIntelligenceService_Association');