Class LedgerCloseMetaBatch

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

public class LedgerCloseMetaBatch extends Object implements XdrElement
LedgerCloseMetaBatch's original definition in the XDR file is:
 struct LedgerCloseMetaBatch
 {
     // starting ledger sequence number in the batch
     uint32 startSequence;

     // ending ledger sequence number in the batch
     uint32 endSequence;

     // Ledger close meta for each ledger within the batch
     LedgerCloseMeta ledgerCloseMetas<>;
 };
 
  • Constructor Details

    • LedgerCloseMetaBatch

      public LedgerCloseMetaBatch()
    • LedgerCloseMetaBatch

      public LedgerCloseMetaBatch(Uint32 startSequence, Uint32 endSequence, LedgerCloseMeta[] ledgerCloseMetas)
      Creates a new LedgerCloseMetaBatch instance.
      Parameters:
      startSequence - the startSequence field value
      endSequence - the endSequence field value
      ledgerCloseMetas - the ledgerCloseMetas field value
  • Method Details