Class: TD::Types::StickerSet

Inherits:
Base
  • Object
show all
Defined in:
lib/tdlib/types/sticker_set.rb

Overview

Represents a sticker set.

Instance Attribute Summary collapse

Method Summary

Methods inherited from Base

#to_hash, #to_json

Instance Attribute Details

#emojisArray<TD::Types::Emojis>

A list of emojis corresponding to the stickers in the same order. The list is only for informational purposes, because a sticker is always sent with a fixed emoji from the corresponding Sticker object.

Returns:



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def emojis
  @emojis
end

#idInteger

Identifier of the sticker set.

Returns:

  • (Integer)

    the current value of id



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def id
  @id
end

#is_allowed_as_chat_emoji_statusBoolean

True, if stickers in the sticker set are custom emoji that can be used as chat emoji status; for custom emoji sticker sets only.

Returns:

  • (Boolean)

    the current value of is_allowed_as_chat_emoji_status



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def is_allowed_as_chat_emoji_status
  @is_allowed_as_chat_emoji_status
end

#is_archivedBoolean

True, if the sticker set has been archived. A sticker set can’t be installed and archived simultaneously.

Returns:

  • (Boolean)

    the current value of is_archived



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def is_archived
  @is_archived
end

#is_installedBoolean

True, if the sticker set has been installed by the current user.

Returns:

  • (Boolean)

    the current value of is_installed



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def is_installed
  @is_installed
end

#is_officialBoolean

True, if the sticker set is official.

Returns:

  • (Boolean)

    the current value of is_official



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def is_official
  @is_official
end

#is_ownedBoolean

True, if the sticker set is owned by the current user.

Returns:

  • (Boolean)

    the current value of is_owned



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def is_owned
  @is_owned
end

#is_viewedBoolean

True for already viewed trending sticker sets.

Returns:

  • (Boolean)

    the current value of is_viewed



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def is_viewed
  @is_viewed
end

#nameTD::Types::String

Name of the sticker set.

Returns:

  • (TD::Types::String)

    the current value of name



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def name
  @name
end

#needs_repaintingBoolean

True, if stickers in the sticker set are custom emoji that must be repainted; for custom emoji sticker sets only.

Returns:

  • (Boolean)

    the current value of needs_repainting



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def needs_repainting
  @needs_repainting
end

#sticker_typeTD::Types::StickerType

Type of the stickers in the set.

Returns:



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def sticker_type
  @sticker_type
end

#stickersArray<TD::Types::Sticker>

List of stickers in this set.

Returns:



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def stickers
  @stickers
end

#thumbnailTD::Types::Thumbnail?

Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null. The file can be downloaded only before the thumbnail is changed.

Returns:



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def thumbnail
  @thumbnail
end

#thumbnail_outlineArray<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.

Returns:



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def thumbnail_outline
  @thumbnail_outline
end

#titleTD::Types::String

Title of the sticker set.

Returns:

  • (TD::Types::String)

    the current value of title



28
29
30
# File 'lib/tdlib/types/sticker_set.rb', line 28

def title
  @title
end