* *
  • State: string
  • *
  • LastUpdateTimestamp: string
  • *
  • ReasonCode: string
  • *
  • ReasonDescription: string
  • * * */ class OffAmazonPaymentsService_Model_Status extends OffAmazonPaymentsService_Model { /** * Construct new OffAmazonPaymentsService_Model_Status * * @param mixed $data DOMElement or Associative Array to construct from. * * Valid properties: * */ public function __construct($data = null) { $this->_fields = array( 'State' => array( 'FieldValue' => null, 'FieldType' => 'string' ), 'LastUpdateTimestamp' => array( 'FieldValue' => null, 'FieldType' => 'string' ), 'ReasonCode' => array( 'FieldValue' => null, 'FieldType' => 'string' ), 'ReasonDescription' => array( 'FieldValue' => null, 'FieldType' => 'string' ) ); parent::__construct($data); } /** * Gets the value of the State property. * * @return string State */ public function getState() { return $this->_fields['State']['FieldValue']; } /** * Sets the value of the State property. * * @param string State * @return this instance */ public function setState($value) { $this->_fields['State']['FieldValue'] = $value; return $this; } /** * Sets the value of the State and returns this instance * * @param string $value State * @return OffAmazonPaymentsService_Model_Status instance */ public function withState($value) { $this->setState($value); return $this; } /** * Checks if State is set * * @return bool true if State is set */ public function isSetState() { return !is_null($this->_fields['State']['FieldValue']); } /** * Gets the value of the LastUpdateTimestamp property. * * @return string LastUpdateTimestamp */ public function getLastUpdateTimestamp() { return $this->_fields['LastUpdateTimestamp']['FieldValue']; } /** * Sets the value of the LastUpdateTimestamp property. * * @param string LastUpdateTimestamp * @return this instance */ public function setLastUpdateTimestamp($value) { $this->_fields['LastUpdateTimestamp']['FieldValue'] = $value; return $this; } /** * Sets the value of the LastUpdateTimestamp and returns this instance * * @param string $value LastUpdateTimestamp * @return OffAmazonPaymentsService_Model_Status instance */ public function withLastUpdateTimestamp($value) { $this->setLastUpdateTimestamp($value); return $this; } /** * Checks if LastUpdateTimestamp is set * * @return bool true if LastUpdateTimestamp is set */ public function isSetLastUpdateTimestamp() { return !is_null($this->_fields['LastUpdateTimestamp']['FieldValue']); } /** * Gets the value of the ReasonCode property. * * @return string ReasonCode */ public function getReasonCode() { return $this->_fields['ReasonCode']['FieldValue']; } /** * Sets the value of the ReasonCode property. * * @param string ReasonCode * @return this instance */ public function setReasonCode($value) { $this->_fields['ReasonCode']['FieldValue'] = $value; return $this; } /** * Sets the value of the ReasonCode and returns this instance * * @param string $value ReasonCode * @return OffAmazonPaymentsService_Model_Status instance */ public function withReasonCode($value) { $this->setReasonCode($value); return $this; } /** * Checks if ReasonCode is set * * @return bool true if ReasonCode is set */ public function isSetReasonCode() { return !is_null($this->_fields['ReasonCode']['FieldValue']); } /** * Gets the value of the ReasonDescription property. * * @return string ReasonDescription */ public function getReasonDescription() { return $this->_fields['ReasonDescription']['FieldValue']; } /** * Sets the value of the ReasonDescription property. * * @param string ReasonDescription * @return this instance */ public function setReasonDescription($value) { $this->_fields['ReasonDescription']['FieldValue'] = $value; return $this; } /** * Sets the value of the ReasonDescription and returns this instance * * @param string $value ReasonDescription * @return OffAmazonPaymentsService_Model_Status instance */ public function withReasonDescription($value) { $this->setReasonDescription($value); return $this; } /** * Checks if ReasonDescription is set * * @return bool true if ReasonDescription is set */ public function isSetReasonDescription() { return !is_null($this->_fields['ReasonDescription']['FieldValue']); } }