Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| 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 Email
8
{
9
    const STATUS_PENDING     = 'p';
10
    const STATUS_COMPLETED   = 'c';
11
    const STATUS_ERROR   = 'e';
12
 
13
    /**
14
     *
15
     * @var int
16
     */
17
    public $id;
18
 
19
    /**
20
     * string
21
     */
22
    public $content;
23
 
24
    /**
25
     * string
26
     */
27
    public $response;
28
 
29
    /**
30
     * string
31
     */
32
    public $status;
33
 
34
    /**
35
     *
36
     * @var int
37
     */
38
    public $tried;
39
 
40
    /**
41
     * string
42
     */
43
    public $added_on;
44
 
45
    /**
46
     * string
47
     */
48
    public $updated_on;
49
}