| 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/Api/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_Api
* @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_Api
* @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_Api_Request_AddressCheck extends Payone_Api_Request_Abstract
{
protected $request = Payone_Api_Enum_RequestType::ADDRESSCHECK;
/**
* @var int
*/
protected $aid = NULL;
/**
* @var string
*/
protected $addresschecktype = NULL;
/**
* @var string
*/
protected $firstname = NULL;
/**
* @var string
*/
protected $lastname = NULL;
/**
* @var string
*/
protected $company = NULL;
/**
* @var string
*/
protected $street = NULL;
/**
* @var string
*/
protected $streetname = NULL;
/**
* @var string
*/
protected $streetnumber = NULL;
/**
* @var string
*/
protected $zip = NULL;
/**
* @var string
*/
protected $city = NULL;
/**
* @var string
*/
protected $state = NULL;
/**
* @var string
*/
protected $country = NULL;
/**
* @var string
*/
protected $telephonenumber = NULL;
/**
* @var string
*/
protected $language = NULL;
/**
* @param string $addresschecktype
*/
public function setAddresschecktype($addresschecktype)
{
$this->addresschecktype = $addresschecktype;
}
/**
* @return string
*/
public function getAddresschecktype()
{
return $this->addresschecktype;
}
/**
* @param int $aid
*/
public function setAid($aid)
{
$this->aid = $aid;
}
/**
* @return int
*/
public function getAid()
{
return $this->aid;
}
/**
* @param string $city
*/
public function setCity($city)
{
$this->city = $city;
}
/**
* @return string
*/
public function getCity()
{
return $this->city;
}
/**
* @param string $company
*/
public function setCompany($company)
{
$this->company = $company;
}
/**
* @return string
*/
public function getCompany()
{
return $this->company;
}
/**
* @param string $country
*/
public function setCountry($country)
{
$this->country = $country;
}
/**
* @return string
*/
public function getCountry()
{
return $this->country;
}
/**
* @param string $firstname
*/
public function setFirstname($firstname)
{
$this->firstname = $firstname;
}
/**
* @return string
*/
public function getFirstname()
{
return $this->firstname;
}
/**
* @param string $language
*/
public function setLanguage($language)
{
$this->language = $language;
}
/**
* @return string
*/
public function getLanguage()
{
return $this->language;
}
/**
* @param string $lastname
*/
public function setLastname($lastname)
{
$this->lastname = $lastname;
}
/**
* @return string
*/
public function getLastname()
{
return $this->lastname;
}
/**
* @param string $state
*/
public function setState($state)
{
$this->state = $state;
}
/**
* @return string
*/
public function getState()
{
return $this->state;
}
/**
* @param string $street
*/
public function setStreet($street)
{
$this->street = $street;
}
/**
* @return string
*/
public function getStreet()
{
return $this->street;
}
/**
* @param string $streetname
*/
public function setStreetname($streetname)
{
$this->streetname = $streetname;
}
/**
* @return string
*/
public function getStreetname()
{
return $this->streetname;
}
/**
* @param string $streetnumber
*/
public function setStreetnumber($streetnumber)
{
$this->streetnumber = $streetnumber;
}
/**
* @return string
*/
public function getStreetnumber()
{
return $this->streetnumber;
}
/**
* @param string $telephonenumber
*/
public function setTelephonenumber($telephonenumber)
{
$this->telephonenumber = $telephonenumber;
}
/**
* @return string
*/
public function getTelephonenumber()
{
return $this->telephonenumber;
}
/**
* @param string $zip
*/
public function setZip($zip)
{
$this->zip = $zip;
}
/**
* @return string
*/
public function getZip()
{
return $this->zip;
}
}