Class: TD::Types::StickerSetInfo

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

Overview

Represents short information about a sticker set.

Instance Attribute Summary collapse

Method Summary

Methods inherited from Base

#to_hash, #to_json

Instance Attribute Details

#coversArray<TD::Types::Sticker>

Contains up to the first 5 stickers from the set, depending on the context. If the client needs more stickers the full set should be requested.

Returns:



20
21
22
# File 'lib/tdlib/types/sticker_set_info.rb', line 20

def covers
  @covers
end

#idInteger

Identifier of the sticker set.

Returns:

  • (Integer)

    the current value of id



20
21
22
# File 'lib/tdlib/types/sticker_set_info.rb', line 20

def id
  @id
end

#is_animatedBoolean

True, is the stickers in the set are animated.

Returns:

  • (Boolean)

    the current value of is_animated



20
21
22
# File 'lib/tdlib/types/sticker_set_info.rb', line 20

def is_animated
  @is_animated
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



20
21
22
# File 'lib/tdlib/types/sticker_set_info.rb', line 20

def is_archived
  @is_archived
end

#is_installedBoolean

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

Returns:

  • (Boolean)

    the current value of is_installed



20
21
22
# File 'lib/tdlib/types/sticker_set_info.rb', line 20

def is_installed
  @is_installed
end

#is_masksBoolean

True, if the stickers in the set are masks.

Returns:

  • (Boolean)

    the current value of is_masks



20
21
22
# File 'lib/tdlib/types/sticker_set_info.rb', line 20

def is_masks
  @is_masks
end

#is_officialBoolean

True, if the sticker set is official.

Returns:

  • (Boolean)

    the current value of is_official



20
21
22
# File 'lib/tdlib/types/sticker_set_info.rb', line 20

def is_official
  @is_official
end

#is_viewedBoolean

True for already viewed trending sticker sets.

Returns:

  • (Boolean)

    the current value of is_viewed



20
21
22
# File 'lib/tdlib/types/sticker_set_info.rb', line 20

def is_viewed
  @is_viewed
end

#nameString

Name of the sticker set.

Returns:

  • (String)

    the current value of name



20
21
22
# File 'lib/tdlib/types/sticker_set_info.rb', line 20

def name
  @name
end

#sizeInteger

Total number of stickers in the set.

Returns:

  • (Integer)

    the current value of size



20
21
22
# File 'lib/tdlib/types/sticker_set_info.rb', line 20

def size
  @size
end

#thumbnailTD::Types::PhotoSize?

Sticker set thumbnail in WEBP format with width and height 100; may be null.

Returns:



20
21
22
# File 'lib/tdlib/types/sticker_set_info.rb', line 20

def thumbnail
  @thumbnail
end

#titleString

Title of the sticker set.

Returns:

  • (String)

    the current value of title



20
21
22
# File 'lib/tdlib/types/sticker_set_info.rb', line 20

def title
  @title
end