1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Api;
- /**
- * Interface for custom attribute value.
- *
- * @api
- * @since 100.0.2
- */
- interface AttributeInterface
- {
- /**#@+
- * Constant used as key into $_data
- */
- const ATTRIBUTE_CODE = 'attribute_code';
- const VALUE = 'value';
- /**#@-*/
- /**
- * Get attribute code
- *
- * @return string
- */
- public function getAttributeCode();
- /**
- * Set attribute code
- *
- * @param string $attributeCode
- * @return $this
- */
- public function setAttributeCode($attributeCode);
- /**
- * Get attribute value
- *
- * @return mixed
- */
- public function getValue();
- /**
- * Set attribute value
- *
- * @param mixed $value
- * @return $this
- */
- public function setValue($value);
- }
|