*
*
TimepointType: string
* DateTime: string
*
*
*/
class FBAInventoryServiceMWS_Model_Timepoint extends FBAInventoryServiceMWS_Model {
public function __construct($data = null)
{
$this->_fields = array (
'TimepointType' => array('FieldValue' => null, 'FieldType' => 'string'),
'DateTime' => array('FieldValue' => null, 'FieldType' => 'string'),
);
parent::__construct($data);
}
/**
* Get the value of the TimepointType property.
*
* @return String TimepointType.
*/
public function getTimepointType()
{
return $this->_fields['TimepointType']['FieldValue'];
}
/**
* Set the value of the TimepointType property.
*
* @param string timepointType
* @return this instance
*/
public function setTimepointType($value)
{
$this->_fields['TimepointType']['FieldValue'] = $value;
return $this;
}
/**
* Check to see if TimepointType is set.
*
* @return true if TimepointType is set.
*/
public function isSetTimepointType()
{
return !is_null($this->_fields['TimepointType']['FieldValue']);
}
/**
* Set the value of TimepointType, return this.
*
* @param timepointType
* The new value to set.
*
* @return This instance.
*/
public function withTimepointType($value)
{
$this->setTimepointType($value);
return $this;
}
/**
* Get the value of the DateTime property.
*
* @return XMLGregorianCalendar DateTime.
*/
public function getDateTime()
{
return $this->_fields['DateTime']['FieldValue'];
}
/**
* Set the value of the DateTime property.
*
* @param string dateTime
* @return this instance
*/
public function setDateTime($value)
{
$this->_fields['DateTime']['FieldValue'] = $value;
return $this;
}
/**
* Check to see if DateTime is set.
*
* @return true if DateTime is set.
*/
public function isSetDateTime()
{
return !is_null($this->_fields['DateTime']['FieldValue']);
}
/**
* Set the value of DateTime, return this.
*
* @param dateTime
* The new value to set.
*
* @return This instance.
*/
public function withDateTime($value)
{
$this->setDateTime($value);
return $this;
}
}