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};

/// BlockLookupList : The Block lookup list.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct BlockLookupList {
    /// The committed blocks
    #[serde(rename = "Committed", skip_serializing_if = "Option::is_none")]
    pub committed: Option<Vec<String>>,
    /// The uncommitted blocks
    #[serde(rename = "Uncommitted", skip_serializing_if = "Option::is_none")]
    pub uncommitted: Option<Vec<String>>,
    /// The latest blocks
    #[serde(rename = "Latest", skip_serializing_if = "Option::is_none")]
    pub latest: Option<Vec<String>>,
}

impl BlockLookupList {
    /// The Block lookup list.
    pub fn new() -> BlockLookupList {
        BlockLookupList {
            committed: None,
            uncommitted: None,
            latest: None,
        }
    }
}