com.paysera.lib.inrento.entities.transaction.PSTransaction.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-lib-inrento-sdk Show documentation
Show all versions of kotlin-lib-inrento-sdk Show documentation
Paysera: Kotlin InRento SDK Library
package com.paysera.lib.inrento.entities.transaction
import com.google.gson.annotations.SerializedName
import java.util.*
data class PSTransaction(
@SerializedName("transaction_id") val id: Int,
val date: Date,
val type: String,
val amount: String,
@SerializedName("sm_price") val secondaryMarketPrice: String? = null,
val currency: String,
val projectName: String? = null,
val projectStatus: PSProjectStatusType? = null
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy