All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.telegram.telegrambots.api.objects.Venue Maven / Gradle / Ivy

There is a newer version: 0.1.1
Show newest version
package org.telegram.telegrambots.api.objects;

import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;

/**
 * 
 * @author Lev Nadeinsky
 * @author Ruben Bermudez
 * @brief This object represents a venue.
 * @date	2016-11-22
 */
@Data
@EqualsAndHashCode(callSuper=true)
@ToString(callSuper=true)
public class Venue extends ApiObject {
    Location location; ///< Venue location
    String title; ///< Name of the venue
    String address; ///< Address of the venue
    String foursquareId; ///< Optional. Foursquare identifier of the venue

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy