Class: Discorb::WelcomeScreen
- Inherits:
 - 
      DiscordModel
      
        
- Object
 - DiscordModel
 - Discorb::WelcomeScreen
 
 
- Defined in:
 - lib/discorb/guild.rb
 
Overview
Represents a welcome screen.
Defined Under Namespace
Classes: Channel
Instance Attribute Summary collapse
- 
  
    
      #channels -> Array<Discorb::WelcomeScreen::Channel> 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The channels to display the welcome screen.
 - 
  
    
      #description -> String 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The description of the welcome screen.
 - 
  
    
      #guild -> Discorb::Guild 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The guild the welcome screen belongs to.
 
Method Summary
Methods inherited from DiscordModel
Instance Attribute Details
#channels -> Array<Discorb::WelcomeScreen::Channel> (readonly)
Returns The channels to display the welcome screen.
      1142 1143 1144  | 
    
      # File 'lib/discorb/guild.rb', line 1142 def channels @channels end  | 
  
#description -> String (readonly)
Returns The description of the welcome screen.
      1140 1141 1142  | 
    
      # File 'lib/discorb/guild.rb', line 1140 def description @description end  | 
  
#guild -> Discorb::Guild (readonly)
Returns The guild the welcome screen belongs to.
      1144 1145 1146  | 
    
      # File 'lib/discorb/guild.rb', line 1144 def guild @guild end  |