sEventName = $sEventName; $this->mEventSources = $mEventSources; $this->sDescription = $sDescription; $this->sReplaces = $sReplaces; $this->aEventDataDescription = $aEventDataDescription; $this->sModule = $sModule; } /** * @return string */ public function GetEventName(): string { return $this->sEventName; } /** * @param string $sEventName */ public function SetEventName(string $sEventName): void { $this->sEventName = $sEventName; } /** * @return string */ public function GetDescription(): string { return $this->sDescription; } /** * @param string $sDescription */ public function SetDescription(string $sDescription): void { $this->sDescription = $sDescription; } /** * @return string */ public function GetReplaces(): string { return $this->sReplaces; } /** * @param string $sReplaces */ public function SetReplaces(string $sReplaces): void { $this->sReplaces = $sReplaces; } /** * @return array */ public function GetEventDataDescription(): array { return $this->aEventDataDescription; } /** * @param \Combodo\iTop\Service\Events\Description\EventDataDescription[] $aEventDataDescription */ public function SetEventDataDescription(array $aEventDataDescription): void { $this->aEventDataDescription = $aEventDataDescription; } /** * @return string */ public function GetModule(): string { return $this->sModule; } /** * @param string $sModule */ public function SetModule(string $sModule): void { $this->sModule = $sModule; } /** * @return string|string[]|null */ public function GetEventSources() { return $this->mEventSources; } /** * @param string|string[]|null $mEventSources */ public function SetEventSources($mEventSources): void { $this->mEventSources = $mEventSources; } }