1 | <?php |
||
7 | class ImageUploadResult |
||
8 | { |
||
9 | /** |
||
10 | * @var UUID |
||
11 | */ |
||
12 | private $imageId; |
||
13 | |||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | private $jobId; |
||
18 | |||
19 | /** |
||
20 | * @param UUID $imageId |
||
21 | * @param string $jobId |
||
22 | */ |
||
23 | public function __construct( |
||
30 | |||
31 | /** |
||
32 | * @return UUID |
||
33 | */ |
||
34 | public function getImageId() |
||
38 | |||
39 | /** |
||
40 | * @return string |
||
41 | */ |
||
42 | public function getJobId() |
||
46 | } |
||
47 |