* *
  • Amount: string
  • *
  • CurrencyCode: string
  • * * */ class OffAmazonPaymentsService_Model_Price extends OffAmazonPaymentsService_Model { /** * Construct new OffAmazonPaymentsService_Model_Price * * @param mixed $data DOMElement or Associative Array to construct from. * * Valid properties: * */ public function __construct($data = null) { $this->_fields = array ( 'Amount' => array('FieldValue' => null, 'FieldType' => 'string'), 'CurrencyCode' => array('FieldValue' => null, 'FieldType' => 'string'), ); parent::__construct($data); } /** * Gets the value of the Amount property. * * @return string Amount */ public function getAmount() { return $this->_fields['Amount']['FieldValue']; } /** * Sets the value of the Amount property. * * @param string Amount * @return this instance */ public function setAmount($value) { $this->_fields['Amount']['FieldValue'] = $value; return $this; } /** * Sets the value of the Amount and returns this instance * * @param string $value Amount * @return OffAmazonPaymentsService_Model_Price instance */ public function withAmount($value) { $this->setAmount($value); return $this; } /** * Checks if Amount is set * * @return bool true if Amount is set */ public function isSetAmount() { return !is_null($this->_fields['Amount']['FieldValue']); } /** * Gets the value of the CurrencyCode property. * * @return string CurrencyCode */ public function getCurrencyCode() { return $this->_fields['CurrencyCode']['FieldValue']; } /** * Sets the value of the CurrencyCode property. * * @param string CurrencyCode * @return this instance */ public function setCurrencyCode($value) { $this->_fields['CurrencyCode']['FieldValue'] = $value; return $this; } /** * Sets the value of the CurrencyCode and returns this instance * * @param string $value CurrencyCode * @return OffAmazonPaymentsService_Model_Price instance */ public function withCurrencyCode($value) { $this->setCurrencyCode($value); return $this; } /** * Checks if CurrencyCode is set * * @return bool true if CurrencyCode is set */ public function isSetCurrencyCode() { return !is_null($this->_fields['CurrencyCode']['FieldValue']); } } ?>