* @copyright PayPal * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ namespace PaypalAddons\classes\API\Response; class ResponseGetAuthToken extends Response { /** @var string*/ protected $authToken; /** @var string*/ protected $refreshToken; /** @var string*/ protected $tokenType; /** @var string*/ protected $nonce; /** * @return string */ public function getAuthToken() { return $this->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; } }