Class: TD::Types::StickerSetInfo
- Defined in:
- lib/tdlib/types/sticker_set_info.rb
Overview
Represents short information about a sticker set.
Instance Attribute Summary collapse
-
#covers ⇒ Array<TD::Types::Sticker>
Contains up to the first 5 stickers from the set, depending on the context.
-
#id ⇒ Integer
Identifier of the sticker set.
-
#is_animated ⇒ Boolean
True, is the stickers in the set are animated.
-
#is_archived ⇒ Boolean
True, if the sticker set has been archived.
-
#is_installed ⇒ Boolean
True, if the sticker set has been installed by the current user.
-
#is_masks ⇒ Boolean
True, if the stickers in the set are masks.
-
#is_official ⇒ Boolean
True, if the sticker set is official.
-
#is_viewed ⇒ Boolean
True for already viewed trending sticker sets.
-
#name ⇒ TD::Types::String
Name of the sticker set.
-
#size ⇒ Integer
Total number of stickers in the set.
-
#thumbnail ⇒ TD::Types::Thumbnail?
Sticker set thumbnail in WEBP or TGS format with width and height 100; may be null.
-
#thumbnail_outline ⇒ Array<TD::Types::ClosedVectorPath>?
Sticker set thumbnail’s outline represented as a list of closed vector paths; may be empty.
-
#title ⇒ TD::Types::String
Title of the sticker set.
Method Summary
Methods inherited from Base
Instance Attribute Details
#covers ⇒ Array<TD::Types::Sticker>
Contains up to the first 5 stickers from the set, depending on the context. If the application needs more stickers the full set should be requested.
23 24 25 |
# File 'lib/tdlib/types/sticker_set_info.rb', line 23 def covers @covers end |
#id ⇒ Integer
Identifier of the sticker set.
23 24 25 |
# File 'lib/tdlib/types/sticker_set_info.rb', line 23 def id @id end |
#is_animated ⇒ Boolean
True, is the stickers in the set are animated.
23 24 25 |
# File 'lib/tdlib/types/sticker_set_info.rb', line 23 def is_animated @is_animated end |
#is_archived ⇒ Boolean
True, if the sticker set has been archived. A sticker set can’t be installed and archived simultaneously.
23 24 25 |
# File 'lib/tdlib/types/sticker_set_info.rb', line 23 def is_archived @is_archived end |
#is_installed ⇒ Boolean
True, if the sticker set has been installed by the current user.
23 24 25 |
# File 'lib/tdlib/types/sticker_set_info.rb', line 23 def is_installed @is_installed end |
#is_masks ⇒ Boolean
True, if the stickers in the set are masks.
23 24 25 |
# File 'lib/tdlib/types/sticker_set_info.rb', line 23 def is_masks @is_masks end |
#is_official ⇒ Boolean
True, if the sticker set is official.
23 24 25 |
# File 'lib/tdlib/types/sticker_set_info.rb', line 23 def is_official @is_official end |
#is_viewed ⇒ Boolean
True for already viewed trending sticker sets.
23 24 25 |
# File 'lib/tdlib/types/sticker_set_info.rb', line 23 def is_viewed @is_viewed end |
#name ⇒ TD::Types::String
Name of the sticker set.
23 24 25 |
# File 'lib/tdlib/types/sticker_set_info.rb', line 23 def name @name end |
#size ⇒ Integer
Total number of stickers in the set.
23 24 25 |
# File 'lib/tdlib/types/sticker_set_info.rb', line 23 def size @size end |
#thumbnail ⇒ TD::Types::Thumbnail?
Sticker set thumbnail in WEBP or TGS format with width and height 100; may be null.
23 24 25 |
# File 'lib/tdlib/types/sticker_set_info.rb', line 23 def thumbnail @thumbnail end |
#thumbnail_outline ⇒ Array<TD::Types::ClosedVectorPath>?
Sticker set thumbnail’s outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner.
23 24 25 |
# File 'lib/tdlib/types/sticker_set_info.rb', line 23 def thumbnail_outline @thumbnail_outline end |
#title ⇒ TD::Types::String
Title of the sticker set.
23 24 25 |
# File 'lib/tdlib/types/sticker_set_info.rb', line 23 def title @title end |