* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link http://www.temando.com/ */ class Capability extends DataObject implements CapabilityInterface { /** * Get attribute code * * @return string */ public function getCapabilityId() { return $this->getData(CapabilityInterface::CAPABILITY_ID); } /** * Get attribute value * * @return mixed[] */ public function getProperties() { return $this->getData(CapabilityInterface::PROPERTIES); } }