Documentation

use crate::types::*;
use crate::errors::*;




/// Represents a chat event
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct ChatEvent {
  #[doc(hidden)]
  #[serde(rename(serialize = "@type", deserialize = "@type"))]
  td_name: String,
  /// Chat event identifier
  id: isize,
  /// Point in time (Unix timestamp) when the event happened
  date: i64,
  /// Identifier of the user who performed the action that triggered the event
  user_id: i64,
  /// Action performed by the user
  action: ChatEventAction,
  
}

impl RObject for ChatEvent {
  #[doc(hidden)] fn td_name(&self) -> &'static str { "chatEvent" }
  fn to_json(&self) -> RTDResult<String> { Ok(serde_json::to_string(self)?) }
}



impl ChatEvent {
  pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> { Ok(serde_json::from_str(json.as_ref())?) }
  pub fn builder() -> RTDChatEventBuilder {
    let mut inner = ChatEvent::default();
    inner.td_name = "chatEvent".to_string();
    RTDChatEventBuilder { inner }
  }

  pub fn id(&self) -> isize { self.id }

  pub fn date(&self) -> i64 { self.date }

  pub fn user_id(&self) -> i64 { self.user_id }

  pub fn action(&self) -> &ChatEventAction { &self.action }

}

#[doc(hidden)]
pub struct RTDChatEventBuilder {
  inner: ChatEvent
}

impl RTDChatEventBuilder {
  pub fn build(&self) -> ChatEvent { self.inner.clone() }

   
  pub fn id(&mut self, id: isize) -> &mut Self {
    self.inner.id = id;
    self
  }

   
  pub fn date(&mut self, date: i64) -> &mut Self {
    self.inner.date = date;
    self
  }

   
  pub fn user_id(&mut self, user_id: i64) -> &mut Self {
    self.inner.user_id = user_id;
    self
  }

   
  pub fn action<T: AsRef<ChatEventAction>>(&mut self, action: T) -> &mut Self {
    self.inner.action = action.as_ref().clone();
    self
  }

}

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

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