_get('store'); } /** * @param \Magento\Store\Api\Data\StoreInterface $store * @return $this */ public function setStore(\Magento\Store\Api\Data\StoreInterface $store) { $this->setData('store', $store); return $this; } /** * @return boolean|null */ public function getIsCustomer() { return $this->_get('is_customer'); } /** * @param boolean $isCustomer * @return $this */ public function setIsCustomer($isCustomer) { $this->setData('is_customer', $isCustomer); return $this; } /** * @return integer|null */ public function getCustomerGroupId() { return $this->_get('customer_group_id'); } /** * @param integer $customerGroupId * @return $this */ public function setCustomerGroupId($customerGroupId) { $this->setData('customer_group_id', $customerGroupId); return $this; } }