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

org.telegram.telegrambots.meta.api.objects.ChatLocation Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;
import org.telegram.telegrambots.meta.api.interfaces.BotApiObject;

/**
 * Represents a location to which a chat is connected.
 * @author Ruben Bermudez
 * @version 5.0
 */
@SuppressWarnings("WeakerAccess")
@EqualsAndHashCode(callSuper = false)
@Getter
@Setter
@ToString
@NoArgsConstructor
@AllArgsConstructor
public class ChatLocation implements BotApiObject {

    private static final String LOCATION_FIELD = "location";
    private static final String ADDRESS_FIELD = "address";

    /**
     * The location to which the supergroup is connected
     */
    @JsonProperty(LOCATION_FIELD)
    private Location location;
    /**
     * Location address; 1-64 characters, as defined by the chat owner
     */
    @JsonProperty(ADDRESS_FIELD)
    private String address;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy