Sha256: ac8828f2706f33935425599b490d3f5a1dd5fb9f7cf109dd1a3030fba8587d9d

Contents?: true

Size: 785 Bytes

Versions: 2

Compression:

Stored size: 785 Bytes

Contents

module TD::Types
  # A forwarded message.
  #
  # @attr from_chat_id [Integer] Identifier for the chat this forwarded message came from.
  # @attr message_id [Integer] Identifier of the message to forward.
  # @attr in_game_share [Boolean] True, if a game message should be shared within a launched game; applies only to game
  #   messages.
  # @attr copy_options [TD::Types::MessageCopyOptions] Options to be used to copy content of the message without a link
  #   to the original message.
  class InputMessageContent::Forwarded < InputMessageContent
    attribute :from_chat_id, TD::Types::Coercible::Integer
    attribute :message_id, TD::Types::Coercible::Integer
    attribute :in_game_share, TD::Types::Bool
    attribute :copy_options, TD::Types::MessageCopyOptions
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.3 lib/tdlib/types/input_message_content/forwarded.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/input_message_content/forwarded.rb