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

com.payneteasy.telegram.bot.client.messages.TelegramMessageRequest Maven / Gradle / Ivy

The newest version!
package com.payneteasy.telegram.bot.client.messages;

import com.google.gson.annotations.SerializedName;
import com.payneteasy.telegram.bot.client.model.ParseMode;
import com.payneteasy.telegram.bot.client.model.replykeyboard.ReplyKeyboard;
import lombok.Data;

@Data
public class TelegramMessageRequest {

    @SerializedName("chat_id")
    private final long chatId;

    private final String text;

    @SerializedName("parse_mode")
    private final ParseMode parseMode;

    @SerializedName("reply_markup")
    private final ReplyKeyboard replyMarkup;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy