_propDict)) { return $this->_propDict["count"]; } else { return null; } } /** * Sets the count * Count of the simulation event occurrence in an attack simulation and training campaign. * * @param int $val The value of the count * * @return SimulationEvent */ public function setCount($val) { $this->_propDict["count"] = $val; return $this; } /** * Gets the eventName * Name of the simulation event in an attack simulation and training campaign. * * @return string|null The eventName */ public function getEventName() { if (array_key_exists("eventName", $this->_propDict)) { return $this->_propDict["eventName"]; } else { return null; } } /** * Sets the eventName * Name of the simulation event in an attack simulation and training campaign. * * @param string $val The value of the eventName * * @return SimulationEvent */ public function setEventName($val) { $this->_propDict["eventName"] = $val; return $this; } }