station = $station; $this->frontend = $frontend; $this->remotes = $remotes; $this->payload = $payload; $this->include_clients = $include_clients; } public function getStation(): Station { return $this->station; } public function getFrontend(): FrontendAbstract { return $this->frontend; } /** * @return RemoteAbstract[] */ public function getRemotes(): array { return $this->remotes; } public function includeClients(): bool { return $this->include_clients; } public function getPayload(): ?string { return $this->payload; } public function getRawResponse(): array { return $this->np_raw; } public function setRawResponse(array $np): void { $this->np_raw = $np; } }