Class: Discorb::ThreadChannel::Member
- Inherits:
 - 
      DiscordModel
      
        
- Object
 - DiscordModel
 - Discorb::ThreadChannel::Member
 
 
- Defined in:
 - lib/discorb/channel.rb
 
Instance Attribute Summary collapse
- 
  
    
      #joined_at -> Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
Returns the value of attribute joined_at.
 
Instance Method Summary collapse
- #id -> Object
 - 
  
    
      #initialize(cilent, data) -> Member 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Member.
 - #inspect -> Object
 - #member -> Object
 - #thread -> Object
 - #user -> Object
 
Methods inherited from DiscordModel
Constructor Details
Instance Attribute Details
#joined_at -> Object (readonly)
Returns the value of attribute joined_at.
      998 999 1000  | 
    
      # File 'lib/discorb/channel.rb', line 998 def joined_at @joined_at end  | 
  
Instance Method Details
#id -> Object
      1015 1016 1017  | 
    
      # File 'lib/discorb/channel.rb', line 1015 def id @user_id end  | 
  
#inspect -> Object
      1023 1024 1025  | 
    
      # File 'lib/discorb/channel.rb', line 1023 def inspect "#<#{self.class} id=#{@id.inspect}>" end  | 
  
#member -> Object
      1011 1012 1013  | 
    
      # File 'lib/discorb/channel.rb', line 1011 def member thread && thread.members[@user_id] end  | 
  
#thread -> Object
      1007 1008 1009  | 
    
      # File 'lib/discorb/channel.rb', line 1007 def thread @client.channels[@thread_id] end  | 
  
#user -> Object
      1019 1020 1021  | 
    
      # File 'lib/discorb/channel.rb', line 1019 def user @cilent.users[@user_id] end  |