id; } /** * Set id. */ public function setId(int $id): Platform { $this->id = $id; return $this; } /** * @return string */ public function getToolProvider() { return $this->toolProvider; } /** * @param string $toolProvider */ public function setToolProvider(?string $toolProvider): void { $this->toolProvider = $toolProvider; } /** * Get key id. */ public function getKid() { return $this->kid; } /** * Set key id. */ public function setKid(string $kid): Platform { $this->kid = $kid; return $this; } /** * Get Issuer. */ public function getIssuer() { return $this->issuer; } /** * Set issuer. */ public function setIssuer(string $issuer): Platform { $this->issuer = $issuer; return $this; } /** * Get client ID. */ public function getClientId() { return $this->clientId; } /** * Set client ID. */ public function setClientId(string $clientId): Platform { $this->clientId = $clientId; return $this; } /** * Get auth login URL. */ public function getAuthLoginUrl() { return $this->authLoginUrl; } /** * Set auth login URL. */ public function setAuthLoginUrl(string $authLoginUrl): Platform { $this->authLoginUrl = $authLoginUrl; return $this; } /** * Get auth token URL. */ public function getAuthTokenUrl() { return $this->authTokenUrl; } /** * Set auth token URL. */ public function setAuthTokenUrl(string $authTokenUrl): Platform { $this->authTokenUrl = $authTokenUrl; return $this; } /** * Get key set URL. */ public function getKeySetUrl() { return $this->keySetUrl; } /** * Set key set URL. */ public function setKeySetUrl(string $keySetUrl): Platform { $this->keySetUrl = $keySetUrl; return $this; } /** * Get Deployment ID. */ public function getDeploymentId() { return $this->deploymentId; } /** * Set Deployment ID. */ public function setDeploymentId(string $deploymentId): Platform { $this->deploymentId = $deploymentId; return $this; } }