com.pengrad.telegrambot.model.ForumTopic 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 ForumTopic implements Serializable {
private final static long serialVersionUID = 0L;
private Integer message_thread_id;
private String name;
private Integer icon_color;
private String icon_custom_emoji_id;
public Integer messageThreadId() {
return message_thread_id;
}
public String name() {
return name;
}
public Integer iconColor() {
return icon_color;
}
public String iconCustomEmojiId() {
return icon_custom_emoji_id;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ForumTopic that = (ForumTopic) o;
return Objects.equals(message_thread_id, that.message_thread_id) &&
Objects.equals(name, that.name) &&
Objects.equals(icon_color, that.icon_color) &&
Objects.equals(icon_custom_emoji_id, that.icon_custom_emoji_id);
}
@Override
public int hashCode() {
return Objects.hash(message_thread_id,
name,
icon_color,
icon_custom_emoji_id);
}
@Override
public String toString() {
return "ForumTopic{" +
"message_thread_id=" + message_thread_id +
", name='" + name + '\'' +
", icon_color=" + icon_color +
", icon_custom_emoji_id='" + icon_custom_emoji_id + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy