![]() 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/Model/ |
<?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\Model; use Webkul\PrivateShop\Api\Data\EmailDataInterface; class EmailData extends \Magento\Framework\DataObject implements EmailDataInterface { /** * @inheritDoc */ public function getGroupId() { return $this->getData(self::GROUP_ID); } /** * @inheritDoc */ public function setGroupId($groupId) { $this->setData(self::GROUP_ID, $groupId); return $this; } /** * @inheritDoc */ public function getSubject() { return $this->getData(self::SUBJECT); } /** * @inheritDoc */ public function setSubject($subject) { $this->setData(self::SUBJECT, $subject); return $this; } /** * @inheritdoc */ public function getContent() { return $this->getData(self::CONTENT); } /** * @inheritdoc */ public function setContent($content) { $this->setData(self::CONTENT, $content); return $this; } }