<?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
            ->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)
    {
        $this->idBufor = $idBufor;
        return $this;
    }
}
