diff --git a/src/api/types.rs b/src/api/types.rs index ac542a1..a11f7df 100644 --- a/src/api/types.rs +++ b/src/api/types.rs @@ -679,3 +679,12 @@ struct RoleSubscriptionData { total_months_subscribed: u32, is_renewal: bool, } + +#[derive(Debug, Deserialize, Serialize)] +struct TypingStartEvent { + channel_id: String, + guild_id: Option, + user_id: String, + timestamp: i64, + member: Option, +}