Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1630 | Rev 1753 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Model;
6
 
7
class Feed
8
{
9
    const SHARE_WITH_PUBLIC = 'p';
10
    const SHARE_WITH_CONNECTIONS = 'c';
11
 
12
    const STATUS_PUBLISHED = 'p';
13
    const STATUS_SAVED = 's';
14
    const STATUS_DELETED = 'd';
15
 
16
    const TYPE_UPDATE = 'u';
17
    const TYPE_ARTICLE = 'a';
18
    const TYPE_JOB = 'j';
19
    const TYPE_COMPANY = 'c';
20
    const TYPE_GROUP = 'g';
21
 
1629 nelberth 22
    const TYPE_HPTG = 'hptg'; // High Performance Team Group
1628 nelberth 23
 
1711 nelberth 24
    const PRIORITY_URGENT='u';
25
    const PRIORITY_NORMAL='n';
26
 
27
 
1 www 28
    const FILE_TYPE_IMAGE = 'image';
29
    const FILE_TYPE_VIDEO = 'video';
30
    const FILE_TYPE_DOCUMENT = 'document';
31
 
32
 
33
    const POSTED = 'p';
34
    const SHARED = 's';
35
 
36
 
37
 
38
 
39
    /**
40
     *
41
     * @var int
42
     */
43
    public $id;
44
 
45
 
46
    /**
47
     *
48
     * @var string
49
     */
50
    public $uuid;
51
 
52
    /**
53
     *
54
     * @var int
55
     */
56
    public $user_id;
57
 
58
    /**
59
     *
60
     * @var int
61
     */
62
    public $company_id;
63
 
64
    /**
65
     *
66
     * @var int
67
     */
68
    public $group_id;
69
 
70
    /**
71
     *
72
     * @var int
73
     */
74
    public $topic_id;
75
 
76
    /**
77
     *
78
     * @var string
79
     */
80
    public $shared_with;
81
 
82
    /**
83
     *
84
     * @var string
85
     */
86
    public $title;
87
 
88
 
89
    /**
90
     *
91
     * @var string
92
     */
93
    public $description;
94
 
95
    /**
96
     *
97
     * @var string
98
     */
99
    public $type;
100
 
101
    /**
102
     *
103
     * @var string
104
     */
1711 nelberth 105
    public $priority;
106
 
107
    /**
108
     *
109
     * @var string
110
     */
1 www 111
    public $posted_or_shared;
112
 
113
    /**
114
     *
115
     * @var int
116
     */
117
    public $shared_feed_id;
118
 
119
    /**
120
     *
121
     * @var int
122
     */
123
    public $shared_job_id;
124
 
125
    /**
126
     *
127
     * @var int
128
     */
129
    public $shared_company_id;
130
 
131
    /**
132
     *
133
     * @var int
134
     */
135
    public $shared_group_id;
136
 
137
    /**
138
     *
139
     * @var string
140
     */
141
    public $status;
142
 
143
    /**
144
     *
145
     * @var string
146
     */
147
    public $file_image_preview;
148
 
149
    /**
150
     *
151
     * @var string
152
     */
153
    public $file_type;
154
 
155
    /**
156
     *
157
     * @var string
158
     */
159
    public $file_name;
160
 
161
    /**
162
     *
163
     * @var int
164
     */
165
    public $total_shared;
166
 
167
    /**
168
     *
169
     * @var int
170
     */
171
    public $total_comments;
1630 nelberth 172
 
173
        /**
174
     *
175
     * @var int
176
     */
177
    public $high_performance_group_topic_id;
178
 
179
        /**
180
     *
181
     * @var int
182
     */
183
    public $high_performance_group_id;
1 www 184
 
424 geraldo 185
 
1 www 186
    /**
187
     *
188
     * @var string
189
     */
190
    public $added_on;
191
 
192
    /**
193
     *
194
     * @var string
195
     */
196
    public $updated_on;
197
 
424 geraldo 198
    /**
199
     *
200
     * @var string
201
     */
202
    public $delete_on;
1 www 203
 
1711 nelberth 204
 
1 www 205
}