Updated on 2026-08-14

This commit is contained in:
Tangem 2025-12-04 18:46:38 +04:00
parent b210d3b7fd
commit c9804fa0ed
16 changed files with 166 additions and 51 deletions

View file

@ -72,5 +72,11 @@ sealed interface FeedbackEmailType {
val item: TangemPayTxHistoryItem,
override val walletMetaInfo: WalletMetaInfo,
) : Visa()
data class Withdrawal(
override val walletMetaInfo: WalletMetaInfo,
val providerName: String,
val txId: String,
) : Visa()
}
}