Sha256: 92413356eedf9e45df1c8a1b5ac8d72b8d4c6d25aa8c6884c62b834c26fcf0e3
Contents?: true
Size: 560 Bytes
Versions: 1
Compression:
Stored size: 560 Bytes
Contents
module TD::Types # The information about interactions with a message has changed. # # @attr chat_id [Integer] Chat identifier. # @attr message_id [Integer] Message identifier. # @attr interaction_info [TD::Types::MessageInteractionInfo, nil] New information about interactions with the # message; may be null. class Update::MessageInteractionInfo < Update attribute :chat_id, TD::Types::Integer attribute :message_id, TD::Types::Integer attribute :interaction_info, TD::Types::MessageInteractionInfo.optional.default(nil) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/update/message_interaction_info.rb |