Merge branch 'feature/rest-of-discord-types' into feature/guild-creation-deletion

This commit is contained in:
bitfl0wer 2023-05-14 12:55:39 +02:00
commit 5a41eda295
No known key found for this signature in database
GPG Key ID: 84BBB60DF895ABF2
1 changed files with 0 additions and 18 deletions

View File

@ -845,24 +845,6 @@ pub struct IntegrationAccount {
pub name: String,
}
#[derive(Default, Debug, Deserialize, Serialize, Clone)]
/// See https://discord.com/developers/docs/resources/voice#voice-state-object
pub struct VoiceStateObject {
pub guild_id: Option<String>,
pub channel_id: Option<String>,
pub user_id: String,
pub member: Option<GuildMember>,
pub session_id: String,
pub deaf: bool,
pub mute: bool,
pub self_deaf: bool,
pub self_mute: bool,
pub self_stream: Option<bool>,
pub self_video: bool,
pub suppress: bool,
pub request_to_speak_timestamp: DateTime<Utc>,
}
#[derive(Default, Debug, Deserialize, Serialize, Clone)]
/// See https://discord.com/developers/docs/resources/stage-instance#stage-instance-object
pub struct StageInstance {