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

/// BlobName : Represents a blob name.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct BlobName {
    /// Whether the blob name is encoded.
    #[serde(rename = "Encoded", skip_serializing_if = "Option::is_none")]
    pub encoded: Option<bool>,
    /// The blob name.
    #[serde(rename = "content", skip_serializing_if = "Option::is_none")]
    pub content: Option<String>,
}

impl BlobName {
    /// Represents a blob name.
    pub fn new() -> BlobName {
        BlobName {
            encoded: None,
            content: None,
        }
    }
}