Module tdlight.api

Class TdApi.Venue

java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.Venue
Enclosing class:
TdApi

public static final class TdApi.Venue extends TdApi.Object
Describes a venue.
  • Field Details

    • 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
      See Also:
  • Constructor Details

    • 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 - Location Venue location; as defined by the sender.
      title - String Venue name; as defined by the sender.
      address - String Venue address; as defined by the sender.
      provider - String Provider of the venue database; as defined by the sender. Currently, only "foursquare" and "gplaces" (Google Places) need to be supported.
      id - String Identifier of the venue in the provider database; as defined by the sender.
      type - String Type of the venue in the provider database; as defined by the sender.
    • Venue

      public Venue(DataInput input) throws IOException
      Describes a venue.
      Throws:
      IOException
  • Method Details