package org.telegram.telegrambots.meta.api.methods; /** * @author Ruben Bermudez * @version 1.0 * Type of parse modes for text in messages */ public class ParseMode { public static final String MARKDOWN = "Markdown"; public static final String MARKDOWNV2 = "MarkdownV2"; public static final String HTML = "html"; }