Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-13 02:20:35 -07:00
parent 579b3cba32
commit f74c37a080
25 changed files with 154 additions and 40 deletions

View file

@ -165,5 +165,6 @@ data class CustomerMeResponse(
@Json(name = "card_status") val cardStatus: String,
@Json(name = "card_number_end") val cardNumberEnd: String,
@Json(name = "is_pin_set") val isPinSet: Boolean?,
@Json(name = "images") val images: List<Image>?,
)
}

View file

@ -93,6 +93,13 @@ sealed interface PaymentAccountStatusValueDM {
@Json(name = "admin_daily_limit") val adminDailyLimit: SerializedBigDecimal?,
@Json(name = "frozen_state") val frozenState: String,
@Json(name = "last_digits") val lastDigits: String,
@Json(name = "images") val images: List<ImageDM>,
@Json(name = "state") val state: String,
)
@JsonClass(generateAdapter = true)
data class ImageDM(
@Json(name = "type") val type: String,
@Json(name = "url") val url: String,
)
}