1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-03 00:15:27 +00:00
tgbotapi/tgbotapi.webapps/src/jsMain/kotlin/dev/inmo/tgbotapi/webapps/WebAppInitData.kt

25 lines
447 B
Kotlin
Raw Normal View History

2022-04-18 11:05:28 +00:00
package dev.inmo.tgbotapi.webapps
2022-05-04 06:58:06 +00:00
import dev.inmo.tgbotapi.types.*
2022-04-18 11:05:28 +00:00
external interface WebAppInitData {
2022-05-04 06:58:06 +00:00
@JsName("query_id")
2022-04-18 11:05:28 +00:00
val queryId: WebAppQueryId?
val user: WebAppUser?
val receiver: WebAppUser?
@JsName("start_param")
val startParam: String?
@JsName("auth_date")
val authDate: MilliSeconds
2022-06-21 10:27:53 +00:00
@JsName("can_send_after")
val canSendAfter: MilliSeconds
val chat: WebAppChat
2022-04-18 11:05:28 +00:00
val hash: String
}