xxxxxxxxxx
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for getEnvelopeBufor StructType
* @subpackage Structs
*/
class GetEnvelopeBufor extends AbstractStructBase
{
/**
* The idBufor
* Meta information extracted from the WSDL
* - maxOccurs: 1
* - minOccurs: 0
* @var int
*/
public $idBufor;
/**
* Constructor method for getEnvelopeBufor
* @uses GetEnvelopeBufor::setIdBufor()
* @param int $idBufor
*/
public function __construct($idBufor = null)
{
$this
->setIdBufor($idBufor);
}
/**
* Get idBufor value
* @return int|null
*/
public function getIdBufor()
{
return $this->idBufor;
}
/**
* Set idBufor value
* @param int $idBufor
* @return GetEnvelopeBufor
*/
public function setIdBufor($idBufor = null)
{
// validation for constraint: int
if (!is_null($idBufor) && !(is_int($idBufor) || ctype_digit($idBufor))) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide an integer value, %s given', var_export($idBufor, true), gettype($idBufor)), __LINE__);
}
$this->idBufor = $idBufor;
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