Sha256: 39b5a801d72a4f861a266ef86ae142cbc7e20b753f36c346320167446e223f7c

Contents?: true

Size: 441 Bytes

Versions: 1

Compression:

Stored size: 441 Bytes

Contents

# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class StickerSet < Base
        attribute :name, Types::String
        attribute :title, Types::String
        attribute :sticker_type, Types::String
        attribute :is_animated, Types::Bool
        attribute :is_video, Types::Bool
        attribute :stickers, Types::Array.of(Sticker)
        attribute? :thumbnail, PhotoSize
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
telegram-bot-ruby-2.0.0 lib/telegram/bot/types/sticker_set.rb