All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.bselzer.gw2.v2.model.pvp.rank.PvpLevel.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gw2.v2.model.pvp.rank

import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
data class PvpLevel(
    /**
     * The minimum PvP level to be at this rank.
     */
    @SerialName("min_rank")
    val minRank: Int = 0,

    /**
     * The maximum PvP level to be at this rank.
     */
    @SerialName("max_rank")
    val maxRank: Int = 0,

    /**
     * The amount of experience required to go from the [minRank] to the [maxRank]
     */
    @SerialName("points")
    val points: Int = 0
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy