Proyectos de Subversion LeadersLinked - Services

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Model;
6
 
7
class Topic
8
{
9
 
10
    const TYPE_HPTG = 'hptg';
11
    const TYPE_HPTGF = 'hptgf';
12
    const TYPE_MYT = 'myt';
13
    const TYPE_DC = 'dc';
14
 
15
    const STATUS_ACTIVE = 'a';
16
    const STATUS_DELETE = 'd';
17
    const STATUS_INACTIVE = 'i';
18
 
19
 
20
    /**
21
     *
22
     * @var int
23
     */
24
    public $id;
25
 
26
    /**
27
     *
28
     * @var string
29
     */
30
    public $uuid;
31
 
32
    /**
33
     *
34
     * @var int
35
     */
36
    public $title;
37
 
38
    /**
39
     *
40
     * @var int
41
     */
42
    public $high_performance_group_id;
43
 
44
    /**
45
     *
46
     * @var string
47
     */
48
    public $description;
49
 
50
    /**
51
     *
52
     * @var string
53
     */
54
    public $type;
55
 /**
56
     *
57
     * @var string
58
     */
59
    public $status;
60
 
61
    /**
62
     *
63
     * @var string
64
     */
65
    public $added_on;
66
 
67
    /**
68
     *
69
     * @var string
70
     */
71
    public $updated_on;
72
}