BlobServiceStatistics
Stats for the storage service. 
                using Azure.Core;
using System.Xml.Linq;
namespace Azure.Storage.Blobs.Models
{
    [CodeGenModel("StorageServiceStats")]
    public class BlobServiceStatistics
    {
        public BlobGeoReplication GeoReplication { get; }
        internal BlobServiceStatistics()
        {
        }
        internal BlobServiceStatistics(BlobGeoReplication geoReplication)
        {
            GeoReplication = geoReplication;
        }
        internal static BlobServiceStatistics DeserializeBlobServiceStatistics(XElement element)
        {
            BlobGeoReplication geoReplication = null;
            XElement xElement = element.Element("GeoReplication");
            if (xElement != null)
                geoReplication = BlobGeoReplication.DeserializeBlobGeoReplication(xElement);
            return new BlobServiceStatistics(geoReplication);
        }
    }
}