* @copyright PayPal * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ namespace PaypalAddons\classes\API\Response; class ResponseAuthorizationVoid extends ResponseOrderRefund { /** * @return string */ public function getMessage() { $message = 'Authorization ' . $this->getIdTransaction() . ' is voided'; return $message; } }