Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 793 Bytes

StickerSet.md

File metadata and controls

26 lines (20 loc) · 793 Bytes

TelegramBotOpenapi::StickerSet

Properties

Name Type Description Notes
name String Sticker set name
title String Sticker set title
sticker_type String Type of stickers in the set, currently one of "regular", "mask", "custom_emoji"
stickers Array<Sticker> List of all set stickers
thumbnail PhotoSize Optional. Sticker set thumbnail in the .WEBP, .TGS, or .WEBM format [optional]

Example

require 'telegram-bot-openapi'

instance = TelegramBotOpenapi::StickerSet.new(
  name: null,
  title: null,
  sticker_type: null,
  stickers: null,
  thumbnail: null
)