Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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