Class TTLEntry

java.lang.Object
org.stellar.sdk.xdr.TTLEntry
All Implemented Interfaces:
XdrElement

public class TTLEntry extends Object implements XdrElement
TTLEntry's original definition in the XDR file is:
 struct TTLEntry {
     // Hash of the LedgerKey that is associated with this TTLEntry
     Hash keyHash;
     uint32 liveUntilLedgerSeq;
 };
 
  • Constructor Details

    • TTLEntry

      public TTLEntry()
    • TTLEntry

      public TTLEntry(Hash keyHash, Uint32 liveUntilLedgerSeq)
      Creates a new TTLEntry instance.
      Parameters:
      keyHash - the keyHash field value
      liveUntilLedgerSeq - the liveUntilLedgerSeq field value
  • Method Details