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

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

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 point on the map.
 * @date	2016-11-22
 */
@Data
@EqualsAndHashCode(callSuper=true)
@ToString(callSuper=true)
public class Location extends ApiObject {
    Double longitude; ///< Longitude as defined by sender
    Double latitude; ///< Latitude as defined by sender

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy