use alloc::{string::String, vec::Vec};
use serde::{Deserialize, Serialize};
pub mod changes;
pub mod get;
#[derive(Clone, Debug, Serialize, Deserialize)]
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
#[serde(rename_all = "camelCase")]
pub struct JmapThread {
pub id: String,
pub email_ids: Vec<String>,
}