id; } public function getUrl(): ?string { return $this->url; } public function setUrl(?string $url): static { $this->url = $url; return $this; } public function getEncryptedTokenId(): ?string { return $this->encryptedTokenId; } public function setEncryptedTokenId(?string $encryptedTokenId): static { $this->encryptedTokenId = $encryptedTokenId; return $this; } public function getEncryptedTokenSecret(): ?string { return $this->encryptedTokenSecret; } public function setEncryptedTokenSecret(?string $encryptedTokenSecret): static { $this->encryptedTokenSecret = $encryptedTokenSecret; return $this; } public function hasToken(): bool { return null !== $this->encryptedTokenId && null !== $this->encryptedTokenSecret; } }