![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-eav/Api/Data/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api\Data; use Magento\Framework\Api\ExtensibleDataInterface; /** * Interface AttributeGroupInterface * @api * @since 100.0.2 */ interface AttributeGroupInterface extends ExtensibleDataInterface { const GROUP_ID = 'attribute_group_id'; const GROUP_NAME = 'attribute_group_name'; const ATTRIBUTE_SET_ID = 'attribute_set_id'; /** * Retrieve id * * @return string|null */ public function getAttributeGroupId(); /** * Set id * * @param string $attributeGroupId * @return $this */ public function setAttributeGroupId($attributeGroupId); /** * Retrieve name * * @return string|null */ public function getAttributeGroupName(); /** * Set name * * @param string $attributeGroupName * @return $this */ public function setAttributeGroupName($attributeGroupName); /** * Retrieve attribute set id * * @return int|null */ public function getAttributeSetId(); /** * Set attribute set id * * @param int $attributeSetId * @return $this */ public function setAttributeSetId($attributeSetId); /** * Retrieve existing extension attributes object. * * @return \Magento\Eav\Api\Data\AttributeGroupExtensionInterface|null */ public function getExtensionAttributes(); /** * Set an extension attributes object. * * @param \Magento\Eav\Api\Data\AttributeGroupExtensionInterface $extensionAttributes * @return $this */ public function setExtensionAttributes( \Magento\Eav\Api\Data\AttributeGroupExtensionInterface $extensionAttributes ); }