commonMain.com.bselzer.gw2.v2.model.item.detail.BagDetails.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of v2-model-jvm Show documentation
Show all versions of v2-model-jvm Show documentation
Guild Wars 2 API models for v2-client.
The newest version!
package com.bselzer.gw2.v2.model.item.detail
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
data class BagDetails(
@SerialName("size")
val count: Int = 0,
/**
* Whether this bag is invisible and prevents selling and sorting of its items.
*/
@SerialName("no_sell_or_sort")
val isInvisible: Boolean = false
)