com.pengrad.telegrambot.model.ChatShared Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-telegram-bot-api Show documentation
Show all versions of java-telegram-bot-api Show documentation
Java API for Telegram Bot API
package com.pengrad.telegrambot.model;
import java.io.Serializable;
import java.util.Objects;
public class ChatShared implements Serializable {
private final static long serialVersionUID = 0L;
private Integer request_id;
private Long chat_id;
private Integer requestId() {
return request_id;
}
private Long chatId() {
return chat_id;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ChatShared that = (ChatShared) o;
return Objects.equals(request_id, that.request_id) &&
Objects.equals(chat_id, that.chat_id);
}
@Override
public int hashCode() {
return Objects.hash(request_id,
chat_id);
}
@Override
public String toString() {
return "ChatShared{" +
"request_id='" + request_id + '\'' +
", chat_id='" + chat_id + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy