*
*
Count: int
*
*
*/
class MarketplaceWebService_Model_GetReportCountResult extends MarketplaceWebService_Model
{
/**
* Construct new MarketplaceWebService_Model_GetReportCountResult
*
* @param mixed $data DOMElement or Associative Array to construct from.
*
* Valid properties:
*
*/
public function __construct($data = null)
{
$this->fields = array (
'Count' => array('FieldValue' => null, 'FieldType' => 'int'),
);
parent::__construct($data);
}
/**
* Gets the value of the Count property.
*
* @return int Count
*/
public function getCount()
{
return $this->fields['Count']['FieldValue'];
}
/**
* Sets the value of the Count property.
*
* @param int Count
* @return this instance
*/
public function setCount($value)
{
$this->fields['Count']['FieldValue'] = $value;
return $this;
}
/**
* Sets the value of the Count and returns this instance
*
* @param int $value Count
* @return MarketplaceWebService_Model_GetReportCountResult instance
*/
public function withCount($value)
{
$this->setCount($value);
return $this;
}
/**
* Checks if Count is set
*
* @return bool true if Count is set
*/
public function isSetCount()
{
return !is_null($this->fields['Count']['FieldValue']);
}
}