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

commonMain.com.bselzer.gw2.v2.model.recipe.ingredient.CurrencyRecipeIngredient.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gw2.v2.model.recipe.ingredient

import com.bselzer.gw2.v2.model.currency.CurrencyId
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
@SerialName("Currency")
data class CurrencyRecipeIngredient(
    /**
     * The id of the currency.
     * @see the wiki
     */
    @SerialName("id")
    override val id: CurrencyId = CurrencyId(),
) : RecipeIngredient()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy