Rev 1847 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
<?php
declare(strict_types=1);
namespace LeadersLinked\Model;
class Topic
{
const TYPE_HPTG = 'hptg';
const TYPE_HPTGF = 'hptgf';
const TYPE_MYT = 'myt';
const TYPE_DC = 'dc';
const STATUS_ACTIVE = 'a';
const STATUS_DELETE = 'd';
const STATUS_INACTIVE = 'i';
/**
*
* @var int
*/
public $id;
/**
*
* @var string
*/
public $uuid;
/**
*
* @var int
*/
public $title;
/**
*
* @var int
*/
public $high_performance_group_id;
/**
*
* @var string
*/
public $description;
/**
*
* @var string
*/
public $type;
/**
*
* @var string
*/
public $status;
/**
*
* @var string
*/
public $added_on;
/**
*
* @var string
*/
public $updated_on;
}