*/ final class IndexResponse implements ApiResponse { /** * @var string[] */ private $items; /** * @var int */ private $totalCount; /** * @var string[] */ private $assignableToPools; private function __construct() { } public static function create(array $data) { $model = new self(); $model->items = $data['items']; $model->totalCount = $data['total_count'] ?? 0; $model->assignableToPools = $data['assignable_to_pools']; return $model; } /** * @return string[] */ public function getItems(): array { return $this->items; } /** * @return string[] */ public function getAssignableToPools(): array { return $this->assignableToPools; } public function getTotalCount(): int { return $this->totalCount; } }