Class: Discorb::GuildTemplate::TemplateGuild::Channel
- Inherits:
-
DiscordModel
- Object
- DiscordModel
- Discorb::GuildTemplate::TemplateGuild::Channel
- Defined in:
- lib/discorb/guild_template.rb
Overview
Represents a channel in guild template.
Instance Attribute Summary collapse
-
#bitrate -> Integer
readonly
The bitrate of the channel.
-
#name -> String
readonly
The name of the channel.
-
#nsfw -> Boolean
readonly
Whether the channel is nsfw.
-
#position -> Integer
readonly
The position of the channel.
-
#rate_limit_per_user -> Integer
readonly
The rate limit of the channel.
-
#topic -> String
readonly
The type of the channel.
-
#type -> Class
readonly
The class of the channel.
-
#user_limit -> Integer
readonly
The user limit of the channel.
Method Summary
Methods inherited from DiscordModel
Instance Attribute Details
#bitrate -> Integer (readonly)
Returns The bitrate of the channel.
170 171 172 |
# File 'lib/discorb/guild_template.rb', line 170 def bitrate @bitrate end |
#name -> String (readonly)
Returns The name of the channel.
164 165 166 |
# File 'lib/discorb/guild_template.rb', line 164 def name @name end |
#nsfw -> Boolean (readonly)
Returns Whether the channel is nsfw.
174 175 176 |
# File 'lib/discorb/guild_template.rb', line 174 def nsfw @nsfw end |
#position -> Integer (readonly)
Returns The position of the channel.
166 167 168 |
# File 'lib/discorb/guild_template.rb', line 166 def position @position end |
#rate_limit_per_user -> Integer (readonly)
Returns The rate limit of the channel.
176 177 178 |
# File 'lib/discorb/guild_template.rb', line 176 def rate_limit_per_user @rate_limit_per_user end |
#topic -> String (readonly)
Returns The type of the channel.
168 169 170 |
# File 'lib/discorb/guild_template.rb', line 168 def topic @topic end |
#type -> Class (readonly)
Returns The class of the channel.
178 179 180 |
# File 'lib/discorb/guild_template.rb', line 178 def type @type end |
#user_limit -> Integer (readonly)
Returns The user limit of the channel.
172 173 174 |
# File 'lib/discorb/guild_template.rb', line 172 def user_limit @user_limit end |