Class: Discorb::PartialEmoji

Inherits:
DiscordModel show all
Defined in:
lib/discorb/emoji.rb

Overview

Represents a partial custom emoji in discord.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DiscordModel

#==, #eql?, #hash

Instance Attribute Details

#deleted -> Boolean (readonly) Also known as: deleted?

Returns Whether the emoji is deleted.

Returns:

  • (Boolean)

    Whether the emoji is deleted.



149
150
151
# File 'lib/discorb/emoji.rb', line 149

def deleted
  @deleted
end

#id -> Discorb::Snowflake (readonly)

Returns The ID of the emoji.

Returns:



145
146
147
# File 'lib/discorb/emoji.rb', line 145

def id
  @id
end

#name -> String (readonly)

Returns The name of the emoji.

Returns:

  • (String)

    The name of the emoji.



147
148
149
# File 'lib/discorb/emoji.rb', line 147

def name
  @name
end

Instance Method Details

#inspect -> Object



169
170
171
# File 'lib/discorb/emoji.rb', line 169

def inspect
  "#<#{self.class} id=#{@id} :#{@name}:>"
end

#to_s -> String

Format the emoji for sending.

Returns:

  • (String)

    the formatted emoji.



178
179
180
# File 'lib/discorb/emoji.rb', line 178

def to_s
  "<#{@animated ? "a" : ""}:#{@name}:#{@id}>"
end

#to_uri -> String

Format the emoji for URI.

Returns:

  • (String)

    the formatted emoji.



165
166
167
# File 'lib/discorb/emoji.rb', line 165

def to_uri
  "#{@name}:#{@id}"
end