<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for UploadDocument StructType
 * Meta informations extracted from the WSDL
 * - nillable: true
 * - type: tns:UploadDocument
 * @subpackage Structs
 */
class UploadDocument extends AbstractStructBase
{
    /**
     * The Category
     * Meta informations extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $Category;
    /**
     * The Code
     * Meta informations extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var string
     */
    public $Code;
    /**
     * The Content
     * Meta informations extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var string
     */
    public $Content;
    /**
     * The Description
     * Meta informations extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var string
     */
    public $Description;
    /**
     * The IsBioSigned
     * Meta informations extracted from the WSDL
     * - minOccurs: 0
     * @var bool
     */
    public $IsBioSigned;
    /**
     * The SupportingDocumentCode
     * Meta informations extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var string
     */
    public $SupportingDocumentCode;
    /**
     * The Guid
     * Meta informations extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var string
     */
    public $Guid;
    /**
     * Constructor method for UploadDocument
     * @uses UploadDocument::setCategory()
     * @uses UploadDocument::setCode()
     * @uses UploadDocument::setContent()
     * @uses UploadDocument::setDescription()
     * @uses UploadDocument::setIsBioSigned()
     * @uses UploadDocument::setSupportingDocumentCode()
     * @uses UploadDocument::setGuid()
     * @param string $category
     * @param string $code
     * @param string $content
     * @param string $description
     * @param bool $isBioSigned
     * @param string $supportingDocumentCode
     * @param string $guid
     */
    public function __construct($category = null, $code = null, $content = null, $description = null, $isBioSigned = null, $supportingDocumentCode = null, $guid = null)
    {
        $this
            -&gt;setCategory($category)
            -&gt;setCode($code)
            -&gt;setContent($content)
            -&gt;setDescription($description)
            -&gt;setIsBioSigned($isBioSigned)
            -&gt;setSupportingDocumentCode($supportingDocumentCode)
            -&gt;setGuid($guid);
    }
    /**
     * Get Category value
     * @return string|null
     */
    public function getCategory()
    {
        return $this-&gt;Category;
    }
    /**
     * Set Category value
     * @uses DocumentCategoryEnum::valueIsValid()
     * @uses DocumentCategoryEnum::getValidValues()
     * @throws \InvalidArgumentException
     * @param string $category
     * @return UploadDocument
     */
    public function setCategory($category = null)
    {
        $this-&gt;Category = $category;
        return $this;
    }
    /**
     * Get Code 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 getCode()
    {
        return isset($this-&gt;Code) ? $this-&gt;Code : null;
    }
    /**
     * Set Code 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 $code
     * @return UploadDocument
     */
    public function setCode($code = null)
    {
        if (is_null($code) || (is_array($code) &amp;&amp; empty($code))) {
            unset($this-&gt;Code);
        } else {
            $this-&gt;Code = $code;
        }
        return $this;
    }
    /**
     * Get Content 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 getContent()
    {
        return isset($this-&gt;Content) ? $this-&gt;Content : null;
    }
    /**
     * Set Content 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 $content
     * @return UploadDocument
     */
    public function setContent($content = null)
    {
        if (is_null($content) || (is_array($content) &amp;&amp; empty($content))) {
            unset($this-&gt;Content);
        } else {
            $this-&gt;Content = $content;
        }
        return $this;
    }
    /**
     * Get Description 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 getDescription()
    {
        return isset($this-&gt;Description) ? $this-&gt;Description : null;
    }
    /**
     * Set Description 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 $description
     * @return UploadDocument
     */
    public function setDescription($description = null)
    {
        if (is_null($description) || (is_array($description) &amp;&amp; empty($description))) {
            unset($this-&gt;Description);
        } else {
            $this-&gt;Description = $description;
        }
        return $this;
    }
    /**
     * Get IsBioSigned value
     * @return bool|null
     */
    public function getIsBioSigned()
    {
        return $this-&gt;IsBioSigned;
    }
    /**
     * Set IsBioSigned value
     * @param bool $isBioSigned
     * @return UploadDocument
     */
    public function setIsBioSigned($isBioSigned = null)
    {
        $this-&gt;IsBioSigned = $isBioSigned;
        return $this;
    }
    /**
     * Get SupportingDocumentCode 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 getSupportingDocumentCode()
    {
        return isset($this-&gt;SupportingDocumentCode) ? $this-&gt;SupportingDocumentCode : null;
    }
    /**
     * Set SupportingDocumentCode 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 $supportingDocumentCode
     * @return UploadDocument
     */
    public function setSupportingDocumentCode($supportingDocumentCode = null)
    {
        if (is_null($supportingDocumentCode) || (is_array($supportingDocumentCode) &amp;&amp; empty($supportingDocumentCode))) {
            unset($this-&gt;SupportingDocumentCode);
        } else {
            $this-&gt;SupportingDocumentCode = $supportingDocumentCode;
        }
        return $this;
    }
    /**
     * Get Guid 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 getGuid()
    {
        return isset($this-&gt;Guid) ? $this-&gt;Guid : null;
    }
    /**
     * Set Guid 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 $guid
     * @return UploadDocument
     */
    public function setGuid($guid = null)
    {
        if (is_null($guid) || (is_array($guid) &amp;&amp; empty($guid))) {
            unset($this-&gt;Guid);
        } else {
            $this-&gt;Guid = $guid;
        }
        return $this;
    }
    /**
     * Method called when an object has been exported with var_export() functions
     * It allows to return an object instantiated with the values
     * @see AbstractStructBase::__set_state()
     * @uses AbstractStructBase::__set_state()
     * @param array $array the exported values
     * @return UploadDocument
     */
    public static function __set_state(array $array)
    {
        return parent::__set_state($array);
    }
    /**
     * Method returning the class name
     * @return string __CLASS__
     */
    public function __toString()
    {
        return __CLASS__;
    }
}
</pre></body></html>