<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for getAddressLabel StructType
 * @subpackage Structs
 */
class GetAddressLabel extends AbstractStructBase
{
    /**
     * The idEnvelope
     * @var int
     */
    public $idEnvelope;
    /**
     * Constructor method for getAddressLabel
     * @uses GetAddressLabel::setIdEnvelope()
     * @param int $idEnvelope
     */
    public function __construct($idEnvelope = null)
    {
        $this
            ->setIdEnvelope($idEnvelope);
    }
    /**
     * Get idEnvelope value
     * @return int|null
     */
    public function getIdEnvelope()
    {
        return $this->idEnvelope;
    }
    /**
     * Set idEnvelope value
     * @param int $idEnvelope
     * @return GetAddressLabel
     */
    public function setIdEnvelope($idEnvelope = null)
    {
        $this->idEnvelope = $idEnvelope;
        return $this;
    }
}
