Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-10 15:07:42 +03:00
parent 233d76d9f4
commit 8b49dc2f7f
17 changed files with 694 additions and 0 deletions

View file

@ -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,
)
}