| Server IP : 85.158.181.41 / Your IP : 216.73.217.7 Web Server : Apache System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64 User : moncbefd ( 1024) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/moncbefd/www.moneta.at/ext/payone/php/Payone/ClientApi/Request/ |
Upload File : |
<?php
/**
*
* NOTICE OF LICENSE
*
* This source file is subject to the GNU General Public License (GPL 2)
* that is bundled with this package in the file LICENSE.txt
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Payone to newer
* versions in the future. If you wish to customize Payone for your
* needs please refer to http://www.payone.de for more information.
*
* @category Payone
* @package Payone_ClientApi
* @subpackage Request
* @copyright Copyright (c) 2012 <info@noovias.com> - www.noovias.com
* @author Matthias Walter <info@noovias.com>
* @license <http://www.gnu.org/licenses/> GNU General Public License (GPL 2)
* @link http://www.noovias.com
*/
/**
*
* @category Payone
* @package Payone_ClientApi
* @subpackage Request
* @copyright Copyright (c) 2012 <info@noovias.com> - www.noovias.com
* @license <http://www.gnu.org/licenses/> GNU General Public License (GPL 2)
* @link http://www.noovias.com
*/
class Payone_ClientApi_Request_CreditCardCheck extends Payone_ClientApi_Request_Abstract
{
protected $request = Payone_ClientApi_Enum_RequestType::CREDITCARDCHECK;
/**
* @var int
*/
protected $aid = 0;
/**
* @var string
*/
protected $storecarddata = '';
/** @var string */
protected $successurl = '';
/** @var string */
protected $errorurl = '';
/**
* @param int $aid
*/
public function setAid($aid)
{
$this->aid = $aid;
}
/**
* @return int
*/
public function getAid()
{
return $this->aid;
}
/**
* @param string $storecarddata
*/
public function setStorecarddata($storecarddata)
{
$this->storecarddata = $storecarddata;
}
/**
* @return string
*/
public function getStorecarddata()
{
return $this->storecarddata;
}
/**
* @param string $errorurl
*/
public function setErrorurl($errorurl)
{
$this->errorurl = $errorurl;
}
/**
* @return string
*/
public function getErrorurl()
{
return $this->errorurl;
}
/**
* @param string $successurl
*/
public function setSuccessurl($successurl)
{
$this->successurl = $successurl;
}
/**
* @return string
*/
public function getSuccessurl()
{
return $this->successurl;
}
}