com.tink.rest.models.insightdata.AmountWithCurrencyCode.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest Show documentation
Show all versions of rest Show documentation
A library for Tink core services
package com.tink.rest.models.insightdata
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
@JsonClass(generateAdapter = true)
data class AmountWithCurrencyCode(
@Json(name = "amount")
val amount: Double,
@Json(name = "currencyCode")
val currencyCode: String
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy