Package org.drinkless.tdlib
Class TdApi.InputMessageAudio
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.InputMessageContent
-
- org.drinkless.tdlib.TdApi.InputMessageAudio
-
- Enclosing class:
- TdApi
public static class TdApi.InputMessageAudio extends TdApi.InputMessageContent
An audio message.
-
-
Field Summary
Fields Modifier and Type Field Description TdApi.InputThumbnailalbumCoverThumbnailThumbnail of the cover for the album; pass null to skip thumbnail uploading.TdApi.InputFileaudioAudio file to be sent.TdApi.FormattedTextcaptionAudio caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters.static intCONSTRUCTORIdentifier uniquely determining type of the object.intdurationDuration of the audio, in seconds; may be replaced by the server.StringperformerPerformer of the audio; 0-64 characters, may be replaced by the server.StringtitleTitle of the audio; 0-64 characters; may be replaced by the server.
-
Constructor Summary
Constructors Constructor Description InputMessageAudio()An audio message.InputMessageAudio(TdApi.InputFile audio, TdApi.InputThumbnail albumCoverThumbnail, int duration, String title, String performer, TdApi.FormattedText caption)An audio message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
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
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
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- Audio file to be sent.albumCoverThumbnail- Thumbnail of the cover for the album; pass null to skip thumbnail uploading.duration- Duration of the audio, in seconds; may be replaced by the server.title- Title of the audio; 0-64 characters; may be replaced by the server.performer- Performer of the audio; 0-64 characters, may be replaced by the server.caption- Audio caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-