io.github.zhyshko.core.response.ResponseEntity 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.response;
import io.github.zhyshko.core.router.Route;
import lombok.Builder;
import lombok.Data;
import lombok.Singular;
import org.telegram.telegrambots.meta.api.methods.botapimethods.BotApiMethod;
import java.io.Serializable;
import java.util.List;
@Data
@Builder
public class ResponseEntity {
@Singular
private List extends BotApiMethod extends Serializable>> responses;
private Class extends Route> nextRoute;
private Exception exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy