Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4778 | | 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';
1628 nelberth 21
 
1 www 22
    const FILE_TYPE_IMAGE = 'image';
1754 nelberth 23
    const FILE_TYPE_MEETING = 'meeting';
1 www 24
    const FILE_TYPE_VIDEO = 'video';
25
    const FILE_TYPE_DOCUMENT = 'document';
6388 efrain 26
    const FILE_TYPE_FAST_SURVEY = 'fast-survey';
1 www 27
 
28
    const POSTED = 'p';
29
    const SHARED = 's';
30
 
31
 
32
 
33
 
34
    /**
35
     *
36
     * @var int
37
     */
38
    public $id;
39
 
40
 
41
    /**
42
     *
43
     * @var string
44
     */
45
    public $uuid;
46
 
47
    /**
48
     *
49
     * @var int
50
     */
3639 efrain 51
    public $network_id;
52
 
53
    /**
54
     *
55
     * @var int
56
     */
1 www 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
 
6388 efrain 71
 
72
    /**
73
     *
74
     * @var int
75
     */
76
    public $fast_survey_id;
1 www 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
 
4684 efrain 103
 
1711 nelberth 104
 
105
    /**
106
     *
107
     * @var string
108
     */
1 www 109
    public $posted_or_shared;
110
 
111
    /**
112
     *
113
     * @var int
114
     */
115
    public $shared_feed_id;
116
 
117
    /**
118
     *
119
     * @var int
120
     */
121
    public $shared_job_id;
122
 
123
    /**
124
     *
125
     * @var int
126
     */
127
    public $shared_company_id;
128
 
129
    /**
130
     *
131
     * @var int
132
     */
133
    public $shared_group_id;
134
 
135
    /**
136
     *
137
     * @var string
138
     */
139
    public $status;
140
 
141
    /**
142
     *
143
     * @var string
144
     */
145
    public $file_image_preview;
146
 
147
    /**
148
     *
149
     * @var string
150
     */
151
    public $file_type;
152
 
153
    /**
154
     *
155
     * @var string
156
     */
157
    public $file_name;
158
 
159
    /**
160
     *
161
     * @var int
162
     */
163
    public $total_shared;
164
 
4778 efrain 165
 
1 www 166
    /**
4778 efrain 167
     *
168
     * @var int
169
     */
170
    public $total_external_shared;
171
 
172
    /**
1 www 173
     *
174
     * @var int
175
     */
176
    public $total_comments;
1982 eleazar 177
 
178
 
179
    /**
180
     *
1753 nelberth 181
     * @var string
182
     */
1 www 183
    public $added_on;
184
 
185
    /**
186
     *
187
     * @var string
188
     */
189
    public $updated_on;
190
 
424 geraldo 191
    /**
192
     *
193
     * @var string
194
     */
195
    public $delete_on;
1 www 196
 
1711 nelberth 197
 
1 www 198
}