<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

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