tgbotapi/src/main/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/MessageEntity/MessageEntity.kt

11 lines
236 B
Kotlin
Raw Normal View History

2018-12-26 08:07:24 +00:00
package com.github.insanusmokrassar.TelegramBotAPI.types.MessageEntity
interface MessageEntity {
val offset: Int
val length: Int
val sourceString: String
val asMarkdownSource: String
2019-03-27 01:35:37 +00:00
val asHtmlSource: String
2018-12-26 08:07:24 +00:00
}