Class ExistenceProofBody

java.lang.Object
org.stellar.sdk.xdr.ExistenceProofBody

public class ExistenceProofBody extends Object
ExistenceProofBody's original definition in the XDR file is:
 struct ExistenceProofBody
 {
     LedgerKey keysToProve<>;

     // Bounds for each key being proved, where bound[n]
     // corresponds to keysToProve[n]
     ColdArchiveBucketEntry lowBoundEntries<>;
     ColdArchiveBucketEntry highBoundEntries<>;

     // Vector of vectors, where proofLevels[level]
     // contains all HashNodes that correspond with that level
     ProofLevel proofLevels<>;
 };