<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
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
            -&gt;setIdBufor($idBufor);
    }
    /**
     * Get idBufor value
     * @return int|null
     */
    public function getIdBufor()
    {
        return $this-&gt;idBufor;
    }
    /**
     * Set idBufor value
     * @param int $idBufor
     * @return GetEnvelopeBufor
     */
    public function setIdBufor($idBufor = null)
    {
        // validation for constraint: int
        if (!is_null($idBufor) &amp;&amp; !(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-&gt;idBufor = $idBufor;
        return $this;
    }
}
</pre></body></html>