*
*
*
*/
class MarketplaceWebService_Model_GetReportResult extends MarketplaceWebService_Model
{
/**
* Construct new MarketplaceWebService_Model_GetReportResult
*
* @param mixed $data DOMElement or Associative Array to construct from.
*
* Valid properties:
*
*/
public function __construct($data = null)
{
$this->fields = array (
'ContentMd5' => array('FieldValue' => null, 'FieldType' => 'string')
);
parent::__construct($data);
}
public function getContentMd5() {
return $this->fields['ContentMd5']['FieldValue'];
}
public function setContentMd5($value) {
$this->fields['ContentMd5']['FieldValue'] = $value;
}
public function isSetContentMd5() {
return !is_null($this->fields['ContentMd5']['FieldValue']);
}
public function withContentMd5($value) {
$this->setContentMd5($value);
return $this;
}
}