<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for getEArchiveXsltResponse StructType
 * @subpackage Structs
 */
class GetEArchiveXsltResponse extends AbstractStructBase
{
    /**
     * The getEArchiveXsltResult
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var bool
     */
    public $getEArchiveXsltResult;
    /**
     * The document
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var DocumentType
     */
    public $document;
    /**
     * Constructor method for getEArchiveXsltResponse
     * @uses GetEArchiveXsltResponse::setGetEArchiveXsltResult()
     * @uses GetEArchiveXsltResponse::setDocument()
     * @param bool $getEArchiveXsltResult
     * @param DocumentType $document
     */
    public function __construct($getEArchiveXsltResult = null, DocumentType $document = null)
    {
        $this
            ->setGetEArchiveXsltResult($getEArchiveXsltResult)
            ->setDocument($document);
    }
    /**
     * Get getEArchiveXsltResult value
     * @return bool|null
     */
    public function getGetEArchiveXsltResult()
    {
        return $this->getEArchiveXsltResult;
    }
    /**
     * Set getEArchiveXsltResult value
     * @param bool $getEArchiveXsltResult
     * @return GetEArchiveXsltResponse
     */
    public function setGetEArchiveXsltResult($getEArchiveXsltResult = null)
    {
        $this->getEArchiveXsltResult = $getEArchiveXsltResult;
        return $this;
    }
    /**
     * Get document 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 DocumentType|null
     */
    public function getDocument()
    {
        return isset($this->document) ? $this->document : null;
    }
    /**
     * Set document 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 DocumentType $document
     * @return GetEArchiveXsltResponse
     */
    public function setDocument(DocumentType $document = null)
    {
        if (is_null($document) || (is_array($document) && empty($document))) {
            unset($this->document);
        } else {
            $this->document = $document;
        }
        return $this;
    }
}
