<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

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