Module tdlight.api

Class TdApi.InputInlineQueryResultVoiceNote

Enclosing class:
TdApi

public static final class TdApi.InputInlineQueryResultVoiceNote extends TdApi.InputInlineQueryResult
Represents a link to an opus-encoded audio file within an OGG container, single channel audio.
  • Field Details

    • id

      public String id
      Unique identifier of the query result.
    • title

      public String title
      Title of the voice note.
    • voiceNoteUrl

      public String voiceNoteUrl
      The URL of the voice note file.
    • voiceNoteDuration

      public int voiceNoteDuration
      Duration of the voice note, in seconds.
    • replyMarkup

      public TdApi.ReplyMarkup replyMarkup
      The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null.
    • inputMessageContent

      public TdApi.InputMessageContent inputMessageContent
      The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageVoiceNote, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • InputInlineQueryResultVoiceNote

      public InputInlineQueryResultVoiceNote()
      Represents a link to an opus-encoded audio file within an OGG container, single channel audio.
    • InputInlineQueryResultVoiceNote

      public InputInlineQueryResultVoiceNote(String id, String title, String voiceNoteUrl, int voiceNoteDuration, TdApi.ReplyMarkup replyMarkup, TdApi.InputMessageContent inputMessageContent)
      Represents a link to an opus-encoded audio file within an OGG container, single channel audio.
      Parameters:
      id - String Unique identifier of the query result.
      title - String Title of the voice note.
      voiceNoteUrl - String The URL of the voice note file.
      voiceNoteDuration - int Duration of the voice note, in seconds.
      replyMarkup - ReplyMarkup The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null.
      inputMessageContent - InputMessageContent The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageVoiceNote, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact.
    • InputInlineQueryResultVoiceNote

      public InputInlineQueryResultVoiceNote(DataInput input) throws IOException
      Represents a link to an opus-encoded audio file within an OGG container, single channel audio.
      Throws:
      IOException
  • Method Details