Estimates of all the fits of a bootstrap run

I have a question on how to view the bootstrap fits and estimates from each fit.
Whether we can get bootstrap mean estimate of parameters in the output table?
It looks like we are getting parameter estimates of our original fit in the bootstrap output table.
Below is the code we are using now
code:

file = infer(fit, Pumas.Bootstrap(samples=1000))

You can extract a Vector with the individual bootstrap fits with file.vcov.fits and you can then extract a vector containing the estimates with something like coef.(file.vcov.fits).