BlobQueryArrowOptions
Arrow configuration.  Only valid for  OutputTextConfiguration.
            
                using System.Collections.Generic;
namespace Azure.Storage.Blobs.Models
{
    public class BlobQueryArrowOptions : BlobQueryTextOptions
    {
        public IList<BlobQueryArrowField> Schema { get; set; } = new List<BlobQueryArrowField>();
    }
}