* *
  • OutstandingDebt: Amazon_FPS_Model_OutstandingDebtBalance
  • * * */ class Amazon_FPS_Model_GetOutstandingDebtBalanceResult extends Amazon_FPS_Model { /** * Construct new Amazon_FPS_Model_GetOutstandingDebtBalanceResult * * @param mixed $data DOMElement or Associative Array to construct from. * * Valid properties: * */ public function __construct($data = null) { $this->_fields = array ( 'OutstandingDebt' => array('FieldValue' => null, 'FieldType' => 'Amazon_FPS_Model_OutstandingDebtBalance'), ); parent::__construct($data); } /** * Gets the value of the OutstandingDebt. * * @return OutstandingDebtBalance OutstandingDebt */ public function getOutstandingDebt() { return $this->_fields['OutstandingDebt']['FieldValue']; } /** * Sets the value of the OutstandingDebt. * * @param OutstandingDebtBalance OutstandingDebt * @return void */ public function setOutstandingDebt($value) { $this->_fields['OutstandingDebt']['FieldValue'] = $value; return; } /** * Sets the value of the OutstandingDebt and returns this instance * * @param OutstandingDebtBalance $value OutstandingDebt * @return Amazon_FPS_Model_GetOutstandingDebtBalanceResult instance */ public function withOutstandingDebt($value) { $this->setOutstandingDebt($value); return $this; } /** * Checks if OutstandingDebt is set * * @return bool true if OutstandingDebt property is set */ public function isSetOutstandingDebt() { return !is_null($this->_fields['OutstandingDebt']['FieldValue']); } }