/*
* Hotdata API
*
* Powerful data platform API for datasets, queries, and analytics.
*
* The version of the OpenAPI document: 1.0.0
* Contact: developers@hotdata.dev
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// UpdateSandboxRequest : Partial update — only the provided fields are changed.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UpdateSandboxRequest {
#[serde(rename = "name", skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[serde(rename = "markdown", skip_serializing_if = "Option::is_none")]
pub markdown: Option<String>,
}
impl UpdateSandboxRequest {
/// Partial update — only the provided fields are changed.
pub fn new() -> UpdateSandboxRequest {
UpdateSandboxRequest {
name: None,
markdown: None,
}
}
}