Package org.drinkless.tdlib
Class TdApi.Venue
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Venue
-
- Enclosing class:
- TdApi
public static class TdApi.Venue extends TdApi.Object
Describes a venue.
-
-
Field Summary
Fields Modifier and Type Field Description StringaddressVenue address; as defined by the sender.static intCONSTRUCTORIdentifier uniquely determining type of the object.StringidIdentifier of the venue in the provider database; as defined by the sender.TdApi.LocationlocationVenue location; as defined by the sender.StringproviderProvider of the venue database; as defined by the sender.StringtitleVenue name; as defined by the sender.StringtypeType of the venue in the provider database; as defined by the sender.
-
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
-
location
public TdApi.Location location
Venue location; as defined by the sender.
-
title
public String title
Venue name; as defined by the sender.
-
address
public String address
Venue address; as defined by the sender.
-
provider
public String provider
Provider of the venue database; as defined by the sender. Currently, only "foursquare" and "gplaces" (Google Places) need to be supported.
-
id
public String id
Identifier of the venue in the provider database; as defined by the sender.
-
type
public String type
Type of the venue in the provider database; as defined by the sender.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Venue
public Venue()
Describes a venue.
-
Venue
public Venue(TdApi.Location location, String title, String address, String provider, String id, String type)
Describes a venue.- Parameters:
location- Venue location; as defined by the sender.title- Venue name; as defined by the sender.address- Venue address; as defined by the sender.provider- Provider of the venue database; as defined by the sender. Currently, only "foursquare" and "gplaces" (Google Places) need to be supported.id- Identifier of the venue in the provider database; as defined by the sender.type- Type of the venue in the provider database; as defined by the sender.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-