| Current Path : /home/rtorresani/www/vendor/magento/module-catalog/Api/Data/ |
| Current File : //home/rtorresani/www/vendor/magento/module-catalog/Api/Data/CategoryTreeInterface.php |
<?php
/**
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Api\Data;
/**
* @api
* @since 100.0.2
*/
interface CategoryTreeInterface
{
/**
* @return int|null
*/
public function getId();
/**
* @param int $id
* @return $this
*/
public function setId($id);
/**
* Get parent category ID
*
* @return int
*/
public function getParentId();
/**
* Set parent category ID
*
* @param int $parentId
* @return $this
*/
public function setParentId($parentId);
/**
* Get category name
*
* @return string
*/
public function getName();
/**
* Set category name
*
* @param string $name
* @return $this
*/
public function setName($name);
/**
* Check whether category is active
*
* @return bool
* @SuppressWarnings(PHPMD.BooleanGetMethodName)
*/
public function getIsActive();
/**
* Set whether category is active
*
* @param bool $isActive
* @return $this
*/
public function setIsActive($isActive);
/**
* Get category position
*
* @return int
*/
public function getPosition();
/**
* Set category position
*
* @param int $position
* @return $this
*/
public function setPosition($position);
/**
* Get category level
*
* @return int
*/
public function getLevel();
/**
* Set category level
*
* @param int $level
* @return $this
*/
public function setLevel($level);
/**
* Get product count
*
* @return int
*/
public function getProductCount();
/**
* Set product count
*
* @param int $productCount
* @return $this
*/
public function setProductCount($productCount);
/**
* @return \Magento\Catalog\Api\Data\CategoryTreeInterface[]
*/
public function getChildrenData();
/**
* @param \Magento\Catalog\Api\Data\CategoryTreeInterface[] $childrenData
* @return $this
*/
public function setChildrenData(array $childrenData = null);
}