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

commonMain.com.bselzer.gw2.v2.model.commerce.transaction.PastTransaction.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gw2.v2.model.commerce.transaction

import kotlinx.datetime.Instant
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
data class PastTransaction(
    /**
     * The date and time the item(s) were purchased.
     */
    @SerialName("purchased")
    val purchasedAt: Instant = Instant.DISTANT_PAST
) : Transaction()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy