xxxxxxxxxx
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for AddUpdateAcquiredSkill StructType
* @subpackage Structs
*/
class AddUpdateAcquiredSkill extends AbstractStructBase
{
/**
* The acqFirstDt
* Meta informations extracted from the WSDL
* - maxOccurs: 1
* - minOccurs: 1
* @var string
*/
public $acqFirstDt;
/**
* The acqLastDt
* Meta informations extracted from the WSDL
* - maxOccurs: 1
* - minOccurs: 1
* @var string
*/
public $acqLastDt;
/**
* The toUsrId
* Meta informations extracted from the WSDL
* - maxOccurs: 1
* - minOccurs: 0
* @var string
*/
public $toUsrId;
/**
* The acquiredSkillId
* Meta informations extracted from the WSDL
* - maxOccurs: 1
* - minOccurs: 0
* @var string
*/
public $acquiredSkillId;
/**
* The profValueId
* Meta informations extracted from the WSDL
* - maxOccurs: 1
* - minOccurs: 0
* @var string
*/
public $profValueId;
/**
* The notes
* Meta informations extracted from the WSDL
* - maxOccurs: 1
* - minOccurs: 0
* @var string
*/
public $notes;
/**
* Constructor method for AddUpdateAcquiredSkill
* @uses AddUpdateAcquiredSkill::setAcqFirstDt()
* @uses AddUpdateAcquiredSkill::setAcqLastDt()
* @uses AddUpdateAcquiredSkill::setToUsrId()
* @uses AddUpdateAcquiredSkill::setAcquiredSkillId()
* @uses AddUpdateAcquiredSkill::setProfValueId()
* @uses AddUpdateAcquiredSkill::setNotes()
* @param string $acqFirstDt
* @param string $acqLastDt
* @param string $toUsrId
* @param string $acquiredSkillId
* @param string $profValueId
* @param string $notes
*/
public function __construct($acqFirstDt = null, $acqLastDt = null, $toUsrId = null, $acquiredSkillId = null, $profValueId = null, $notes = null)
{
$this
->setAcqFirstDt($acqFirstDt)
->setAcqLastDt($acqLastDt)
->setToUsrId($toUsrId)
->setAcquiredSkillId($acquiredSkillId)
->setProfValueId($profValueId)
->setNotes($notes);
}
/**
* Get acqFirstDt value
* @return string
*/
public function getAcqFirstDt()
{
return $this->acqFirstDt;
}
/**
* Set acqFirstDt value
* @param string $acqFirstDt
* @return AddUpdateAcquiredSkill
*/
public function setAcqFirstDt($acqFirstDt = null)
{
// validation for constraint: string
if (!is_null($acqFirstDt) && !is_string($acqFirstDt)) {
throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($acqFirstDt)), __LINE__);
}
$this->acqFirstDt = $acqFirstDt;
return $this;
}
/**
* Get acqLastDt value
* @return string
*/
public function getAcqLastDt()
{
return $this->acqLastDt;
}
/**
* Set acqLastDt value
* @param string $acqLastDt
* @return AddUpdateAcquiredSkill
*/
public function setAcqLastDt($acqLastDt = null)
{
// validation for constraint: string
if (!is_null($acqLastDt) && !is_string($acqLastDt)) {
throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($acqLastDt)), __LINE__);
}
$this->acqLastDt = $acqLastDt;
return $this;
}
/**
* Get toUsrId value
* @return string|null
*/
public function getToUsrId()
{
return $this->toUsrId;
}
/**
* Set toUsrId value
* @param string $toUsrId
* @return AddUpdateAcquiredSkill
*/
public function setToUsrId($toUsrId = null)
{
// validation for constraint: string
if (!is_null($toUsrId) && !is_string($toUsrId)) {
throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($toUsrId)), __LINE__);
}
$this->toUsrId = $toUsrId;
return $this;
}
/**
* Get acquiredSkillId value
* @return string|null
*/
public function getAcquiredSkillId()
{
return $this->acquiredSkillId;
}
/**
* Set acquiredSkillId value
* @param string $acquiredSkillId
* @return AddUpdateAcquiredSkill
*/
public function setAcquiredSkillId($acquiredSkillId = null)
{
// validation for constraint: string
if (!is_null($acquiredSkillId) && !is_string($acquiredSkillId)) {
throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($acquiredSkillId)), __LINE__);
}
$this->acquiredSkillId = $acquiredSkillId;
return $this;
}
/**
* Get profValueId value
* @return string|null
*/
public function getProfValueId()
{
return $this->profValueId;
}
/**
* Set profValueId value
* @param string $profValueId
* @return AddUpdateAcquiredSkill
*/
public function setProfValueId($profValueId = null)
{
// validation for constraint: string
if (!is_null($profValueId) && !is_string($profValueId)) {
throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($profValueId)), __LINE__);
}
$this->profValueId = $profValueId;
return $this;
}
/**
* Get notes value
* @return string|null
*/
public function getNotes()
{
return $this->notes;
}
/**
* Set notes value
* @param string $notes
* @return AddUpdateAcquiredSkill
*/
public function setNotes($notes = null)
{
// validation for constraint: string
if (!is_null($notes) && !is_string($notes)) {
throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($notes)), __LINE__);
}
$this->notes = $notes;
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 AddUpdateAcquiredSkill
*/
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__;
}
}
Don't be shy, don't hesitate to contact us for any subject, we'll be glad to help.
This platform is provided to give developpers and non developpers a way to easily consume SOAP Web Services or share their own SOAP Web Services with extra features powered by the platform.
© 2025 Providr.IO