OwnedGifts

@Serializable
data class OwnedGifts<GiftType : GiftSentOrReceived>(val totalCount: Int, val gifts: List<GiftType>, val nextOffset: String? = null)

Constructors

Link copied to clipboard
constructor(totalCount: Int, gifts: List<GiftType>, nextOffset: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "gifts")
val gifts: List<GiftType>
Link copied to clipboard
@SerialName(value = "next_offset")
val nextOffset: String? = null
Link copied to clipboard
@SerialName(value = "total_count")
val totalCount: Int