getData(self::CODE); } /** * {@inheritdoc} */ public function setCode($code) { return $this->setData(self::CODE, $code); } /** * {@inheritdoc} */ public function getValue() { return $this->getData(self::VALUE); } /** * {@inheritdoc} */ public function setValue($value) { return $this->setData(self::VALUE, $value); } /** * {@inheritdoc} */ public function getTitle() { return $this->getData(self::TITLE); } /** * {@inheritdoc} */ public function setTitle($title = null) { return $this->setData(self::TITLE, $title); } /** * {@inheritdoc} */ public function getArea() { return $this->getData(self::AREA); } /** * {@inheritdoc} */ public function setArea($area = null) { return $this->setData(self::AREA, $area); } /** * {@inheritdoc} */ public function getExtensionAttributes() { return $this->_getExtensionAttributes(); } /** * {@inheritdoc} */ public function setExtensionAttributes( \Magento\Quote\Api\Data\TotalSegmentExtensionInterface $extensionAttributes ) { return $this->_setExtensionAttributes($extensionAttributes); } }