openapi-azure-storage-blob 0.1.1

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
/*
 * Azure Storage Blob service
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 2026-02-06
 *
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

/// StorageServiceStats : Stats for the storage service.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct StorageServiceStats {
    #[serde(rename = "GeoReplication", skip_serializing_if = "Option::is_none")]
    pub geo_replication: Option<Box<models::GeoReplication>>,
}

impl StorageServiceStats {
    /// Stats for the storage service.
    pub fn new() -> StorageServiceStats {
        StorageServiceStats {
            geo_replication: None,
        }
    }
}