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