![]() 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/wyomind/msicustomattributes/Api/Data/ |
<?php /** * Copyright © 2020 Wyomind. All rights reserved. * See LICENSE.txt for license details. */ declare(strict_types=1); namespace Wyomind\MsiCustomAttributes\Api\Data; /** * Interface AttributeValuesInterface * @package Wyomind\MsiCustomAttributes\Api\Data */ interface CustomAttributeInterface { /** * */ const ATTRIBUTE_ID = "attribute_id"; /** * */ const CODE = "code"; /** * */ const LABEL = "label"; /** * */ const TYPE = "type"; /** * */ const SORT_ORDER = "sort_order"; /** * */ const OPTION_VALUES = "option_values"; /** * @return int */ public function getAttributeId(): ?int; /** * @param int $attributeId */ public function setAttributeId(int $attributeId): void; /** * @return string */ public function getCode(): string; /** * @param string $sourceCode */ public function setCode(string $sourceCode): void; /** * @return string */ public function getLabel(): string; /** * @param int $value */ public function setLabel(int $value): void; /** * @return string */ public function getType(): string; /** * @param string $type */ public function setType(string $type): void; /** * @return int */ public function getSortOrder(): int; /** * @param int $sortOrder */ public function setSortOrder(int $sortOrder): void; /** * @return string */ public function getOptionValues(): ?string; /** * @param string $optionValues */ public function setOptionValues(string $optionValues): void; }