%PDF- %PDF-
Direktori : /home/lightco1/www/plugins/vmpayment/amazon/library/OffAmazonPaymentsNotifications/Model/ |
Current File : /home/lightco1/www/plugins/vmpayment/amazon/library/OffAmazonPaymentsNotifications/Model/Price.php |
<?php /******************************************************************************* * Copyright 2013 Amazon.com, Inc. or its affiliates. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * * You may not use this file except in compliance with the License. * You may obtain a copy of the License at: * http://aws.amazon.com/apache2.0 * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License * for the * specific language governing permissions and limitations under the * License. * ***************************************************************************** */ require_once 'OffAmazonPayments/Model.php'; /** * OffAmazonPaymentsNotifications_Model_Price * * Properties: * <ul> * * <li>Amount: string</li> * <li>CurrencyCode: string</li> * * </ul> */ class OffAmazonPaymentsNotifications_Model_Price extends OffAmazonPayments_Model { /** * Construct new OffAmazonPaymentsNotifications_Model_Price * * @param mixed $data DOMElement or Associative Array to construct from. * * Valid properties: * <ul> * * <li>Amount: string</li> * <li>CurrencyCode: string</li> * * </ul> */ 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 $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_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 $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_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']); } } ?>