Class: Discordrb::Events::ThreadMembersUpdateEvent

Inherits:
Event
  • Object
show all
Defined in:
lib/discordrb/events/threads.rb

Overview

Raised when members are added or removed from a thread.

Instance Attribute Summary collapse

Attributes inherited from Event

#bot

Instance Attribute Details

#member_countInteger (readonly)

Returns:



71
72
73
# File 'lib/discordrb/events/threads.rb', line 71

def member_count
  @member_count
end

#removed_member_idsArray<Integer> (readonly)

Returns:



68
69
70
# File 'lib/discordrb/events/threads.rb', line 68

def removed_member_ids
  @removed_member_ids
end

#threadChannel (readonly)

Returns:



65
66
67
# File 'lib/discordrb/events/threads.rb', line 65

def thread
  @thread
end