authToken; } /** * @param string $authToken */ public function setAuthToken($authToken) { $this->authToken = $authToken; return $this; } /** * @return string */ public function getRefreshToken() { return $this->refreshToken; } /** * @param string $refreshToken */ public function setRefreshToken($refreshToken) { $this->refreshToken = $refreshToken; return $this; } /** * @return string */ public function getTokenType() { return $this->tokenType; } /** * @param string $tokenType */ public function setTokenType($tokenType) { $this->tokenType = $tokenType; return $this; } /** * @return string */ public function getNonce() { return $this->nonce; } /** * @param string $nonce */ public function setNonce($nonce) { $this->nonce = $nonce; return $this; } }