Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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