From f44cd738fd92196b2f5fddd59e4f89b262d01ac6 Mon Sep 17 00:00:00 2001 From: Tangem Date: Mon, 18 Nov 2019 17:51:33 +0300 Subject: [PATCH] Updated on 2026-08-14 --- .../java/com/tangem/commands/ReadCommand.kt | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/tangem-core/src/main/java/com/tangem/commands/ReadCommand.kt b/tangem-core/src/main/java/com/tangem/commands/ReadCommand.kt index eee726622f..bbee7926b4 100644 --- a/tangem-core/src/main/java/com/tangem/commands/ReadCommand.kt +++ b/tangem-core/src/main/java/com/tangem/commands/ReadCommand.kt @@ -109,15 +109,50 @@ data class SettingsMask(val rawValue: Int) { * Detailed information about card contents. */ class CardData( + + /** + * Tangem internal manufacturing batch ID. + */ val batchId: String?, + + /** + * Timestamp of manufacturing. + */ val manufactureDateTime: Date?, + + /** + * Name of the issuer. + */ val issuerName: String?, + + /** + * Name of the blockchain. + */ val blockchainName: String?, + + /** + * Signature of CardId with manufacturer’s private key. + */ val manufacturerSignature: ByteArray?, + + /** + * Mask of products enabled on card. + */ val productMask: ProductMask?, + /** + * Name of the token. + */ val tokenSymbol: String?, + + /** + * Smart contract address. + */ val tokenContractAddress: String?, + + /** + * Number of decimals in token value. + */ val tokenDecimal: Int? )