Package org.drinkless.tdlib
Class TdApi.InlineQueryResultLocation
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.InlineQueryResult
-
- org.drinkless.tdlib.TdApi.InlineQueryResultLocation
-
- Enclosing class:
- TdApi
public static class TdApi.InlineQueryResultLocation extends TdApi.InlineQueryResult
Represents a point on the map.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.StringidUnique identifier of the query result.TdApi.LocationlocationLocation result.TdApi.ThumbnailthumbnailResult thumbnail in JPEG format; may be null.StringtitleTitle of the result.
-
Constructor Summary
Constructors Constructor Description InlineQueryResultLocation()Represents a point on the map.InlineQueryResultLocation(String id, TdApi.Location location, String title, TdApi.Thumbnail thumbnail)Represents a point on the map.
-
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.
-
location
public TdApi.Location location
Location result.
-
title
public String title
Title of the result.
-
thumbnail
public TdApi.Thumbnail thumbnail
Result thumbnail in JPEG format; may be null.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
InlineQueryResultLocation
public InlineQueryResultLocation()
Represents a point on the map.
-
InlineQueryResultLocation
public InlineQueryResultLocation(String id, TdApi.Location location, String title, TdApi.Thumbnail thumbnail)
Represents a point on the map.- Parameters:
id- Unique identifier of the query result.location- Location result.title- Title of the result.thumbnail- Result thumbnail in JPEG format; may be null.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-