* *
  • OutstandingBalance: Amazon_FPS_Model_Amount
  • *
  • PendingOutBalance: Amazon_FPS_Model_Amount
  • * * */ class Amazon_FPS_Model_OutstandingDebtBalance extends Amazon_FPS_Model { /** * Construct new Amazon_FPS_Model_OutstandingDebtBalance * * @param mixed $data DOMElement or Associative Array to construct from. * * Valid properties: * */ public function __construct($data = null) { $this->_fields = array ( 'OutstandingBalance' => array('FieldValue' => null, 'FieldType' => 'Amazon_FPS_Model_Amount'), 'PendingOutBalance' => array('FieldValue' => null, 'FieldType' => 'Amazon_FPS_Model_Amount'), ); parent::__construct($data); } /** * Gets the value of the OutstandingBalance. * * @return Amount OutstandingBalance */ public function getOutstandingBalance() { return $this->_fields['OutstandingBalance']['FieldValue']; } /** * Sets the value of the OutstandingBalance. * * @param Amount OutstandingBalance * @return void */ public function setOutstandingBalance($value) { $this->_fields['OutstandingBalance']['FieldValue'] = $value; return; } /** * Sets the value of the OutstandingBalance and returns this instance * * @param Amount $value OutstandingBalance * @return Amazon_FPS_Model_OutstandingDebtBalance instance */ public function withOutstandingBalance($value) { $this->setOutstandingBalance($value); return $this; } /** * Checks if OutstandingBalance is set * * @return bool true if OutstandingBalance property is set */ public function isSetOutstandingBalance() { return !is_null($this->_fields['OutstandingBalance']['FieldValue']); } /** * Gets the value of the PendingOutBalance. * * @return Amount PendingOutBalance */ public function getPendingOutBalance() { return $this->_fields['PendingOutBalance']['FieldValue']; } /** * Sets the value of the PendingOutBalance. * * @param Amount PendingOutBalance * @return void */ public function setPendingOutBalance($value) { $this->_fields['PendingOutBalance']['FieldValue'] = $value; return; } /** * Sets the value of the PendingOutBalance and returns this instance * * @param Amount $value PendingOutBalance * @return Amazon_FPS_Model_OutstandingDebtBalance instance */ public function withPendingOutBalance($value) { $this->setPendingOutBalance($value); return $this; } /** * Checks if PendingOutBalance is set * * @return bool true if PendingOutBalance property is set */ public function isSetPendingOutBalance() { return !is_null($this->_fields['PendingOutBalance']['FieldValue']); } }