Skip to content

Commit 88669a9

Browse files
committed
Added the class UniqueGift describing a gift that was upgraded to a unique one.
1 parent 6d23edc commit 88669a9

File tree

1 file changed

+11
-0
lines changed
  • library/src/main/java/com/pengrad/telegrambot/model/gift/unique

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package com.pengrad.telegrambot.model.gift.unique
2+
3+
@Suppress("unused")
4+
data class UniqueGift(
5+
@get:JvmName("baseName") val baseName: String,
6+
@get:JvmName("name") val name: String,
7+
@get:JvmName("number") val number: Int,
8+
@get:JvmName("model") val model: UniqueGiftModel,
9+
@get:JvmName("symbol") val symbol: UniqueGiftSymbol,
10+
@get:JvmName("backdrop") val backdrop: UniqueGiftBackdrop
11+
)

0 commit comments

Comments
 (0)