use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct PolarsConnectionSettingsV2200Response {
#[serde(rename = "s3fs_args")]
pub s3fs_args: Box<models::PolarsConnectionSettings200Response>,
#[serde(rename = "storage_options")]
pub storage_options: Box<models::PolarsConnectionSettingsV2200ResponseStorageOptions>,
}
impl PolarsConnectionSettingsV2200Response {
pub fn new(s3fs_args: models::PolarsConnectionSettings200Response, storage_options: models::PolarsConnectionSettingsV2200ResponseStorageOptions) -> PolarsConnectionSettingsV2200Response {
PolarsConnectionSettingsV2200Response {
s3fs_args: Box::new(s3fs_args),
storage_options: Box::new(storage_options),
}
}
}