/*
* 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};
/// ArrowConfiguration : Represents the Apache Arrow configuration.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ArrowConfiguration {
/// The Apache Arrow schema
#[serde(rename = "Schema")]
pub schema: Vec<models::ArrowField>,
}
impl ArrowConfiguration {
/// Represents the Apache Arrow configuration.
pub fn new(schema: Vec<models::ArrowField>) -> ArrowConfiguration {
ArrowConfiguration { schema }
}
}