xxxxxxxxxx
namespace TaxyCreate\TaxyCreateStruct;
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for user_details TaxyCreateStruct
* @package TaxyCreate
* @subpackage Structs
*/
class TaxyCreateUser_details extends AbstractStructBase
{
/**
* The a_pel_code
* @var string
*/
public $a_pel_code;
/**
* The a_user_code
* @var int
*/
public $a_user_code;
/**
* The a_user_pass
* @var string
*/
public $a_user_pass;
/**
* The a_pel_sub_code
* @var string
*/
public $a_pel_sub_code;
/**
* Constructor method for user_details
* @uses TaxyCreateUser_details::setA_pel_code()
* @uses TaxyCreateUser_details::setA_user_code()
* @uses TaxyCreateUser_details::setA_user_pass()
* @uses TaxyCreateUser_details::setA_pel_sub_code()
* @param string $a_pel_code
* @param int $a_user_code
* @param string $a_user_pass
* @param string $a_pel_sub_code
*/
public function __construct($a_pel_code = null, $a_user_code = null, $a_user_pass = null, $a_pel_sub_code = null)
{
$this
->setA_pel_code($a_pel_code)
->setA_user_code($a_user_code)
->setA_user_pass($a_user_pass)
->setA_pel_sub_code($a_pel_sub_code);
}
/**
* Get a_pel_code value
* @return string|null
*/
public function getA_pel_code()
{
return $this->a_pel_code;
}
/**
* Set a_pel_code value
* @param string $a_pel_code
* @return \TaxyCreate\TaxyCreateStruct\TaxyCreateUser_details
*/
public function setA_pel_code($a_pel_code = null)
{
// validation for constraint: string
if (!is_null($a_pel_code) && !is_string($a_pel_code)) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($a_pel_code, true), gettype($a_pel_code)), __LINE__);
}
$this->a_pel_code = $a_pel_code;
return $this;
}
/**
* Get a_user_code value
* @return int|null
*/
public function getA_user_code()
{
return $this->a_user_code;
}
/**
* Set a_user_code value
* @param int $a_user_code
* @return \TaxyCreate\TaxyCreateStruct\TaxyCreateUser_details
*/
public function setA_user_code($a_user_code = null)
{
// validation for constraint: int
if (!is_null($a_user_code) && !(is_int($a_user_code) || ctype_digit($a_user_code))) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide an integer value, %s given', var_export($a_user_code, true), gettype($a_user_code)), __LINE__);
}
$this->a_user_code = $a_user_code;
return $this;
}
/**
* Get a_user_pass value
* @return string|null
*/
public function getA_user_pass()
{
return $this->a_user_pass;
}
/**
* Set a_user_pass value
* @param string $a_user_pass
* @return \TaxyCreate\TaxyCreateStruct\TaxyCreateUser_details
*/
public function setA_user_pass($a_user_pass = null)
{
// validation for constraint: string
if (!is_null($a_user_pass) && !is_string($a_user_pass)) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($a_user_pass, true), gettype($a_user_pass)), __LINE__);
}
$this->a_user_pass = $a_user_pass;
return $this;
}
/**
* Get a_pel_sub_code value
* @return string|null
*/
public function getA_pel_sub_code()
{
return $this->a_pel_sub_code;
}
/**
* Set a_pel_sub_code value
* @param string $a_pel_sub_code
* @return \TaxyCreate\TaxyCreateStruct\TaxyCreateUser_details
*/
public function setA_pel_sub_code($a_pel_sub_code = null)
{
// validation for constraint: string
if (!is_null($a_pel_sub_code) && !is_string($a_pel_sub_code)) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($a_pel_sub_code, true), gettype($a_pel_sub_code)), __LINE__);
}
$this->a_pel_sub_code = $a_pel_sub_code;
return $this;
}
}
Don't be shy, don't hesitate to contact us for any subject, we'll be glad to help.
This platform is provided to give developpers and non developpers a way to easily consume SOAP Web Services or share their own SOAP Web Services with extra features powered by the platform.
© 2025 Providr.IO