Sha256: 62dd5cdf35999a8ae2f47525f09bfda2f344d3047e2b4f6baa864278d7733ce4
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
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 public_service_announcement_type [String] The type of a public service announcement for the forwarded # message. # @attr from_chat_id [Integer] For messages forwarded to the chat with the current user (Saved Messages), to the # Replies bot chat, or to the channel's discussion group, 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), to the # Replies bot chat, or to the channel's discussion group, 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 :public_service_announcement_type, TD::Types::String 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-schema-1.7.0.1 | lib/tdlib/types/message_forward_info.rb |