* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ class Value { /** * @var float */ private $value; /** * @var string */ private $unit; /** * @return float */ public function getValue() { return $this->value; } /** * @param float $value * @return void */ public function setValue($value) { $this->value = $value; } /** * @return string */ public function getUnit() { return $this->unit; } /** * @param string $unit * @return void */ public function setUnit($unit) { $this->unit = $unit; } }