* *
  • Type: string
  • *
  • Code: string
  • *
  • Message: string
  • *
  • Detail: OffAmazonPaymentsService_Model_Object
  • * * */ class OffAmazonPaymentsService_Model_Error extends OffAmazonPaymentsService_Model { /** * Construct new OffAmazonPaymentsService_Model_Error * * @param mixed $data DOMElement or Associative Array to construct from. * * Valid properties: * */ 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 OffAmazonPaymentsService_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 OffAmazonPaymentsService_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 OffAmazonPaymentsService_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 OffAmazonPaymentsService_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']); } } ?>