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

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/update/new_inline_callback_query.rb
tdlib-ruby-2.2.0 lib/tdlib/types/update/new_inline_callback_query.rb
tdlib-ruby-2.1.0 lib/tdlib/types/update/new_inline_callback_query.rb
tdlib-ruby-2.0.0 lib/tdlib/types/update/new_inline_callback_query.rb