Sha256: 85f130a102369589272fd4f745465f2bb93b6587fd95c4b76e19fc4ef39dbc8a

Contents?: true

Size: 981 Bytes

Versions: 1

Compression:

Stored size: 981 Bytes

Contents

module TD::Types
  # The message was originally written by a known user.
  #
  # @attr sender_user_id [Integer] Identifier of the user that originally sent this message.
  # @attr date [Integer] Point in time (Unix timestamp) when the message was originally sent.
  # @attr forwarded_from_chat_id [Integer] For messages forwarded to the chat with the current user (saved messages),
  #   the identifier of the chat from which the message was forwarded; 0 if unknown.
  # @attr forwarded_from_message_id [Integer] For messages forwarded to the chat with the current user (saved messages)
  #   the identifier of the original message from which the new message was forwarded; 0 if unknown.
  class MessageForwardInfo::MessageForwardedFromUser < MessageForwardInfo
    attribute :sender_user_id, TD::Types::Integer
    attribute :date, TD::Types::Integer
    attribute :forwarded_from_chat_id, TD::Types::Integer
    attribute :forwarded_from_message_id, TD::Types::Integer
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-ruby-2.0.0 lib/tdlib/types/message_forward_info/message_forwarded_from_user.rb