Package org.drinkless.tdlib
Class TdApi.InlineQueryResultVideo
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.InlineQueryResult
-
- org.drinkless.tdlib.TdApi.InlineQueryResultVideo
-
- Enclosing class:
- TdApi
public static class TdApi.InlineQueryResultVideo extends TdApi.InlineQueryResult
Represents a video.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.StringdescriptionDescription of the video.StringidUnique identifier of the query result.StringtitleTitle of the video.TdApi.VideovideoVideo.
-
Constructor Summary
Constructors Constructor Description InlineQueryResultVideo()Represents a video.InlineQueryResultVideo(String id, TdApi.Video video, String title, String description)Represents a video.
-
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
-
id
public String id
Unique identifier of the query result.
-
video
public TdApi.Video video
Video.
-
title
public String title
Title of the video.
-
description
public String description
Description of the video.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
InlineQueryResultVideo
public InlineQueryResultVideo()
Represents a video.
-
InlineQueryResultVideo
public InlineQueryResultVideo(String id, TdApi.Video video, String title, String description)
Represents a video.- Parameters:
id- Unique identifier of the query result.video- Video.title- Title of the video.description- Description of the video.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-