Sha256: a13783752d915af3f82ca57757ae74b7446bf98ac1780a925ff7aedceb718ddb
Contents?: true
Size: 998 Bytes
Versions: 1
Compression:
Stored size: 998 Bytes
Contents
module TD::Types # Contains information about a forwarded message. # # @attr origin [TD::Types::MessageForwardOrigin] Origin of a forwarded message. # @attr date [Integer] Point in time (Unix timestamp) when the message was originally sent. # @attr from_chat_id [Integer] For messages forwarded to the chat with the current user (saved messages) or to the # channel discussion supergroup, the identifier of the chat from which the message was forwarded last time; 0 if unknown. # @attr from_message_id [Integer] For messages forwarded to the chat with the current user (saved messages) or to the # channel discussion supergroup, the identifier of the original message from which the new message was forwarded last # time; 0 if unknown. class MessageForwardInfo < Base attribute :origin, TD::Types::MessageForwardOrigin attribute :date, TD::Types::Integer attribute :from_chat_id, TD::Types::Integer attribute :from_message_id, TD::Types::Integer end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-ruby-2.1.0 | lib/tdlib/types/message_forward_info.rb |