Module tdlight.api

Class TdApi.InputMessageAudio

Enclosing class:
TdApi

public static final class TdApi.InputMessageAudio extends TdApi.InputMessageContent
An audio message.
  • Field Details

    • audio

      public TdApi.InputFile audio
      Audio file to be sent.
    • albumCoverThumbnail

      public TdApi.InputThumbnail albumCoverThumbnail
      Thumbnail of the cover for the album; pass null to skip thumbnail uploading.
    • duration

      public int duration
      Duration of the audio, in seconds; may be replaced by the server.
    • title

      public String title
      Title of the audio; 0-64 characters; may be replaced by the server.
    • performer

      public String performer
      Performer of the audio; 0-64 characters, may be replaced by the server.
    • caption

      public TdApi.FormattedText caption
      Audio 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

    • InputMessageAudio

      public InputMessageAudio()
      An audio message.
    • InputMessageAudio

      public InputMessageAudio(TdApi.InputFile audio, TdApi.InputThumbnail albumCoverThumbnail, int duration, String title, String performer, TdApi.FormattedText caption)
      An audio message.
      Parameters:
      audio - InputFile Audio file to be sent.
      albumCoverThumbnail - InputThumbnail Thumbnail of the cover for the album; pass null to skip thumbnail uploading.
      duration - int Duration of the audio, in seconds; may be replaced by the server.
      title - String Title of the audio; 0-64 characters; may be replaced by the server.
      performer - String Performer of the audio; 0-64 characters, may be replaced by the server.
      caption - FormattedText Audio caption; pass null to use an empty caption; 0-getOption("message_caption_length_max") characters.
    • InputMessageAudio

      public InputMessageAudio(DataInput input) throws IOException
      An audio message.
      Throws:
      IOException
  • Method Details