/*
* 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};
/// DatabaseDefaultSchemaDecl : One schema declaration inside the database's default catalog at create time. Mirrors `crate::source::ManagedSchemaDecl`. Tables default to empty so callers can declare just a schema name and add tables later via the managed-tables API on the default connection.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DatabaseDefaultSchemaDecl {
#[serde(rename = "name")]
pub name: String,
#[serde(rename = "tables", skip_serializing_if = "Option::is_none")]
pub tables: Option<Vec<models::DatabaseDefaultTableDecl>>,
}
impl DatabaseDefaultSchemaDecl {
/// One schema declaration inside the database's default catalog at create time. Mirrors `crate::source::ManagedSchemaDecl`. Tables default to empty so callers can declare just a schema name and add tables later via the managed-tables API on the default connection.
pub fn new(name: String) -> DatabaseDefaultSchemaDecl {
DatabaseDefaultSchemaDecl { name, tables: None }
}
}