<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 GetPendingEvaluationsResponse StructType
 * @subpackage Structs
 */
class GetPendingEvaluationsResponse extends AbstractStructBase
{
    /**
     * The GetPendingEvaluationsResult
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var ArrayOfEvaluation
     */
    public $GetPendingEvaluationsResult;
    /**
     * Constructor method for GetPendingEvaluationsResponse
     * @uses GetPendingEvaluationsResponse::setGetPendingEvaluationsResult()
     * @param ArrayOfEvaluation $getPendingEvaluationsResult
     */
    public function __construct(ArrayOfEvaluation $getPendingEvaluationsResult = null)
    {
        $this
            -&gt;setGetPendingEvaluationsResult($getPendingEvaluationsResult);
    }
    /**
     * Get GetPendingEvaluationsResult value
     * @return ArrayOfEvaluation|null
     */
    public function getGetPendingEvaluationsResult()
    {
        return $this-&gt;GetPendingEvaluationsResult;
    }
    /**
     * Set GetPendingEvaluationsResult value
     * @param ArrayOfEvaluation $getPendingEvaluationsResult
     * @return GetPendingEvaluationsResponse
     */
    public function setGetPendingEvaluationsResult(ArrayOfEvaluation $getPendingEvaluationsResult = null)
    {
        $this-&gt;GetPendingEvaluationsResult = $getPendingEvaluationsResult;
        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 GetPendingEvaluationsResponse
     */
    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>