Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1754 | Rev 1919 | 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
     *
177
     * @var int
178
     */
179
    public $high_performance_group_id;
1753 nelberth 180
 
181
    /**
182
     *
183
     * @var string
184
     */
185
    public $link_name;
186
 
187
 
188
    /**
189
     *
190
     * @var string
191
     */
192
    public $link_type;
193
 
194
 
195
    /**
196
     *
197
     * @var string
198
     */
199
    public $time;
200
 
201
 
202
    /**
203
     *
204
     * @var string
205
     */
206
    public $date;
1 www 207
 
424 geraldo 208
 
1 www 209
    /**
210
     *
211
     * @var string
212
     */
213
    public $added_on;
214
 
215
    /**
216
     *
217
     * @var string
218
     */
219
    public $updated_on;
220
 
424 geraldo 221
    /**
222
     *
223
     * @var string
224
     */
225
    public $delete_on;
1 www 226
 
1711 nelberth 227
 
1 www 228
}