![]() 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/cartforge.co/app/code/Webkul/PrivateShop/Api/Data/ |
<?php /** * Webkul Software * * @category Webkul * @package Webkul_PrivateShop * @author Webkul Software Private Limited * @copyright Webkul Software Private Limited (https://webkul.com) * @license https://store.webkul.com/license.html */ namespace Webkul\PrivateShop\Api\Data; interface PrivateGroupInterface { public const ENTITY_ID = 'entity_id'; public const GROUP_NAME = 'group_name'; public const STATUS = 'status'; /** * Get entity_id * * @return string|null */ public function getId(); /** * Set entity_id * * @param string $privategroupId * @return \Webkul\PrivateShop\Api\Data\PrivateGroupInterface */ public function setId($privategroupId); /** * Get status * * @return int|null */ public function getStatus(); /** * Set status * * @param int $status * @return \Webkul\PrivateShop\Api\Data\PrivateGroupInterface */ public function setStatus($status); /** * Get group_name * * @return string|null */ public function getGroupName(); /** * Set group_name * * @param string $groupName * @return \Webkul\PrivateShop\Api\Data\PrivateGroupInterface */ public function setGroupName($groupName); }