| Current Path : /var/www/homesaver/www/bitrix/modules/report/lib/visualconstructor/ |
| Current File : /var/www/homesaver/www/bitrix/modules/report/lib/visualconstructor/analyticboardbatch.php |
<?php
namespace Bitrix\Report\VisualConstructor;
class AnalyticBoardBatch
{
private $title;
private $key;
private $order = 100;
private $group;
/**
* @return mixed
*/
public function getTitle()
{
return $this->title;
}
/**
* @param mixed $title
*/
public function setTitle($title)
{
$this->title = $title;
}
/**
* @return mixed
*/
public function getKey()
{
return $this->key;
}
/**
* @param mixed $key
*/
public function setKey($key)
{
$this->key = $key;
}
/**
* @return mixed
*/
public function getOrder()
{
return $this->order;
}
/**
* @param mixed $order
*/
public function setOrder($order): void
{
$this->order = $order;
}
/**
* @return mixed
*/
public function getGroup()
{
return $this->group;
}
/**
* @param mixed $group
*/
public function setGroup($group): void
{
$this->group = $group;
}
}