Sha256: 3a04a6037681e338f3f06723bd603178b7d68a52751a2e9e5551239783274099
Contents?: true
Size: 696 Bytes
Versions: 3
Compression:
Stored size: 696 Bytes
Contents
module TD::Types # A message was edited. # Changes in the message content will come in a separate updateMessageContent. # # @attr chat_id [Integer] Chat identifier. # @attr message_id [Integer] Message identifier. # @attr edit_date [Integer] Point in time (Unix timestamp) when the message was edited. # @attr reply_markup [TD::Types::ReplyMarkup, nil] New message reply markup; may be null. class Update::MessageEdited < Update attribute :chat_id, TD::Types::Coercible::Integer attribute :message_id, TD::Types::Coercible::Integer attribute :edit_date, TD::Types::Coercible::Integer attribute :reply_markup, TD::Types::ReplyMarkup.optional.default(nil) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.4 | lib/tdlib/types/update/message_edited.rb |
tdlib-schema-1.7.0.3 | lib/tdlib/types/update/message_edited.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/update/message_edited.rb |