1 | <?php |
||
16 | final class ValidationStatusResponse implements ApiResponse |
||
17 | { |
||
18 | private $createdAt; |
||
19 | private $downloadUrl; |
||
20 | private $id; |
||
21 | private $quantity; |
||
22 | private $recordsProcessed; |
||
23 | private $status; |
||
24 | private $summary; |
||
25 | |||
26 | 1 | public static function create(array $data): self |
|
40 | |||
41 | 1 | private function __construct() |
|
44 | |||
45 | 1 | public function getCreatedAt(): ?string |
|
49 | |||
50 | 1 | public function getDownloadUrl(): ValidationStatusDownloadUrl |
|
54 | |||
55 | 1 | public function getId(): ?string |
|
59 | |||
60 | 1 | public function getQuantity(): ?int |
|
64 | |||
65 | 1 | public function getRecordsProcessed(): ?int |
|
69 | |||
70 | 1 | public function getStatus(): ?string |
|
74 | |||
75 | 1 | public function getSummary(): ValidationStatusSummary |
|
79 | } |
||
80 |