Sha256: 88b31ad19638b5121ddcaaa1b877e7c31e9ebf87bc40903e1e4f3579a1e12410

Contents?: true

Size: 884 Bytes

Versions: 2

Compression:

Stored size: 884 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, in which 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 & 1 rubygems

Version Path
tdlib-ruby-2.1.0 lib/tdlib/types/update/new_callback_query.rb
tdlib-ruby-2.0.0 lib/tdlib/types/update/new_callback_query.rb