#[derive(Serialize, Deserialize, Clone)]
pub struct DMChannelCreateJson {
pub group: bool,
pub name: Option<String>,
}
#[derive(Serialize, Deserialize, Clone)]
pub struct GetSelfDmChannelParams {
pub limit: Option<i64>,
}
#[derive(Serialize, Deserialize, Clone)]
pub struct CreateDmChannelParams {
pub users: String,
}