Updated on 2026-08-14

This commit is contained in:
Tangem 2019-11-18 17:51:33 +03:00
parent 44f44669b5
commit f44cd738fd

View file

@ -109,15 +109,50 @@ data class SettingsMask(val rawValue: Int) {
* Detailed information about card contents. * Detailed information about card contents.
*/ */
class CardData( class CardData(
/**
* Tangem internal manufacturing batch ID.
*/
val batchId: String?, val batchId: String?,
/**
* Timestamp of manufacturing.
*/
val manufactureDateTime: Date?, val manufactureDateTime: Date?,
/**
* Name of the issuer.
*/
val issuerName: String?, val issuerName: String?,
/**
* Name of the blockchain.
*/
val blockchainName: String?, val blockchainName: String?,
/**
* Signature of CardId with manufacturers private key.
*/
val manufacturerSignature: ByteArray?, val manufacturerSignature: ByteArray?,
/**
* Mask of products enabled on card.
*/
val productMask: ProductMask?, val productMask: ProductMask?,
/**
* Name of the token.
*/
val tokenSymbol: String?, val tokenSymbol: String?,
/**
* Smart contract address.
*/
val tokenContractAddress: String?, val tokenContractAddress: String?,
/**
* Number of decimals in token value.
*/
val tokenDecimal: Int? val tokenDecimal: Int?
) )