Funding

Funding Transaction.

Author

Jan Müller
data class Funding(value: Double,timestamp: Long) : Transaction

Constructors

<init>
Link copied to clipboard
fun <init>(value: Double, timestamp: Long)

Functions

component1
Link copied to clipboard
operator fun component1(): Double
component2
Link copied to clipboard
operator fun component2(): Long
copy
Link copied to clipboard
fun copy(value: Double, timestamp: Long): Transaction.Funding
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

timestamp
Link copied to clipboard
The timestamp of the Transaction.
open override val timestamp: Long
value
Link copied to clipboard
The value of the Transaction.
open override val value: Double