Sha256: d596d7dab777102f7c62b0014bbd5f6d5f2dc60961eb7a0bea89d88b267f269e
Contents?: true
Size: 807 Bytes
Versions: 4
Compression:
Stored size: 807 Bytes
Contents
module TD::Types # A new incoming callback query from a message sent via a bot; for bots only. # # @attr id [Integer] Unique query identifier. # @attr sender_user_id [Integer] Identifier of the user who sent the query. # @attr inline_message_id [String] Identifier of the inline message, from which the query originated. # @attr chat_instance [Integer] An identifier uniquely corresponding to the chat a message was sent to. # @attr payload [TD::Types::CallbackQueryPayload] Query payload. class Update::NewInlineCallbackQuery < Update attribute :id, TD::Types::Integer attribute :sender_user_id, TD::Types::Integer attribute :inline_message_id, TD::Types::String attribute :chat_instance, TD::Types::Integer attribute :payload, TD::Types::CallbackQueryPayload end end
Version data entries
4 entries across 4 versions & 2 rubygems