Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 2245 | Rev 2280 | 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
1987 eleazar 23
    // My Trainer
24
    const TYPE_MYT_QUESTION = 'mytq';
25
    const TYPE_MYT_ANSWER = 'myta';
2257 eleazar 26
    const TYPE_DC = 'dc';
1628 nelberth 27
 
1711 nelberth 28
    const PRIORITY_URGENT='u';
29
    const PRIORITY_NORMAL='n';
30
 
31
 
1 www 32
    const FILE_TYPE_IMAGE = 'image';
1754 nelberth 33
    const FILE_TYPE_MEETING = 'meeting';
1 www 34
    const FILE_TYPE_VIDEO = 'video';
35
    const FILE_TYPE_DOCUMENT = 'document';
36
 
37
 
38
    const POSTED = 'p';
39
    const SHARED = 's';
40
 
41
 
42
 
43
 
44
    /**
45
     *
46
     * @var int
47
     */
48
    public $id;
49
 
50
 
51
    /**
52
     *
53
     * @var string
54
     */
55
    public $uuid;
56
 
57
    /**
58
     *
59
     * @var int
60
     */
61
    public $user_id;
62
 
63
    /**
64
     *
65
     * @var int
66
     */
67
    public $company_id;
68
 
69
    /**
70
     *
71
     * @var int
72
     */
73
    public $group_id;
74
 
75
    /**
76
     *
77
     * @var int
78
     */
79
    public $topic_id;
80
 
81
    /**
82
     *
83
     * @var string
84
     */
85
    public $shared_with;
86
 
87
    /**
88
     *
89
     * @var string
90
     */
91
    public $title;
92
 
93
 
94
    /**
95
     *
96
     * @var string
97
     */
98
    public $description;
99
 
100
    /**
101
     *
102
     * @var string
103
     */
104
    public $type;
105
 
106
    /**
107
     *
108
     * @var string
109
     */
1711 nelberth 110
    public $priority;
111
 
112
    /**
113
     *
114
     * @var string
115
     */
1 www 116
    public $posted_or_shared;
117
 
118
    /**
119
     *
120
     * @var int
121
     */
122
    public $shared_feed_id;
123
 
124
    /**
125
     *
126
     * @var int
127
     */
128
    public $shared_job_id;
129
 
130
    /**
131
     *
132
     * @var int
133
     */
134
    public $shared_company_id;
135
 
136
    /**
137
     *
138
     * @var int
139
     */
140
    public $shared_group_id;
141
 
142
    /**
143
     *
144
     * @var string
145
     */
146
    public $status;
147
 
148
    /**
149
     *
150
     * @var string
151
     */
152
    public $file_image_preview;
153
 
154
    /**
155
     *
156
     * @var string
157
     */
158
    public $file_type;
159
 
160
    /**
161
     *
162
     * @var string
163
     */
164
    public $file_name;
165
 
166
    /**
167
     *
168
     * @var int
169
     */
170
    public $total_shared;
171
 
172
    /**
173
     *
174
     * @var int
175
     */
176
    public $total_comments;
1630 nelberth 177
 
178
 
1982 eleazar 179
    /**
1630 nelberth 180
     *
181
     * @var int
182
     */
183
    public $high_performance_group_id;
1982 eleazar 184
 
1753 nelberth 185
    /**
186
     *
1982 eleazar 187
     * @var int
188
     */
189
    public $myt_id;
190
 
191
    /**
192
     *
193
     * @var int
194
     */
195
    public $related_feed;
196
 
197
    /**
198
     *
1753 nelberth 199
     * @var string
200
     */
201
    public $link_name;
202
 
203
 
204
    /**
205
     *
206
     * @var string
207
     */
208
    public $link_type;
209
 
210
 
211
    /**
212
     *
213
     * @var string
214
     */
215
    public $time;
216
 
217
 
218
    /**
219
     *
220
     * @var string
221
     */
222
    public $date;
1 www 223
 
424 geraldo 224
 
1 www 225
    /**
226
     *
227
     * @var string
228
     */
229
    public $added_on;
230
 
231
    /**
232
     *
233
     * @var string
234
     */
235
    public $updated_on;
236
 
424 geraldo 237
    /**
238
     *
239
     * @var string
240
     */
241
    public $delete_on;
1 www 242
 
1711 nelberth 243
 
1 www 244
}