<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

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