*
*
RequestId: string
*
*
*/
class MarketplaceWebService_Model_ResponseMetadata extends MarketplaceWebService_Model
{
/**
* Construct new MarketplaceWebService_Model_ResponseMetadata
*
* @param mixed $data DOMElement or Associative Array to construct from.
*
* Valid properties:
*
*
* - RequestId: string
*
*
*/
public function __construct($data = null)
{
$this->fields = array (
'RequestId' => array('FieldValue' => null, 'FieldType' => 'string'),
);
parent::__construct($data);
}
/**
* 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_ResponseMetadata 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']);
}
}