hotdata 0.1.2

Powerful data platform API for datasets, queries, and analytics.
Documentation
/*
 * 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};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DatasetSourceOneOf3 {
    /// Optional explicit column definitions. Keys are column names, values are type specs.
    #[serde(rename = "columns", skip_serializing_if = "Option::is_none")]
    pub columns: Option<std::collections::HashMap<String, String>>,
    #[serde(rename = "format", skip_serializing_if = "Option::is_none")]
    pub format: Option<String>,
    #[serde(rename = "url")]
    pub url: String,
    #[serde(rename = "type")]
    pub r#type: Type,
}

impl DatasetSourceOneOf3 {
    pub fn new(url: String, r#type: Type) -> DatasetSourceOneOf3 {
        DatasetSourceOneOf3 {
            columns: None,
            format: None,
            url,
            r#type,
        }
    }
}
///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
    #[serde(rename = "url")]
    Url,
}

impl Default for Type {
    fn default() -> Type {
        Self::Url
    }
}