Class: Discordrb::VoiceState

Inherits:
Object
  • Object
show all
Defined in:
lib/discordrb/data.rb

Overview

A voice state represents the state of a member's connection to a voice channel. It includes data like the voice channel the member is connected to and mute/deaf flags.

Instance Attribute Summary collapse

Instance Attribute Details

#deaftrue, false (readonly)



428
429
430
# File 'lib/discordrb/data.rb', line 428

def deaf
  @deaf
end

#mutetrue, false (readonly)



425
426
427
# File 'lib/discordrb/data.rb', line 425

def mute
  @mute
end

#self_deaftrue, false (readonly)



434
435
436
# File 'lib/discordrb/data.rb', line 434

def self_deaf
  @self_deaf
end

#self_mutetrue, false (readonly)



431
432
433
# File 'lib/discordrb/data.rb', line 431

def self_mute
  @self_mute
end

#user_idInteger (readonly)



422
423
424
# File 'lib/discordrb/data.rb', line 422

def user_id
  @user_id
end

#voice_channelChannel (readonly)



437
438
439
# File 'lib/discordrb/data.rb', line 437

def voice_channel
  @voice_channel
end