/*
* Windmill API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.684.1
* Contact: contact@windmill.dev
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// DataTableSettingsDatatablesValueForkedFrom : Fork origin info with schema snapshot
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DataTableSettingsDatatablesValueForkedFrom {
/// Schema snapshot at fork time
#[serde(rename = "schema", skip_serializing_if = "Option::is_none")]
pub schema: Option<std::collections::HashMap<String, serde_json::Value>>,
}
impl DataTableSettingsDatatablesValueForkedFrom {
/// Fork origin info with schema snapshot
pub fn new() -> DataTableSettingsDatatablesValueForkedFrom {
DataTableSettingsDatatablesValueForkedFrom {
schema: None,
}
}
}