Documentation

use crate::types::*;
use crate::errors::*;
use uuid::Uuid;




use std::fmt::Debug;
use serde::de::{Deserialize, Deserializer};



/// TRAIT | Describes a statistical graph
pub trait TDStatisticalGraph: Debug + RObject {}

/// Describes a statistical graph
#[derive(Debug, Clone, Serialize)]
#[serde(untagged)]
pub enum StatisticalGraph {
  #[doc(hidden)] _Default(()),
  /// Loads an asynchronous or a zoomed in statistical graph
  GetStatisticalGraph(GetStatisticalGraph),
  /// The graph data to be asynchronously loaded through getStatisticalGraph
  Async(StatisticalGraphAsync),
  /// A graph data
  Data(StatisticalGraphData),
  /// An error message to be shown to the user instead of the graph
  Error(StatisticalGraphError),

}

impl Default for StatisticalGraph {
  fn default() -> Self { StatisticalGraph::_Default(()) }
}

impl<'de> Deserialize<'de> for StatisticalGraph {
  fn deserialize<D>(deserializer: D) -> Result<StatisticalGraph, D::Error> where D: Deserializer<'de> {
    use serde::de::Error;
    rtd_enum_deserialize!(
      StatisticalGraph,
      (getStatisticalGraph, GetStatisticalGraph);
      (statisticalGraphAsync, Async);
      (statisticalGraphData, Data);
      (statisticalGraphError, Error);

    )(deserializer)
  }
}

impl RObject for StatisticalGraph {
  #[doc(hidden)] fn td_name(&self) -> &'static str {
    match self {
      StatisticalGraph::GetStatisticalGraph(t) => t.td_name(),
      StatisticalGraph::Async(t) => t.td_name(),
      StatisticalGraph::Data(t) => t.td_name(),
      StatisticalGraph::Error(t) => t.td_name(),

      _ => "-1",
    }
  }
  #[doc(hidden)] fn extra(&self) -> Option<String> {
    match self {
      StatisticalGraph::GetStatisticalGraph(t) => t.extra(),
      StatisticalGraph::Async(t) => t.extra(),
      StatisticalGraph::Data(t) => t.extra(),
      StatisticalGraph::Error(t) => t.extra(),

      _ => None,
    }
  }
  fn to_json(&self) -> RTDResult<String> { Ok(serde_json::to_string(self)?) }
}

impl StatisticalGraph {
  pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> { Ok(serde_json::from_str(json.as_ref())?) }
  #[doc(hidden)] pub fn _is_default(&self) -> bool { if let StatisticalGraph::_Default(_) = self { true } else { false } }

  pub fn is_get_statistical_graph(&self) -> bool { if let StatisticalGraph::GetStatisticalGraph(_) = self { true } else { false } }
  pub fn is_async(&self) -> bool { if let StatisticalGraph::Async(_) = self { true } else { false } }
  pub fn is_data(&self) -> bool { if let StatisticalGraph::Data(_) = self { true } else { false } }
  pub fn is_error(&self) -> bool { if let StatisticalGraph::Error(_) = self { true } else { false } }

  pub fn on_get_statistical_graph<F: FnOnce(&GetStatisticalGraph)>(&self, fnc: F) -> &Self { if let StatisticalGraph::GetStatisticalGraph(t) = self { fnc(t) }; self }
  pub fn on_async<F: FnOnce(&StatisticalGraphAsync)>(&self, fnc: F) -> &Self { if let StatisticalGraph::Async(t) = self { fnc(t) }; self }
  pub fn on_data<F: FnOnce(&StatisticalGraphData)>(&self, fnc: F) -> &Self { if let StatisticalGraph::Data(t) = self { fnc(t) }; self }
  pub fn on_error<F: FnOnce(&StatisticalGraphError)>(&self, fnc: F) -> &Self { if let StatisticalGraph::Error(t) = self { fnc(t) }; self }

  pub fn as_get_statistical_graph(&self) -> Option<&GetStatisticalGraph> { if let StatisticalGraph::GetStatisticalGraph(t) = self { return Some(t) } None }
  pub fn as_async(&self) -> Option<&StatisticalGraphAsync> { if let StatisticalGraph::Async(t) = self { return Some(t) } None }
  pub fn as_data(&self) -> Option<&StatisticalGraphData> { if let StatisticalGraph::Data(t) = self { return Some(t) } None }
  pub fn as_error(&self) -> Option<&StatisticalGraphError> { if let StatisticalGraph::Error(t) = self { return Some(t) } None }



  pub fn get_statistical_graph<T: AsRef<GetStatisticalGraph>>(t: T) -> Self { StatisticalGraph::GetStatisticalGraph(t.as_ref().clone()) }

  pub fn async_<T: AsRef<StatisticalGraphAsync>>(t: T) -> Self { StatisticalGraph::Async(t.as_ref().clone()) }

  pub fn data<T: AsRef<StatisticalGraphData>>(t: T) -> Self { StatisticalGraph::Data(t.as_ref().clone()) }

  pub fn error<T: AsRef<StatisticalGraphError>>(t: T) -> Self { StatisticalGraph::Error(t.as_ref().clone()) }

}

impl AsRef<StatisticalGraph> for StatisticalGraph {
  fn as_ref(&self) -> &StatisticalGraph { self }
}







/// The graph data to be asynchronously loaded through getStatisticalGraph
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct StatisticalGraphAsync {
  #[doc(hidden)]
  #[serde(rename(serialize = "@type", deserialize = "@type"))]
  td_name: String,
  #[doc(hidden)]
  #[serde(rename(serialize = "@extra", deserialize = "@extra"))]
  extra: Option<String>,
  /// The token to use for data loading
  token: String,
  
}

impl RObject for StatisticalGraphAsync {
  #[doc(hidden)] fn td_name(&self) -> &'static str { "statisticalGraphAsync" }
  #[doc(hidden)] fn extra(&self) -> Option<String> { self.extra.clone() }
  fn to_json(&self) -> RTDResult<String> { Ok(serde_json::to_string(self)?) }
}


impl TDStatisticalGraph for StatisticalGraphAsync {}



impl StatisticalGraphAsync {
  pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> { Ok(serde_json::from_str(json.as_ref())?) }
  pub fn builder() -> RTDStatisticalGraphAsyncBuilder {
    let mut inner = StatisticalGraphAsync::default();
    inner.td_name = "statisticalGraphAsync".to_string();
    inner.extra = Some(Uuid::new_v4().to_string());
    RTDStatisticalGraphAsyncBuilder { inner }
  }

  pub fn token(&self) -> &String { &self.token }

}

#[doc(hidden)]
pub struct RTDStatisticalGraphAsyncBuilder {
  inner: StatisticalGraphAsync
}

impl RTDStatisticalGraphAsyncBuilder {
  pub fn build(&self) -> StatisticalGraphAsync { self.inner.clone() }

   
  pub fn token<T: AsRef<str>>(&mut self, token: T) -> &mut Self {
    self.inner.token = token.as_ref().to_string();
    self
  }

}

impl AsRef<StatisticalGraphAsync> for StatisticalGraphAsync {
  fn as_ref(&self) -> &StatisticalGraphAsync { self }
}

impl AsRef<StatisticalGraphAsync> for RTDStatisticalGraphAsyncBuilder {
  fn as_ref(&self) -> &StatisticalGraphAsync { &self.inner }
}







/// A graph data
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct StatisticalGraphData {
  #[doc(hidden)]
  #[serde(rename(serialize = "@type", deserialize = "@type"))]
  td_name: String,
  #[doc(hidden)]
  #[serde(rename(serialize = "@extra", deserialize = "@extra"))]
  extra: Option<String>,
  /// Graph data in JSON format
  json_data: String,
  /// If non-empty, a token which can be used to receive a zoomed in graph
  zoom_token: String,
  
}

impl RObject for StatisticalGraphData {
  #[doc(hidden)] fn td_name(&self) -> &'static str { "statisticalGraphData" }
  #[doc(hidden)] fn extra(&self) -> Option<String> { self.extra.clone() }
  fn to_json(&self) -> RTDResult<String> { Ok(serde_json::to_string(self)?) }
}


impl TDStatisticalGraph for StatisticalGraphData {}



impl StatisticalGraphData {
  pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> { Ok(serde_json::from_str(json.as_ref())?) }
  pub fn builder() -> RTDStatisticalGraphDataBuilder {
    let mut inner = StatisticalGraphData::default();
    inner.td_name = "statisticalGraphData".to_string();
    inner.extra = Some(Uuid::new_v4().to_string());
    RTDStatisticalGraphDataBuilder { inner }
  }

  pub fn json_data(&self) -> &String { &self.json_data }

  pub fn zoom_token(&self) -> &String { &self.zoom_token }

}

#[doc(hidden)]
pub struct RTDStatisticalGraphDataBuilder {
  inner: StatisticalGraphData
}

impl RTDStatisticalGraphDataBuilder {
  pub fn build(&self) -> StatisticalGraphData { self.inner.clone() }

   
  pub fn json_data<T: AsRef<str>>(&mut self, json_data: T) -> &mut Self {
    self.inner.json_data = json_data.as_ref().to_string();
    self
  }

   
  pub fn zoom_token<T: AsRef<str>>(&mut self, zoom_token: T) -> &mut Self {
    self.inner.zoom_token = zoom_token.as_ref().to_string();
    self
  }

}

impl AsRef<StatisticalGraphData> for StatisticalGraphData {
  fn as_ref(&self) -> &StatisticalGraphData { self }
}

impl AsRef<StatisticalGraphData> for RTDStatisticalGraphDataBuilder {
  fn as_ref(&self) -> &StatisticalGraphData { &self.inner }
}







/// An error message to be shown to the user instead of the graph
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct StatisticalGraphError {
  #[doc(hidden)]
  #[serde(rename(serialize = "@type", deserialize = "@type"))]
  td_name: String,
  #[doc(hidden)]
  #[serde(rename(serialize = "@extra", deserialize = "@extra"))]
  extra: Option<String>,
  /// The error message
  error_message: String,
  
}

impl RObject for StatisticalGraphError {
  #[doc(hidden)] fn td_name(&self) -> &'static str { "statisticalGraphError" }
  #[doc(hidden)] fn extra(&self) -> Option<String> { self.extra.clone() }
  fn to_json(&self) -> RTDResult<String> { Ok(serde_json::to_string(self)?) }
}


impl TDStatisticalGraph for StatisticalGraphError {}



impl StatisticalGraphError {
  pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> { Ok(serde_json::from_str(json.as_ref())?) }
  pub fn builder() -> RTDStatisticalGraphErrorBuilder {
    let mut inner = StatisticalGraphError::default();
    inner.td_name = "statisticalGraphError".to_string();
    inner.extra = Some(Uuid::new_v4().to_string());
    RTDStatisticalGraphErrorBuilder { inner }
  }

  pub fn error_message(&self) -> &String { &self.error_message }

}

#[doc(hidden)]
pub struct RTDStatisticalGraphErrorBuilder {
  inner: StatisticalGraphError
}

impl RTDStatisticalGraphErrorBuilder {
  pub fn build(&self) -> StatisticalGraphError { self.inner.clone() }

   
  pub fn error_message<T: AsRef<str>>(&mut self, error_message: T) -> &mut Self {
    self.inner.error_message = error_message.as_ref().to_string();
    self
  }

}

impl AsRef<StatisticalGraphError> for StatisticalGraphError {
  fn as_ref(&self) -> &StatisticalGraphError { self }
}

impl AsRef<StatisticalGraphError> for RTDStatisticalGraphErrorBuilder {
  fn as_ref(&self) -> &StatisticalGraphError { &self.inner }
}