/*
* 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};
/// BlobPrefix : Represents a blob prefix.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct BlobPrefix {
#[serde(rename = "Name")]
pub name: Box<models::BlobName>,
}
impl BlobPrefix {
/// Represents a blob prefix.
pub fn new(name: models::BlobName) -> BlobPrefix {
BlobPrefix {
name: Box::new(name),
}
}
}