<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 EvaluationPropertyBase StructType
 * @subpackage Structs
 */
abstract class EvaluationPropertyBase extends Entity
{
    /**
     * The Status
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 1
     * @var NullableInt32
     */
    public $Status;
    /**
     * The Id
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $Id;
    /**
     * The Name
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $Name;
    /**
     * The Description
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $Description;
    /**
     * The Instructions
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $Instructions;
    /**
     * Constructor method for EvaluationPropertyBase
     * @uses EvaluationPropertyBase::setStatus()
     * @uses EvaluationPropertyBase::setId()
     * @uses EvaluationPropertyBase::setName()
     * @uses EvaluationPropertyBase::setDescription()
     * @uses EvaluationPropertyBase::setInstructions()
     * @param NullableInt32 $status
     * @param string $id
     * @param string $name
     * @param string $description
     * @param string $instructions
     */
    public function __construct(NullableInt32 $status = null, $id = null, $name = null, $description = null, $instructions = null)
    {
        $this
            -&gt;setStatus($status)
            -&gt;setId($id)
            -&gt;setName($name)
            -&gt;setDescription($description)
            -&gt;setInstructions($instructions);
    }
    /**
     * Get Status value
     * @return NullableInt32
     */
    public function getStatus()
    {
        return $this-&gt;Status;
    }
    /**
     * Set Status value
     * @param NullableInt32 $status
     * @return EvaluationPropertyBase
     */
    public function setStatus(NullableInt32 $status = null)
    {
        $this-&gt;Status = $status;
        return $this;
    }
    /**
     * Get Id value
     * @return string|null
     */
    public function getId()
    {
        return $this-&gt;Id;
    }
    /**
     * Set Id value
     * @param string $id
     * @return EvaluationPropertyBase
     */
    public function setId($id = null)
    {
        // validation for constraint: string
        if (!is_null($id) &amp;&amp; !is_string($id)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($id)), __LINE__);
        }
        $this-&gt;Id = $id;
        return $this;
    }
    /**
     * Get Name value
     * @return string|null
     */
    public function getName()
    {
        return $this-&gt;Name;
    }
    /**
     * Set Name value
     * @param string $name
     * @return EvaluationPropertyBase
     */
    public function setName($name = null)
    {
        // validation for constraint: string
        if (!is_null($name) &amp;&amp; !is_string($name)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($name)), __LINE__);
        }
        $this-&gt;Name = $name;
        return $this;
    }
    /**
     * Get Description value
     * @return string|null
     */
    public function getDescription()
    {
        return $this-&gt;Description;
    }
    /**
     * Set Description value
     * @param string $description
     * @return EvaluationPropertyBase
     */
    public function setDescription($description = null)
    {
        // validation for constraint: string
        if (!is_null($description) &amp;&amp; !is_string($description)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($description)), __LINE__);
        }
        $this-&gt;Description = $description;
        return $this;
    }
    /**
     * Get Instructions value
     * @return string|null
     */
    public function getInstructions()
    {
        return $this-&gt;Instructions;
    }
    /**
     * Set Instructions value
     * @param string $instructions
     * @return EvaluationPropertyBase
     */
    public function setInstructions($instructions = null)
    {
        // validation for constraint: string
        if (!is_null($instructions) &amp;&amp; !is_string($instructions)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($instructions)), __LINE__);
        }
        $this-&gt;Instructions = $instructions;
        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 EvaluationPropertyBase
     */
    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>