* *
  • CurrencyCode: string
  • *
  • Amount: string
  • * * */ class OffAmazonPaymentsNotifications_Model_OrderTotal extends OffAmazonPayments_Model { /** * Construct new OffAmazonPaymentsNotifications_Model_OrderTotal * * @param mixed $data DOMElement or Associative Array to construct from. * * Valid properties: * */ public function __construct($data = null) { $this->fields = array ( 'CurrencyCode' => array('FieldValue' => null, 'FieldType' => 'string'), 'Amount' => array('FieldValue' => null, 'FieldType' => 'string'), ); parent::__construct($data); } /** * 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 $value 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 OffAmazonPaymentsNotifications_Model_OrderTotal 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']); } /** * 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 $value 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 OffAmazonPaymentsNotifications_Model_OrderTotal 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']); } }