Updated on 2026-08-14
This commit is contained in:
parent
233d76d9f4
commit
8b49dc2f7f
17 changed files with 694 additions and 0 deletions
|
|
@ -0,0 +1,18 @@
|
|||
package com.tangem.domain.pay.model
|
||||
|
||||
import org.joda.time.DateTime
|
||||
import java.math.BigDecimal
|
||||
|
||||
data class TangemPayCashback(
|
||||
val confirmedAmount: BigDecimal,
|
||||
val currency: String,
|
||||
val period: Period,
|
||||
) {
|
||||
data class Period(
|
||||
val year: Int,
|
||||
/** 1-based calendar month (6 = June). */
|
||||
val month: Int,
|
||||
val payoutStart: DateTime,
|
||||
val payoutEnd: DateTime,
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue