mistral-openapi-client 0.1.0

Our Chat Completion and Embeddings APIs specification. Create your account on [La Plateforme](https://console.mistral.ai) to get access and read the [docs](https://docs.mistral.ai) to learn how to use it.
Documentation
/*
 * Mistral AI API
 *
 * Our Chat Completion and Embeddings APIs specification. Create your account on [La Plateforme](https://console.mistral.ai) to get access and read the [docs](https://docs.mistral.ai) to learn how to use it.
 *
 * The version of the OpenAPI document: 1.0.0
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ConnectorMcpUpdate {
    #[serde(rename = "name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub name: Option<Option<String>>,
    #[serde(rename = "description", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub description: Option<Option<String>>,
    #[serde(rename = "icon_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub icon_url: Option<Option<String>>,
    #[serde(rename = "system_prompt", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub system_prompt: Option<Option<String>>,
    #[serde(rename = "connection_config", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub connection_config: Option<Option<std::collections::HashMap<String, serde_json::Value>>>,
    #[serde(rename = "connection_secrets", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub connection_secrets: Option<Option<std::collections::HashMap<String, serde_json::Value>>>,
    #[serde(rename = "server", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub server: Option<Option<String>>,
    #[serde(rename = "headers", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub headers: Option<Option<std::collections::HashMap<String, serde_json::Value>>>,
    #[serde(rename = "auth_data", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub auth_data: Option<Option<Box<models::AuthData>>>,
}

impl ConnectorMcpUpdate {
    pub fn new() -> ConnectorMcpUpdate {
        ConnectorMcpUpdate {
            name: None,
            description: None,
            icon_url: None,
            system_prompt: None,
            connection_config: None,
            connection_secrets: None,
            server: None,
            headers: None,
            auth_data: None,
        }
    }
}