dashboard/utils/discord/objects/voicestate.go
2019-05-25 14:52:33 +01:00

15 lines
193 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
}