use crate::{
helix::{self, Request},
types,
};
use serde_derive::{Deserialize, Serialize};
use std::borrow::Cow;
pub mod get_channel_teams;
pub mod get_teams;
#[derive(PartialEq, Eq, Deserialize, Serialize, Debug, Clone)]
#[cfg_attr(feature = "deny_unknown_fields", serde(deny_unknown_fields))]
#[non_exhaustive]
pub struct TeamInformation {
pub background_image_url: Option<String>,
pub banner: Option<String>,
pub created_at: types::Timestamp,
pub updated_at: types::Timestamp,
pub info: String,
pub thumbnail_url: Option<String>,
pub team_name: String,
pub team_display_name: String,
pub id: types::TeamId,
}