File size: 711 Bytes
07c3cdd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php

class EntityAppSolrQueue extends EntityBase
{
    public $appUid = '';
    public $appChangeDate = '';
    public $appChangeTrace = '';
    public $appUpdated = 0;

    private function __construct()
    {
    }

    public static function createEmpty()
    {
        $obj = new EntityAppSolrQueue();
        return $obj;
    }

    public static function createForRequest($data)
    {
        $obj = new EntityAppSolrQueue();

        $obj->initializeObject($data);

        $requiredFields = array(
            "appUid",
            "appChangeDate",
            "appChangeTrace",
            "appUpdated"
        );

        $obj->validateRequiredFields($requiredFields);

        return $obj;
    }
}