![]() 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/magento/module-catalog/Api/Data/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api\Data; /** * Represents Data Object for a Product Frontend Action like Product View or Comparison * * @api * @since 102.0.0 */ interface ProductFrontendActionInterface { /** * Gets Identifier of a Product Frontend Action * * @return int * @since 102.0.0 */ public function getActionId(); /** * Sets Identifier of a Product Frontend Action * * @param int $actionId * @return void * @since 102.0.0 */ public function setActionId($actionId); /** * Gets Identifier of Visitor who performs a Product Frontend Action * * @return int * @since 102.0.0 */ public function getVisitorId(); /** * Sets Identifier of Visitor who performs a Product Frontend Action * * @param int $visitorId * @return void * @since 102.0.0 */ public function setVisitorId($visitorId); /** * Gets Identifier of Customer who performs a Product Frontend Action * * @return int * @since 102.0.0 */ public function getCustomerId(); /** * Sets Identifier of Customer who performs Product Frontend Action * * @param int $customerId * @return void * @since 102.0.0 */ public function setCustomerId($customerId); /** * Gets Identifier of Product a Product Frontend Action is performed on * * @return int * @since 102.0.0 */ public function getProductId(); /** * Sets Identifier of Product a Product Frontend Action is performed on * * @param int $productId * @return void * @since 102.0.0 */ public function setProductId($productId); /** * Gets Identifier of Type of a Product Frontend Action * * @return string * @since 102.0.0 */ public function getTypeId(); /** * Sets Identifier of Type of a Product Frontend Action * * @param string $typeId * @return void * @since 102.0.0 */ public function setTypeId($typeId); /** * Gets JS timestamp of a Product Frontend Action (in microseconds) * * @return int * @since 102.0.0 */ public function getAddedAt(); /** * Sets JS timestamp of a Product Frontend Action (in microseconds) * * @param int $addedAt * @return void * @since 102.0.0 */ public function setAddedAt($addedAt); }