Transaction

@Serializable
data class Transaction(val amount: Int, val blockIndex: Int, val extra: String, val fee: Int, val isBase: Boolean, val paymentId: String, val state: Int, val timestamp: Int, val transactionHash: String, val transfers: List<Transfer>, val unlockTime: Int)

Represents a transaction.

Author

Marcus Cvjeticanin

Since

0.3.0

Constructors

Link copied to clipboard
constructor(amount: Int, blockIndex: Int, extra: String, fee: Int, isBase: Boolean, paymentId: String, state: Int, timestamp: Int, transactionHash: String, transfers: List<Transfer>, unlockTime: Int)

Properties

Link copied to clipboard
val amount: Int
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val fee: Int
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val state: Int
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard