GuildLogStash

@Serializable
@SerialName(value = "stash")
data class GuildLogStash(val id: Int, val time: String, val user: String? = null, val operation: StashOperation, val itemId: Int, val count: Int, val coins: Int) : GuildLog

Data model for guild log objects with type "stash"

Constructors

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

Properties

Link copied to clipboard
val coins: Int
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
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