Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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