Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1611 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1603 nelberth 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Model;
6
 
7
class HighPerformanceTeamsGroupsMembers
8
{
9
 
1612 nelberth 10
    const STATUS_ACCEPTED = 'a';
11
    const STATUS_ADDED_BY_ADMIN = 'aa';
12
    const STATUS_REJECTED = 'r';
13
    const STATUS_CANCELLED = 'c';
14
    const STATUS_INVITED = 'i';
15
 
16
    const TYPE_CREATOR = 'c';
17
    const TYPE_ADMINISTRATOR = 'a';
18
    const TYPE_MODERATOR = 'm';
19
    const TYPE_USER = 'u';
20
 
1603 nelberth 21
    /**
22
     *
23
     * @var int
24
     */
25
    public $id;
26
 
27
 
28
  /**
29
     *
30
     * @var int
31
     */
32
    public $group_id;
33
 
34
    /**
35
     *
36
     * @var int
37
     */
38
    public $user_id;
39
 
1611 nelberth 40
     /**
41
     *
42
     * @var string
43
     */
44
    public $type;
45
 
1603 nelberth 46
    /**
47
     *
48
     * @var string
49
     */
50
    public $status;
1611 nelberth 51
       /**
52
     *
53
     * @var string
54
     */
55
    public $joined_on;
1603 nelberth 56
 
57
    /**
58
     *
59
     * @var string
60
     */
61
    public $added_on;
62
 
63
    /**
64
     *
65
     * @var string
66
     */
67
    public $updated_on;
68
}