123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?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
- );
- }
|