Sha256: 846e582d66df2af2358549ee5cc1e8b5a30a4cd3bef078f0ae58f0f24dc53149

Contents?: true

Size: 588 Bytes

Versions: 1

Compression:

Stored size: 588 Bytes

Contents

module TD::Types
  # Contains information about a message draft.
  #
  # @attr reply_to_message_id [Integer] Identifier of the message to reply to; 0 if none.
  # @attr date [Integer] Point in time (Unix timestamp) when the draft was created.
  # @attr input_message_text [TD::Types::InputMessageContent] Content of the message draft; this should always be of
  #   type inputMessageText.
  class DraftMessage < Base
    attribute :reply_to_message_id, TD::Types::Integer
    attribute :date, TD::Types::Integer
    attribute :input_message_text, TD::Types::InputMessageContent
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/draft_message.rb