_get(self::KEY_STORE_ID); } /** * Set store id * * @param int $storeId * @return $this */ public function setStoreId($storeId) { return $this->setData(self::KEY_STORE_ID, $storeId); } /** * Return the label for the store * * @return string */ public function getStoreLabel() { return $this->_get(self::KEY_STORE_LABEL); } /** * Set the label for the store * * @param string $storeLabel * @return $this */ public function setStoreLabel($storeLabel) { return $this->setData(self::KEY_STORE_LABEL, $storeLabel); } /** * {@inheritdoc} * * @return \Magento\SalesRule\Api\Data\RuleLabelExtensionInterface|null */ public function getExtensionAttributes() { return $this->_getExtensionAttributes(); } /** * {@inheritdoc} * * @param \Magento\SalesRule\Api\Data\RuleLabelExtensionInterface $extensionAttributes * @return $this */ public function setExtensionAttributes( \Magento\SalesRule\Api\Data\RuleLabelExtensionInterface $extensionAttributes ) { return $this->_setExtensionAttributes($extensionAttributes); } }