Skip to main content

windmill_api/models/
data_table_settings_datatables_value_forked_from.rs

1/*
2 * Windmill API
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: 1.684.1
7 * Contact: contact@windmill.dev
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// DataTableSettingsDatatablesValueForkedFrom : Fork origin info with schema snapshot
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct DataTableSettingsDatatablesValueForkedFrom {
17    /// Schema snapshot at fork time
18    #[serde(rename = "schema", skip_serializing_if = "Option::is_none")]
19    pub schema: Option<std::collections::HashMap<String, serde_json::Value>>,
20}
21
22impl DataTableSettingsDatatablesValueForkedFrom {
23    /// Fork origin info with schema snapshot
24    pub fn new() -> DataTableSettingsDatatablesValueForkedFrom {
25        DataTableSettingsDatatablesValueForkedFrom {
26            schema: None,
27        }
28    }
29}
30