Class: Discorb::Gateway::TypingStartEvent
- Inherits:
-
GatewayEvent
- Object
- GatewayEvent
- Discorb::Gateway::TypingStartEvent
- Defined in:
- lib/discorb/gateway_events.rb
Overview
Represents a TYPING_START
event.
Instance Attribute Summary collapse
- #channel -> nil, Discorb::Channel readonly
- #guild -> nil, Discorb::Guild readonly
- #user -> nil, ... (also: #member) readonly
-
#user_id -> Discorb::Snowflake
readonly
The ID of the channel the user is typing in.
Method Summary
Methods inherited from GatewayEvent
Instance Attribute Details
#channel -> nil, Discorb::Channel (readonly)
Note:
This method returns an object from client cache. it will return nil
if the object is not in cache.
|
# File 'lib/discorb/gateway_events.rb', line 443
|
#guild -> nil, Discorb::Guild (readonly)
Note:
This method returns an object from client cache. it will return nil
if the object is not in cache.
|
# File 'lib/discorb/gateway_events.rb', line 443
|
#user -> nil, ... (readonly) Also known as: member
Note:
This method returns an object from client cache. it will return nil
if the object is not in cache.
|
# File 'lib/discorb/gateway_events.rb', line 443
|
#user_id -> Discorb::Snowflake (readonly)
Returns The ID of the channel the user is typing in.
441 442 443 |
# File 'lib/discorb/gateway_events.rb', line 441 def user_id @user_id end |