* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ class Attribute { /** * @var string */ private $key; /** * @var mixed */ private $value; /** * @return string */ public function getKey() { return $this->key; } /** * @param string $key * @return void */ public function setKey($key) { $this->key = $key; } /** * @return mixed */ public function getValue() { return $this->value; } /** * @param mixed $value * @return void */ public function satValue($value) { $this->value = $value; } }