2020-04-02 20:53:11 +01:00

15 lines
228 B
Go

package objects
type VoiceState struct {
GuildId string
ChannelId string
UserId string
Member Member
SessionId string
Deaf bool
Mute bool
SelfDeaf bool
SelfMute bool
Suppress bool
}