<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 CompetencyRequiredSkillPropertyBase StructType
 * @subpackage Structs
 */
abstract class CompetencyRequiredSkillPropertyBase extends Entity
{
    /**
     * The Id
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $Id;
    /**
     * The CompetencyId
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $CompetencyId;
    /**
     * The Competency
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var Competency
     */
    public $Competency;
    /**
     * 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 PriorityId
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $PriorityId;
    /**
     * The Priority
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var Priority
     */
    public $Priority;
    /**
     * Constructor method for CompetencyRequiredSkillPropertyBase
     * @uses CompetencyRequiredSkillPropertyBase::setId()
     * @uses CompetencyRequiredSkillPropertyBase::setCompetencyId()
     * @uses CompetencyRequiredSkillPropertyBase::setCompetency()
     * @uses CompetencyRequiredSkillPropertyBase::setSkillId()
     * @uses CompetencyRequiredSkillPropertyBase::setSkill()
     * @uses CompetencyRequiredSkillPropertyBase::setProficiencyScaleId()
     * @uses CompetencyRequiredSkillPropertyBase::setProficiencyScale()
     * @uses CompetencyRequiredSkillPropertyBase::setProficiencyValueId()
     * @uses CompetencyRequiredSkillPropertyBase::setProficiencyValue()
     * @uses CompetencyRequiredSkillPropertyBase::setPriorityId()
     * @uses CompetencyRequiredSkillPropertyBase::setPriority()
     * @param string $id
     * @param string $competencyId
     * @param Competency $competency
     * @param string $skillId
     * @param Skill $skill
     * @param string $proficiencyScaleId
     * @param ProficiencyScale $proficiencyScale
     * @param string $proficiencyValueId
     * @param ProficiencyValue $proficiencyValue
     * @param string $priorityId
     * @param Priority $priority
     */
    public function __construct($id = null, $competencyId = null, Competency $competency = null, $skillId = null, Skill $skill = null, $proficiencyScaleId = null, ProficiencyScale $proficiencyScale = null, $proficiencyValueId = null, ProficiencyValue $proficiencyValue = null, $priorityId = null, Priority $priority = null)
    {
        $this
            -&gt;setId($id)
            -&gt;setCompetencyId($competencyId)
            -&gt;setCompetency($competency)
            -&gt;setSkillId($skillId)
            -&gt;setSkill($skill)
            -&gt;setProficiencyScaleId($proficiencyScaleId)
            -&gt;setProficiencyScale($proficiencyScale)
            -&gt;setProficiencyValueId($proficiencyValueId)
            -&gt;setProficiencyValue($proficiencyValue)
            -&gt;setPriorityId($priorityId)
            -&gt;setPriority($priority);
    }
    /**
     * Get Id value
     * @return string|null
     */
    public function getId()
    {
        return $this-&gt;Id;
    }
    /**
     * Set Id value
     * @param string $id
     * @return CompetencyRequiredSkillPropertyBase
     */
    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 CompetencyId value
     * @return string|null
     */
    public function getCompetencyId()
    {
        return $this-&gt;CompetencyId;
    }
    /**
     * Set CompetencyId value
     * @param string $competencyId
     * @return CompetencyRequiredSkillPropertyBase
     */
    public function setCompetencyId($competencyId = null)
    {
        // validation for constraint: string
        if (!is_null($competencyId) &amp;&amp; !is_string($competencyId)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($competencyId)), __LINE__);
        }
        $this-&gt;CompetencyId = $competencyId;
        return $this;
    }
    /**
     * Get Competency value
     * @return Competency|null
     */
    public function getCompetency()
    {
        return $this-&gt;Competency;
    }
    /**
     * Set Competency value
     * @param Competency $competency
     * @return CompetencyRequiredSkillPropertyBase
     */
    public function setCompetency(Competency $competency = null)
    {
        $this-&gt;Competency = $competency;
        return $this;
    }
    /**
     * Get SkillId value
     * @return string|null
     */
    public function getSkillId()
    {
        return $this-&gt;SkillId;
    }
    /**
     * Set SkillId value
     * @param string $skillId
     * @return CompetencyRequiredSkillPropertyBase
     */
    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 CompetencyRequiredSkillPropertyBase
     */
    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 CompetencyRequiredSkillPropertyBase
     */
    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 CompetencyRequiredSkillPropertyBase
     */
    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 CompetencyRequiredSkillPropertyBase
     */
    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 CompetencyRequiredSkillPropertyBase
     */
    public function setProficiencyValue(ProficiencyValue $proficiencyValue = null)
    {
        $this-&gt;ProficiencyValue = $proficiencyValue;
        return $this;
    }
    /**
     * Get PriorityId value
     * @return string|null
     */
    public function getPriorityId()
    {
        return $this-&gt;PriorityId;
    }
    /**
     * Set PriorityId value
     * @param string $priorityId
     * @return CompetencyRequiredSkillPropertyBase
     */
    public function setPriorityId($priorityId = null)
    {
        // validation for constraint: string
        if (!is_null($priorityId) &amp;&amp; !is_string($priorityId)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($priorityId)), __LINE__);
        }
        $this-&gt;PriorityId = $priorityId;
        return $this;
    }
    /**
     * Get Priority value
     * @return Priority|null
     */
    public function getPriority()
    {
        return $this-&gt;Priority;
    }
    /**
     * Set Priority value
     * @param Priority $priority
     * @return CompetencyRequiredSkillPropertyBase
     */
    public function setPriority(Priority $priority = null)
    {
        $this-&gt;Priority = $priority;
        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 CompetencyRequiredSkillPropertyBase
     */
    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>