io.github.zhyshko.core.util.UpdateWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of BotIO Show documentation
Show all versions of BotIO Show documentation
A framework for easy Telegram Bot creation
The newest version!
package io.github.zhyshko.core.util;
import io.github.zhyshko.core.session.impl.Session;
import lombok.Builder;
import lombok.Data;
import org.telegram.telegrambots.meta.api.objects.Update;
@Data
@Builder
public class UpdateWrapper {
private Long userId;
private Long chatId;
private Integer messageId;
private Integer state;
private Update update;
private String mapping;
private UpdateType updateType;
private Session session;
private Exception exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy