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