Class: Discorb::Gateway::TypingStartEvent
- Inherits:
 - 
      GatewayEvent
      
        
- Object
 - GatewayEvent
 - Discorb::Gateway::TypingStartEvent
 
 
- Defined in:
 - lib/discorb/gateway.rb
 
Overview
Represents a TYPING_START event.
Instance Attribute Summary collapse
- #channel -> nil, Discorb::Channel readonly
 - #fired_by -> nil, ... (also: #from) readonly
 - #guild -> nil, Discorb::Guild readonly
 - #member -> nil, Discorb::Member readonly
 - #user -> nil, Discorb::User readonly
 - 
  
    
      #user_id -> Discorb::Snowflake 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The ID of the channel the user is typing in.
 
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.rb', line 372
     | 
  
#fired_by -> nil, ... (readonly) Also known as: from
    Note:
    
  
  This method returns an object from client cache. it will return nil if the object is not in cache.
| 
       | 
    
      # File 'lib/discorb/gateway.rb', line 372
     | 
  
#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.rb', line 372
     | 
  
#member -> nil, Discorb::Member (readonly)
    Note:
    
  
  This method returns an object from client cache. it will return nil if the object is not in cache.
      370 371 372  | 
    
      # File 'lib/discorb/gateway.rb', line 370 def member @member end  | 
  
#user -> nil, Discorb::User (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.rb', line 372
     | 
  
#user_id -> Discorb::Snowflake (readonly)
Returns The ID of the channel the user is typing in.
      367 368 369  | 
    
      # File 'lib/discorb/gateway.rb', line 367 def user_id @user_id end  |