<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for getEnvelopeListResponse StructType
 * @subpackage Structs
 */
class GetEnvelopeListResponse extends AbstractStructBase
{
    /**
     * The getEnvelopeListResult
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var ArrayOfstring
     */
    public $getEnvelopeListResult;
    /**
     * Constructor method for getEnvelopeListResponse
     * @uses GetEnvelopeListResponse::setGetEnvelopeListResult()
     * @param ArrayOfstring $getEnvelopeListResult
     */
    public function __construct(ArrayOfstring $getEnvelopeListResult = null)
    {
        $this
            ->setGetEnvelopeListResult($getEnvelopeListResult);
    }
    /**
     * Get getEnvelopeListResult value
     * An additional test has been added (isset) before returning the property value as
     * this property may have been unset before, due to the fact that this property is
     * removable from the request (nillable=true+minOccurs=0)
     * @return ArrayOfstring|null
     */
    public function getGetEnvelopeListResult()
    {
        return isset($this->getEnvelopeListResult) ? $this->getEnvelopeListResult : null;
    }
    /**
     * Set getEnvelopeListResult value
     * This property is removable from request (nillable=true+minOccurs=0), therefore
     * if the value assigned to this property is null, it is removed from this object
     * @param ArrayOfstring $getEnvelopeListResult
     * @return GetEnvelopeListResponse
     */
    public function setGetEnvelopeListResult(ArrayOfstring $getEnvelopeListResult = null)
    {
        if (is_null($getEnvelopeListResult) || (is_array($getEnvelopeListResult) && empty($getEnvelopeListResult))) {
            unset($this->getEnvelopeListResult);
        } else {
            $this->getEnvelopeListResult = $getEnvelopeListResult;
        }
        return $this;
    }
}
