Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-15 17:09:47 +03:00
parent b4d11538ea
commit 454c08b894
21 changed files with 982 additions and 112 deletions

View file

@ -32,8 +32,10 @@ data class CashbackPromotionsResponse(
@JsonClass(generateAdapter = true)
data class AdditionalCashback(
@Json(name = "promotion_id") val promotionId: String?,
@Json(name = "label") val label: String?,
@Json(name = "scope") val scope: String?,
@Json(name = "id") val id: String?,
@Json(name = "name") val name: String?,
@Json(name = "description") val description: String?,
@Json(name = "is_permanent") val isPermanent: Boolean?,
@Json(name = "end_date") val endDate: String?,
)
}