1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-26 11:38:09 +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 @Serializable
@JvmInline @JvmInline
value class RequestId( value class RequestId(
val int: Int val uShort: UShort
) { ) {
constructor(int: Int) : this(int.toUShort())
companion object { companion object {
fun random() = RequestId(Random.nextInt()) fun random() = RequestId(Random.nextInt())
} }