*
*
Type: string
* Code: string
* Message: string
* Detail: MarketplaceWebService_Model_Object
*
*
*/
class MarketplaceWebService_Model_Error extends MarketplaceWebService_Model
{
/**
* Construct new MarketplaceWebService_Model_Error
*
* @param mixed $data DOMElement or Associative Array to construct from.
*
* Valid properties:
*
*
* - Type: string
* - Code: string
* - Message: string
* - Detail: MarketplaceWebService_Model_Object
*
*
*/
public function __construct($data = null)
{
$this->fields = array (
'Type' => array('FieldValue' => null, 'FieldType' => 'string'),
'Code' => array('FieldValue' => null, 'FieldType' => 'string'),
'Message' => array('FieldValue' => null, 'FieldType' => 'string'),
'Detail' => array('FieldValue' => null, 'FieldType' => 'string'),
);
parent::__construct($data);
}
/**
* Gets the value of the Type property.
*
* @return string Type
*/
public function getType()
{
return $this->fields['Type']['FieldValue'];
}
/**
* Sets the value of the Type property.
*
* @param string Type
* @return this instance
*/
public function setType($value)
{
$this->fields['Type']['FieldValue'] = $value;
return $this;
}
/**
* Sets the value of the Type and returns this instance
*
* @param string $value Type
* @return MarketplaceWebService_Model_Error instance
*/
public function withType($value)
{
$this->setType($value);
return $this;
}
/**
* Checks if Type is set
*
* @return bool true if Type is set
*/
public function isSetType()
{
return !is_null($this->fields['Type']['FieldValue']);
}
/**
* Gets the value of the Code property.
*
* @return string Code
*/
public function getCode()
{
return $this->fields['Code']['FieldValue'];
}
/**
* Sets the value of the Code property.
*
* @param string Code
* @return this instance
*/
public function setCode($value)
{
$this->fields['Code']['FieldValue'] = $value;
return $this;
}
/**
* Sets the value of the Code and returns this instance
*
* @param string $value Code
* @return MarketplaceWebService_Model_Error instance
*/
public function withCode($value)
{
$this->setCode($value);
return $this;
}
/**
* Checks if Code is set
*
* @return bool true if Code is set
*/
public function isSetCode()
{
return !is_null($this->fields['Code']['FieldValue']);
}
/**
* Gets the value of the Message property.
*
* @return string Message
*/
public function getMessage()
{
return $this->fields['Message']['FieldValue'];
}
/**
* Sets the value of the Message property.
*
* @param string Message
* @return this instance
*/
public function setMessage($value)
{
$this->fields['Message']['FieldValue'] = $value;
return $this;
}
/**
* Sets the value of the Message and returns this instance
*
* @param string $value Message
* @return MarketplaceWebService_Model_Error instance
*/
public function withMessage($value)
{
$this->setMessage($value);
return $this;
}
/**
* Checks if Message is set
*
* @return bool true if Message is set
*/
public function isSetMessage()
{
return !is_null($this->fields['Message']['FieldValue']);
}
/**
* Gets the value of the Detail.
*
* @return Error.Detail Detail
*/
public function getDetail()
{
return $this->fields['Detail']['FieldValue'];
}
/**
* Sets the value of the Detail.
*
* @param Error.Detail Detail
* @return void
*/
public function setDetail($value)
{
$this->fields['Detail']['FieldValue'] = $value;
return;
}
/**
* Sets the value of the Detail and returns this instance
*
* @param Object $value Detail
* @return MarketplaceWebService_Model_Error instance
*/
public function withDetail($value)
{
$this->setDetail($value);
return $this;
}
/**
* Checks if Detail is set
*
* @return bool true if Detail property is set
*/
public function isSetDetail()
{
return !is_null($this->fields['Detail']['FieldValue']);
}
}