<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 IsCertification StructType
 * @subpackage Structs
 */
class IsCertification extends AbstractStructBase
{
    /**
     * The inUserId
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $inUserId;
    /**
     * The inCertId
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $inCertId;
    /**
     * Constructor method for IsCertification
     * @uses IsCertification::setInUserId()
     * @uses IsCertification::setInCertId()
     * @param string $inUserId
     * @param string $inCertId
     */
    public function __construct($inUserId = null, $inCertId = null)
    {
        $this
            -&gt;setInUserId($inUserId)
            -&gt;setInCertId($inCertId);
    }
    /**
     * Get inUserId value
     * @return string|null
     */
    public function getInUserId()
    {
        return $this-&gt;inUserId;
    }
    /**
     * Set inUserId value
     * @param string $inUserId
     * @return IsCertification
     */
    public function setInUserId($inUserId = null)
    {
        // validation for constraint: string
        if (!is_null($inUserId) &amp;&amp; !is_string($inUserId)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($inUserId)), __LINE__);
        }
        $this-&gt;inUserId = $inUserId;
        return $this;
    }
    /**
     * Get inCertId value
     * @return string|null
     */
    public function getInCertId()
    {
        return $this-&gt;inCertId;
    }
    /**
     * Set inCertId value
     * @param string $inCertId
     * @return IsCertification
     */
    public function setInCertId($inCertId = null)
    {
        // validation for constraint: string
        if (!is_null($inCertId) &amp;&amp; !is_string($inCertId)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($inCertId)), __LINE__);
        }
        $this-&gt;inCertId = $inCertId;
        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 IsCertification
     */
    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>