1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-18 07:45:27 +00:00

temporarily change request id main type to ushort

This commit is contained in:
InsanusMokrassar 2023-09-24 21:12:48 +06:00
parent affa2a3a57
commit 1a1fd926dd

View File

@ -7,8 +7,9 @@ import kotlin.random.Random
@Serializable
@JvmInline
value class RequestId(
val int: Int
val uShort: UShort
) {
constructor(int: Int) : this(int.toUShort())
companion object {
fun random() = RequestId(Random.nextInt())
}