org.kin.sdk.design.viewmodel.structs.RenderableInvoice.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of viewmodel-tools Show documentation
Show all versions of viewmodel-tools Show documentation
Kin Android SDK View Model Tools
package org.kin.sdk.design.viewmodel.structs
import java.math.BigDecimal
import java.net.URI
data class RenderableInvoice(
val items: List,
val subTotal: BigDecimal,
val fee: BigDecimal,
val total: BigDecimal
) {
data class RenderableLineItem(
val title: String,
val description: String,
val amount: BigDecimal
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy