Sha256: d987e1f81e5b0532c74121f3a6f06f105906b6718900cb4f5c28064b056a720d
Contents?: true
Size: 401 Bytes
Versions: 4
Compression:
Stored size: 401 Bytes
Contents
module TD::Types # Provides information about a bot and its supported commands. # # @attr description [String] Long description shown on the user info page. # @attr commands [Array<TD::Types::BotCommand>] A list of commands supported by the bot. class BotInfo < Base attribute :description, TD::Types::String attribute :commands, TD::Types::Array.of(TD::Types::BotCommand) end end
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/bot_info.rb |
tdlib-ruby-2.2.0 | lib/tdlib/types/bot_info.rb |
tdlib-ruby-2.1.0 | lib/tdlib/types/bot_info.rb |
tdlib-ruby-2.0.0 | lib/tdlib/types/bot_info.rb |