event; } public function setEvent(string $event): static { $this->event = $event; return $this; } public function getWatchList(): ?WatchList { return $this->watchList; } public function setWatchList(?WatchList $watchList): static { $this->watchList = $watchList; return $this; } public function getAction(): ?TriggerAction { return $this->action; } public function setAction(TriggerAction $action): static { $this->action = $action; return $this; } }