Class: Discorb::Message::Sticker

Inherits:
Object
  • Object
show all
Defined in:
lib/discorb/message.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) -> Sticker

Returns a new instance of Sticker.



472
473
474
475
476
# File 'lib/discorb/message.rb', line 472

def initialize(data)
  @id = Snowflake.new(data[:id])
  @name = data[:name]
  @format = Discorb::Sticker.sticker_format[data[:format]]
end

Instance Attribute Details

#format -> Object (readonly)

Returns the value of attribute format.



470
471
472
# File 'lib/discorb/message.rb', line 470

def format
  @format
end

#id -> Object (readonly)

Returns the value of attribute id.



470
471
472
# File 'lib/discorb/message.rb', line 470

def id
  @id
end

#name -> Object (readonly)

Returns the value of attribute name.



470
471
472
# File 'lib/discorb/message.rb', line 470

def name
  @name
end