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

/// JsonTextConfiguration : Represents the JSON text configuration.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct JsonTextConfiguration {
    /// The string used to separate records.
    #[serde(rename = "RecordSeparator", skip_serializing_if = "Option::is_none")]
    pub record_separator: Option<String>,
}

impl JsonTextConfiguration {
    /// Represents the JSON text configuration.
    pub fn new() -> JsonTextConfiguration {
        JsonTextConfiguration {
            record_separator: None,
        }
    }
}