windmill-api 1.682.0

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
/*
 * Windmill API
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.682.0
 * Contact: contact@windmill.dev
 * Generated by: https://openapi-generator.tech
 */

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),
        }
    }
}