<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for receiveDone StructType
 * @subpackage Structs
 */
class ReceiveDone extends AbstractStructBase
{
    /**
     * The fileID
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var string
     */
    public $fileID;
    /**
     * The sessionID
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var string
     */
    public $sessionID;
    /**
     * Constructor method for receiveDone
     * @uses ReceiveDone::setFileID()
     * @uses ReceiveDone::setSessionID()
     * @param string $fileID
     * @param string $sessionID
     */
    public function __construct($fileID = null, $sessionID = null)
    {
        $this
            ->setFileID($fileID)
            ->setSessionID($sessionID);
    }
    /**
     * Get fileID 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 string|null
     */
    public function getFileID()
    {
        return isset($this->fileID) ? $this->fileID : null;
    }
    /**
     * Set fileID 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 string $fileID
     * @return ReceiveDone
     */
    public function setFileID($fileID = null)
    {
        if (is_null($fileID) || (is_array($fileID) && empty($fileID))) {
            unset($this->fileID);
        } else {
            $this->fileID = $fileID;
        }
        return $this;
    }
    /**
     * Get sessionID 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 string|null
     */
    public function getSessionID()
    {
        return isset($this->sessionID) ? $this->sessionID : null;
    }
    /**
     * Set sessionID 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 string $sessionID
     * @return ReceiveDone
     */
    public function setSessionID($sessionID = null)
    {
        if (is_null($sessionID) || (is_array($sessionID) && empty($sessionID))) {
            unset($this->sessionID);
        } else {
            $this->sessionID = $sessionID;
        }
        return $this;
    }
}
