| 1 | <?php declare(strict_types=1); |
||
| 8 | class BatchStatusResponse extends Response |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var Stat |
||
| 12 | */ |
||
| 13 | protected $stat; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var Details |
||
| 17 | */ |
||
| 18 | protected $details; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var int |
||
| 22 | */ |
||
| 23 | protected $status; |
||
| 24 | |||
| 25 | 1 | public function init() : void |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @return Stat |
||
| 43 | */ |
||
| 44 | 1 | public function getStat(): Stat |
|
| 48 | |||
| 49 | /** |
||
| 50 | * @return Details |
||
| 51 | */ |
||
| 52 | 1 | public function getDetails(): Details |
|
| 56 | |||
| 57 | /** |
||
| 58 | * @return int |
||
| 59 | */ |
||
| 60 | 1 | public function getStatus(): int |
|
| 64 | } |
||
| 65 |