GuildLogTreasury

@Serializable
@SerialName(value = "treasury")
data class GuildLogTreasury(val id: Int, val time: String, val user: String? = null, val itemId: Int, val count: Int) : GuildLog

Data model for guild log objects with type "treasury"

Constructors

Link copied to clipboard
constructor(id: Int, time: String, user: String? = null, itemId: Int, count: Int)

Properties

Link copied to clipboard
val count: Int
Link copied to clipboard
open override val id: Int
Link copied to clipboard
@SerialName(value = "item_id")
val itemId: Int
Link copied to clipboard
open override val time: String
Link copied to clipboard
open override val type: String
Link copied to clipboard
open override val user: String? = null