clientId = $clientId; $this->clientSecret = $clientSecret; $this->redirectUrl = $redirectUrl; } /** * @return string */ public function getClientId(): string { return $this->clientId; } /** * @param string $clientId * * @return AccountCredentialsData */ public function setClientId(string $clientId): AccountCredentialsData { $this->clientId = $clientId; return $this; } /** * @return string */ public function getClientSecret(): string { return $this->clientSecret; } /** * @param string $clientSecret * * @return AccountCredentialsData */ public function setClientSecret(string $clientSecret): AccountCredentialsData { $this->clientSecret = $clientSecret; return $this; } /** * @return string */ public function getRedirectUrl(): string { return $this->redirectUrl; } /** * @param string $redirectUrl * * @return AccountCredentialsData */ public function setRedirectUrl(string $redirectUrl): AccountCredentialsData { $this->redirectUrl = $redirectUrl; return $this; } }