*
*
Error: MarketplaceWebService_Model_Error
* RequestId: string
*
*
*/
class MarketplaceWebService_Model_ErrorResponse extends MarketplaceWebService_Model
{
/**
* Construct new MarketplaceWebService_Model_ErrorResponse
*
* @param mixed $data DOMElement or Associative Array to construct from.
*
* Valid properties:
*
*
* - Error: MarketplaceWebService_Model_Error
* - RequestId: string
*
*
*/
public function __construct($data = null)
{
$this->fields = array (
'Error' => array('FieldValue' => array(), 'FieldType' => 'MarketplaceWebService_Model_Error'),
'RequestId' => array('FieldValue' => null, 'FieldType' => 'string'),
);
parent::__construct($data);
}
/**
* Construct MarketplaceWebService_Model_ErrorResponse from XML string
*
* @param string $xml XML string to construct from
* @return MarketplaceWebService_Model_ErrorResponse
*/
public static function fromXML($xml)
{
$dom = new DOMDocument();
$dom->loadXML($xml);
$xpath = new DOMXPath($dom);
$xpath->registerNamespace('a', 'http://mws.amazonaws.com/doc/2009-01-01/');
$response = $xpath->query('//a:ErrorResponse');
if ($response->length == 1) {
return new MarketplaceWebService_Model_ErrorResponse(($response->item(0)));
} else {
throw new Exception ("Unable to construct MarketplaceWebService_Model_ErrorResponse from provided XML.
Make sure that ErrorResponse is a root element");
}
}
/**
* Gets the value of the Error.
*
* @return array of Error Error
*/
public function getError()
{
return $this->fields['Error']['FieldValue'];
}
/**
* Sets the value of the Error.
*
* @param mixed Error or an array of Error Error
* @return this instance
*/
public function setError($error)
{
if (!$this->_isNumericArray($error)) {
$error = array ($error);
}
$this->fields['Error']['FieldValue'] = $error;
return $this;
}
/**
* Sets single or multiple values of Error list via variable number of arguments.
* For example, to set the list with two elements, simply pass two values as arguments to this function
* withError($error1, $error2)
*
* @param Error $errorArgs one or more Error
* @return MarketplaceWebService_Model_ErrorResponse instance
*/
public function withError($errorArgs)
{
foreach (func_get_args() as $error) {
$this->fields['Error']['FieldValue'][] = $error;
}
return $this;
}
/**
* Checks if Error list is non-empty
*
* @return bool true if Error list is non-empty
*/
public function isSetError()
{
return count ($this->fields['Error']['FieldValue']) > 0;
}
/**
* Gets the value of the RequestId property.
*
* @return string RequestId
*/
public function getRequestId()
{
return $this->fields['RequestId']['FieldValue'];
}
/**
* Sets the value of the RequestId property.
*
* @param string RequestId
* @return this instance
*/
public function setRequestId($value)
{
$this->fields['RequestId']['FieldValue'] = $value;
return $this;
}
/**
* Sets the value of the RequestId and returns this instance
*
* @param string $value RequestId
* @return MarketplaceWebService_Model_ErrorResponse instance
*/
public function withRequestId($value)
{
$this->setRequestId($value);
return $this;
}
/**
* Checks if RequestId is set
*
* @return bool true if RequestId is set
*/
public function isSetRequestId()
{
return !is_null($this->fields['RequestId']['FieldValue']);
}
/**
* XML Representation for this object
*
* @return string XML for this object
*/
public function toXML()
{
$xml = "";
$xml .= "";
$xml .= $this->_toXMLFragment();
$xml .= "";
return $xml;
}
private $_responseHeaderMetadata = null;
public function getResponseHeaderMetadata() {
return $this->_responseHeaderMetadata;
}
public function setResponseHeaderMetadata($responseHeaderMetadata) {
return $this->_responseHeaderMetadata = $responseHeaderMetadata;
}
}