Isswp101\Persimmon\Elasticsearch\Response::__construct PHP Method

__construct() public method

public __construct ( array $res )
$res array
    public function __construct(array $res)
    {
        $this->index = Arr::get($res, '_index');
        $this->type = Arr::get($res, '_type');
        $this->id = Arr::get($res, '_id');
        $this->source = Arr::get($res, '_source', []);
    }