<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 UserAcquiredSkillPropertyBase StructType
 * @subpackage Structs
 */
abstract class UserAcquiredSkillPropertyBase extends Entity
{
    /**
     * The FirstAcquisitionDate
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 1
     * @var string
     */
    public $FirstAcquisitionDate;
    /**
     * The MostRecentAcquisitionDate
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 1
     * @var string
     */
    public $MostRecentAcquisitionDate;
    /**
     * The CertificationNoteDate
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 1
     * @var NullableDateTime
     */
    public $CertificationNoteDate;
    /**
     * 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 SkillId
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $SkillId;
    /**
     * The Skill
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var Skill
     */
    public $Skill;
    /**
     * The ProficiencyScaleId
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $ProficiencyScaleId;
    /**
     * The ProficiencyScale
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var ProficiencyScale
     */
    public $ProficiencyScale;
    /**
     * The ProficiencyValueId
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $ProficiencyValueId;
    /**
     * The ProficiencyValue
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var ProficiencyValue
     */
    public $ProficiencyValue;
    /**
     * The CertificationNote
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $CertificationNote;
    /**
     * Constructor method for UserAcquiredSkillPropertyBase
     * @uses UserAcquiredSkillPropertyBase::setFirstAcquisitionDate()
     * @uses UserAcquiredSkillPropertyBase::setMostRecentAcquisitionDate()
     * @uses UserAcquiredSkillPropertyBase::setCertificationNoteDate()
     * @uses UserAcquiredSkillPropertyBase::setId()
     * @uses UserAcquiredSkillPropertyBase::setUserId()
     * @uses UserAcquiredSkillPropertyBase::setUser()
     * @uses UserAcquiredSkillPropertyBase::setSkillId()
     * @uses UserAcquiredSkillPropertyBase::setSkill()
     * @uses UserAcquiredSkillPropertyBase::setProficiencyScaleId()
     * @uses UserAcquiredSkillPropertyBase::setProficiencyScale()
     * @uses UserAcquiredSkillPropertyBase::setProficiencyValueId()
     * @uses UserAcquiredSkillPropertyBase::setProficiencyValue()
     * @uses UserAcquiredSkillPropertyBase::setCertificationNote()
     * @param string $firstAcquisitionDate
     * @param string $mostRecentAcquisitionDate
     * @param NullableDateTime $certificationNoteDate
     * @param string $id
     * @param string $userId
     * @param User $user
     * @param string $skillId
     * @param Skill $skill
     * @param string $proficiencyScaleId
     * @param ProficiencyScale $proficiencyScale
     * @param string $proficiencyValueId
     * @param ProficiencyValue $proficiencyValue
     * @param string $certificationNote
     */
    public function __construct($firstAcquisitionDate = null, $mostRecentAcquisitionDate = null, NullableDateTime $certificationNoteDate = null, $id = null, $userId = null, User $user = null, $skillId = null, Skill $skill = null, $proficiencyScaleId = null, ProficiencyScale $proficiencyScale = null, $proficiencyValueId = null, ProficiencyValue $proficiencyValue = null, $certificationNote = null)
    {
        $this
            -&gt;setFirstAcquisitionDate($firstAcquisitionDate)
            -&gt;setMostRecentAcquisitionDate($mostRecentAcquisitionDate)
            -&gt;setCertificationNoteDate($certificationNoteDate)
            -&gt;setId($id)
            -&gt;setUserId($userId)
            -&gt;setUser($user)
            -&gt;setSkillId($skillId)
            -&gt;setSkill($skill)
            -&gt;setProficiencyScaleId($proficiencyScaleId)
            -&gt;setProficiencyScale($proficiencyScale)
            -&gt;setProficiencyValueId($proficiencyValueId)
            -&gt;setProficiencyValue($proficiencyValue)
            -&gt;setCertificationNote($certificationNote);
    }
    /**
     * Get FirstAcquisitionDate value
     * @return string
     */
    public function getFirstAcquisitionDate()
    {
        return $this-&gt;FirstAcquisitionDate;
    }
    /**
     * Set FirstAcquisitionDate value
     * @param string $firstAcquisitionDate
     * @return UserAcquiredSkillPropertyBase
     */
    public function setFirstAcquisitionDate($firstAcquisitionDate = null)
    {
        // validation for constraint: string
        if (!is_null($firstAcquisitionDate) &amp;&amp; !is_string($firstAcquisitionDate)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($firstAcquisitionDate)), __LINE__);
        }
        $this-&gt;FirstAcquisitionDate = $firstAcquisitionDate;
        return $this;
    }
    /**
     * Get MostRecentAcquisitionDate value
     * @return string
     */
    public function getMostRecentAcquisitionDate()
    {
        return $this-&gt;MostRecentAcquisitionDate;
    }
    /**
     * Set MostRecentAcquisitionDate value
     * @param string $mostRecentAcquisitionDate
     * @return UserAcquiredSkillPropertyBase
     */
    public function setMostRecentAcquisitionDate($mostRecentAcquisitionDate = null)
    {
        // validation for constraint: string
        if (!is_null($mostRecentAcquisitionDate) &amp;&amp; !is_string($mostRecentAcquisitionDate)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($mostRecentAcquisitionDate)), __LINE__);
        }
        $this-&gt;MostRecentAcquisitionDate = $mostRecentAcquisitionDate;
        return $this;
    }
    /**
     * Get CertificationNoteDate value
     * @return NullableDateTime
     */
    public function getCertificationNoteDate()
    {
        return $this-&gt;CertificationNoteDate;
    }
    /**
     * Set CertificationNoteDate value
     * @param NullableDateTime $certificationNoteDate
     * @return UserAcquiredSkillPropertyBase
     */
    public function setCertificationNoteDate(NullableDateTime $certificationNoteDate = null)
    {
        $this-&gt;CertificationNoteDate = $certificationNoteDate;
        return $this;
    }
    /**
     * Get Id value
     * @return string|null
     */
    public function getId()
    {
        return $this-&gt;Id;
    }
    /**
     * Set Id value
     * @param string $id
     * @return UserAcquiredSkillPropertyBase
     */
    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 UserAcquiredSkillPropertyBase
     */
    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 UserAcquiredSkillPropertyBase
     */
    public function setUser(User $user = null)
    {
        $this-&gt;User = $user;
        return $this;
    }
    /**
     * Get SkillId value
     * @return string|null
     */
    public function getSkillId()
    {
        return $this-&gt;SkillId;
    }
    /**
     * Set SkillId value
     * @param string $skillId
     * @return UserAcquiredSkillPropertyBase
     */
    public function setSkillId($skillId = null)
    {
        // validation for constraint: string
        if (!is_null($skillId) &amp;&amp; !is_string($skillId)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($skillId)), __LINE__);
        }
        $this-&gt;SkillId = $skillId;
        return $this;
    }
    /**
     * Get Skill value
     * @return Skill|null
     */
    public function getSkill()
    {
        return $this-&gt;Skill;
    }
    /**
     * Set Skill value
     * @param Skill $skill
     * @return UserAcquiredSkillPropertyBase
     */
    public function setSkill(Skill $skill = null)
    {
        $this-&gt;Skill = $skill;
        return $this;
    }
    /**
     * Get ProficiencyScaleId value
     * @return string|null
     */
    public function getProficiencyScaleId()
    {
        return $this-&gt;ProficiencyScaleId;
    }
    /**
     * Set ProficiencyScaleId value
     * @param string $proficiencyScaleId
     * @return UserAcquiredSkillPropertyBase
     */
    public function setProficiencyScaleId($proficiencyScaleId = null)
    {
        // validation for constraint: string
        if (!is_null($proficiencyScaleId) &amp;&amp; !is_string($proficiencyScaleId)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($proficiencyScaleId)), __LINE__);
        }
        $this-&gt;ProficiencyScaleId = $proficiencyScaleId;
        return $this;
    }
    /**
     * Get ProficiencyScale value
     * @return ProficiencyScale|null
     */
    public function getProficiencyScale()
    {
        return $this-&gt;ProficiencyScale;
    }
    /**
     * Set ProficiencyScale value
     * @param ProficiencyScale $proficiencyScale
     * @return UserAcquiredSkillPropertyBase
     */
    public function setProficiencyScale(ProficiencyScale $proficiencyScale = null)
    {
        $this-&gt;ProficiencyScale = $proficiencyScale;
        return $this;
    }
    /**
     * Get ProficiencyValueId value
     * @return string|null
     */
    public function getProficiencyValueId()
    {
        return $this-&gt;ProficiencyValueId;
    }
    /**
     * Set ProficiencyValueId value
     * @param string $proficiencyValueId
     * @return UserAcquiredSkillPropertyBase
     */
    public function setProficiencyValueId($proficiencyValueId = null)
    {
        // validation for constraint: string
        if (!is_null($proficiencyValueId) &amp;&amp; !is_string($proficiencyValueId)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($proficiencyValueId)), __LINE__);
        }
        $this-&gt;ProficiencyValueId = $proficiencyValueId;
        return $this;
    }
    /**
     * Get ProficiencyValue value
     * @return ProficiencyValue|null
     */
    public function getProficiencyValue()
    {
        return $this-&gt;ProficiencyValue;
    }
    /**
     * Set ProficiencyValue value
     * @param ProficiencyValue $proficiencyValue
     * @return UserAcquiredSkillPropertyBase
     */
    public function setProficiencyValue(ProficiencyValue $proficiencyValue = null)
    {
        $this-&gt;ProficiencyValue = $proficiencyValue;
        return $this;
    }
    /**
     * Get CertificationNote value
     * @return string|null
     */
    public function getCertificationNote()
    {
        return $this-&gt;CertificationNote;
    }
    /**
     * Set CertificationNote value
     * @param string $certificationNote
     * @return UserAcquiredSkillPropertyBase
     */
    public function setCertificationNote($certificationNote = null)
    {
        // validation for constraint: string
        if (!is_null($certificationNote) &amp;&amp; !is_string($certificationNote)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($certificationNote)), __LINE__);
        }
        $this-&gt;CertificationNote = $certificationNote;
        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 UserAcquiredSkillPropertyBase
     */
    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>