Sha256: 8f56dab8f1346cbaccc3a2820c149a2b0a8c65bb4fcaa82bfd234246d9aabe65
Contents?: true
Size: 582 Bytes
Versions: 3
Compression:
Stored size: 582 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::Coercible::Integer attribute :message_id, TD::Types::Coercible::Integer attribute :interaction_info, TD::Types::MessageInteractionInfo.optional.default(nil) end end
Version data entries
3 entries across 3 versions & 1 rubygems