Class: Discorb::Sticker::Pack

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

Overview

Represents a sticker pack.

Instance Attribute Summary collapse

Method Summary

Methods inherited from DiscordModel

#==, #eql?, #inspect

Instance Attribute Details

Returns The banner of the pack.

Returns:



130
131
132
# File 'lib/discorb/sticker.rb', line 130

def banner
  @banner
end

#cover_sticker_id -> Discorb::Snowflake (readonly)

Returns The cover sticker of the pack.

Returns:



124
125
126
# File 'lib/discorb/sticker.rb', line 124

def cover_sticker_id
  @cover_sticker_id
end

#description -> String (readonly)

Returns The description of the pack.

Returns:

  • (String)

    The description of the pack.



126
127
128
# File 'lib/discorb/sticker.rb', line 126

def description
  @description
end

#id -> Discorb::Snowflake (readonly)

Returns The ID of the sticker pack.

Returns:



120
121
122
# File 'lib/discorb/sticker.rb', line 120

def id
  @id
end

#name -> String (readonly)

Returns The name of the sticker pack.

Returns:

  • (String)

    The name of the sticker pack.



122
123
124
# File 'lib/discorb/sticker.rb', line 122

def name
  @name
end

#stickers -> Array<Discorb::Sticker> (readonly)

Returns The stickers in the pack.

Returns:



128
129
130
# File 'lib/discorb/sticker.rb', line 128

def stickers
  @stickers
end