Module tdlight.api

Class TdApi.InputMessageDocument

Enclosing class:
TdApi

public static final class TdApi.InputMessageDocument extends TdApi.InputMessageContent
A document message (general file).
  • Field Details

    • document

      public TdApi.InputFile document
      Document to be sent.
    • thumbnail

      public TdApi.InputThumbnail thumbnail
      Document thumbnail; pass null to skip thumbnail uploading.
    • disableContentTypeDetection

      public boolean disableContentTypeDetection
      If true, automatic file type detection will be disabled and the document will always be sent as file. Always true for files sent to secret chats.
    • caption

      public TdApi.FormattedText caption
      Document caption; pass null to use an empty caption; 0-getOption("message_caption_length_max") characters.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • InputMessageDocument

      public InputMessageDocument()
      A document message (general file).
    • InputMessageDocument

      public InputMessageDocument(TdApi.InputFile document, TdApi.InputThumbnail thumbnail, boolean disableContentTypeDetection, TdApi.FormattedText caption)
      A document message (general file).
      Parameters:
      document - InputFile Document to be sent.
      thumbnail - InputThumbnail Document thumbnail; pass null to skip thumbnail uploading.
      disableContentTypeDetection - boolean If true, automatic file type detection will be disabled and the document will always be sent as file. Always true for files sent to secret chats.
      caption - FormattedText Document caption; pass null to use an empty caption; 0-getOption("message_caption_length_max") characters.
    • InputMessageDocument

      public InputMessageDocument(DataInput input) throws IOException
      A document message (general file).
      Throws:
      IOException
  • Method Details