Updated on 2026-08-14
This commit is contained in:
parent
44f44669b5
commit
f44cd738fd
1 changed files with 35 additions and 0 deletions
|
|
@ -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 manufacturer’s 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?
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue