<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

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