<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 UserAcquiredCertificationPropertyBase StructType
 * @subpackage Structs
 */
abstract class UserAcquiredCertificationPropertyBase extends Entity
{
    /**
     * The Id
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $Id;
    /**
     * The UserId
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $UserId;
    /**
     * The User
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var User
     */
    public $User;
    /**
     * The CertificationId
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $CertificationId;
    /**
     * The Certification
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var Activity
     */
    public $Certification;
    /**
     * Constructor method for UserAcquiredCertificationPropertyBase
     * @uses UserAcquiredCertificationPropertyBase::setId()
     * @uses UserAcquiredCertificationPropertyBase::setUserId()
     * @uses UserAcquiredCertificationPropertyBase::setUser()
     * @uses UserAcquiredCertificationPropertyBase::setCertificationId()
     * @uses UserAcquiredCertificationPropertyBase::setCertification()
     * @param string $id
     * @param string $userId
     * @param User $user
     * @param string $certificationId
     * @param Activity $certification
     */
    public function __construct($id = null, $userId = null, User $user = null, $certificationId = null, Activity $certification = null)
    {
        $this
            -&gt;setId($id)
            -&gt;setUserId($userId)
            -&gt;setUser($user)
            -&gt;setCertificationId($certificationId)
            -&gt;setCertification($certification);
    }
    /**
     * Get Id value
     * @return string|null
     */
    public function getId()
    {
        return $this-&gt;Id;
    }
    /**
     * Set Id value
     * @param string $id
     * @return UserAcquiredCertificationPropertyBase
     */
    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 UserId value
     * @return string|null
     */
    public function getUserId()
    {
        return $this-&gt;UserId;
    }
    /**
     * Set UserId value
     * @param string $userId
     * @return UserAcquiredCertificationPropertyBase
     */
    public function setUserId($userId = null)
    {
        // validation for constraint: string
        if (!is_null($userId) &amp;&amp; !is_string($userId)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($userId)), __LINE__);
        }
        $this-&gt;UserId = $userId;
        return $this;
    }
    /**
     * Get User value
     * @return User|null
     */
    public function getUser()
    {
        return $this-&gt;User;
    }
    /**
     * Set User value
     * @param User $user
     * @return UserAcquiredCertificationPropertyBase
     */
    public function setUser(User $user = null)
    {
        $this-&gt;User = $user;
        return $this;
    }
    /**
     * Get CertificationId value
     * @return string|null
     */
    public function getCertificationId()
    {
        return $this-&gt;CertificationId;
    }
    /**
     * Set CertificationId value
     * @param string $certificationId
     * @return UserAcquiredCertificationPropertyBase
     */
    public function setCertificationId($certificationId = null)
    {
        // validation for constraint: string
        if (!is_null($certificationId) &amp;&amp; !is_string($certificationId)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($certificationId)), __LINE__);
        }
        $this-&gt;CertificationId = $certificationId;
        return $this;
    }
    /**
     * Get Certification value
     * @return Activity|null
     */
    public function getCertification()
    {
        return $this-&gt;Certification;
    }
    /**
     * Set Certification value
     * @param Activity $certification
     * @return UserAcquiredCertificationPropertyBase
     */
    public function setCertification(Activity $certification = null)
    {
        $this-&gt;Certification = $certification;
        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 UserAcquiredCertificationPropertyBase
     */
    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>