TimeBounds

data class TimeBounds(val minTime: Long, val maxTime: Long)

TimeBounds represents the time interval that a transaction is valid.

The UNIX timestamp (in seconds), determined by ledger time, of a lower and upper bound of when this transaction will be valid. If a transaction is submitted too early or too late, it will fail to make it into the transaction set.

See also

Constructors

Link copied to clipboard
constructor(minTime: Long, maxTime: Long)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The UNIX timestamp (in seconds), 0 means no maximum

Link copied to clipboard

The UNIX timestamp (in seconds), 0 means no minimum

Functions

Link copied to clipboard

Converts this TimeBounds to its XDR representation.