Class: Discorb::PartialEmoji
- Inherits:
-
DiscordModel
- Object
- DiscordModel
- Discorb::PartialEmoji
- Defined in:
- lib/discorb/emoji.rb
Overview
Represents a partial custom emoji in discord.
Instance Attribute Summary collapse
-
#deleted ⇒ Boolean
(also: #deleted?)
readonly
Whether the emoji is deleted.
-
#id ⇒ Discorb::Snowflake
readonly
The ID of the emoji.
-
#name ⇒ String
readonly
The name of the emoji.
Instance Method Summary collapse
- #inspect ⇒ Object
-
#to_s ⇒ String
Format the emoji for sending.
-
#to_uri ⇒ String
Format the emoji for URI.
Methods inherited from DiscordModel
Instance Attribute Details
#deleted ⇒ Boolean (readonly) Also known as: deleted?
Returns Whether the emoji is deleted.
188 189 190 |
# File 'lib/discorb/emoji.rb', line 188 def deleted @deleted end |
#id ⇒ Discorb::Snowflake (readonly)
Returns The ID of the emoji.
184 185 186 |
# File 'lib/discorb/emoji.rb', line 184 def id @id end |
#name ⇒ String (readonly)
Returns The name of the emoji.
186 187 188 |
# File 'lib/discorb/emoji.rb', line 186 def name @name end |
Instance Method Details
#inspect ⇒ Object
213 214 215 |
# File 'lib/discorb/emoji.rb', line 213 def inspect "#<#{self.class} id=#{@id} :#{@name}:>" end |
#to_s ⇒ String
Format the emoji for sending.
222 223 224 |
# File 'lib/discorb/emoji.rb', line 222 def to_s "<#{@animated ? "a" : ""}:#{@name}:#{@id}>" end |
#to_uri ⇒ String
Format the emoji for URI.
209 210 211 |
# File 'lib/discorb/emoji.rb', line 209 def to_uri "#{@name}:#{@id}" end |