Class: Discordrb::Events::ThreadMembersUpdateEvent
- Defined in:
- lib/discordrb/events/threads.rb
Overview
Raised when members are added or removed from a thread.
Instance Attribute Summary collapse
- #member_count ⇒ Integer readonly
- #removed_member_ids ⇒ Array<Integer> readonly
- #thread ⇒ Channel readonly
Attributes inherited from Event
Instance Attribute Details
#member_count ⇒ Integer (readonly)
71 72 73 |
# File 'lib/discordrb/events/threads.rb', line 71 def member_count @member_count end |
#removed_member_ids ⇒ Array<Integer> (readonly)
68 69 70 |
# File 'lib/discordrb/events/threads.rb', line 68 def removed_member_ids @removed_member_ids end |
#thread ⇒ Channel (readonly)
65 66 67 |
# File 'lib/discordrb/events/threads.rb', line 65 def thread @thread end |