Sha256: 23fc1e51fb114854ed65068eff99614fbd6a8884b96830c7428ee7c846106085
Contents?: true
Size: 880 Bytes
Versions: 2
Compression:
Stored size: 880 Bytes
Contents
module TD::Types # A new incoming callback query; for bots only. # # @attr id [Integer] Unique query identifier. # @attr sender_user_id [Integer] Identifier of the user who sent the query. # @attr chat_id [Integer] Identifier of the chat where the query was sent. # @attr message_id [Integer] Identifier of the message, from which the query originated. # @attr chat_instance [Integer] Identifier that uniquely corresponds to the chat to which the message was sent. # @attr payload [TD::Types::CallbackQueryPayload] Query payload. class Update::NewCallbackQuery < Update attribute :id, TD::Types::Integer attribute :sender_user_id, TD::Types::Integer attribute :chat_id, TD::Types::Integer attribute :message_id, TD::Types::Integer attribute :chat_instance, TD::Types::Integer attribute :payload, TD::Types::CallbackQueryPayload end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/update/new_callback_query.rb |
tdlib-ruby-2.2.0 | lib/tdlib/types/update/new_callback_query.rb |