Sha256: 06b07102238948910a58b2d9d1f510e5c04b914d0541587ecaf1ba55628af1b6

Contents?: true

Size: 663 Bytes

Versions: 4

Compression:

Stored size: 663 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::Integer
    attribute :message_id, TD::Types::Integer
    attribute :edit_date, TD::Types::Integer
    attribute :reply_markup, TD::Types::ReplyMarkup.optional.default(nil)
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

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