* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ class MonetaryValue { /** * @var float */ private $amount; /** * @var string */ private $currency; /** * @return float */ public function getAmount() { return $this->amount; } /** * @param float $amount * @return void */ public function setAmount($amount) { $this->amount = $amount; } /** * @return string */ public function getCurrency() { return $this->currency; } /** * @param string $currency * @return void */ public function setCurrency($currency) { $this->currency = $currency; } }