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

org.telegram.telegrambots.api.objects.inlinequery.inputmessagecontent.InputLocationMessageContent Maven / Gradle / Ivy

package org.telegram.telegrambots.api.objects.inlinequery.inputmessagecontent;

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

/**
 * 
 * @author Lev Nadeinsky
 * @author Ruben Bermudez
 * @brief Represents the content of a location message to be sent as the result of an inline query.
 * @note This will only work in Telegram versions released after 9 April, 2016. Older clients will
 * ignore them.
 * @date	2016-11-22
 */
@Data
@EqualsAndHashCode(callSuper=true)
@ToString(callSuper=true)
public class InputLocationMessageContent extends InputMessageContent {
    Float latitude; ///< Latitude of the location in degrees
    Float longitude; ///< Longitude of the location in degrees

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy