name = $name; $this->url = $url; $this->transport = $transport; $this->secret = $secret; $this->authentication = $authentication; } public function getName(): string { return $this->name; } public function getUrl(): string { return $this->url; } public function getTransport(): string { return $this->transport; } public function getSecret(): string { return $this->secret; } public function getAuthentication(): string { return $this->authentication; } }