Class ArchivalProof

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

public class ArchivalProof extends Object
ArchivalProof's original definition in the XDR file is:
 struct ArchivalProof
 {
     uint32 epoch; // AST Subtree for this proof

     union switch (ArchivalProofType t)
     {
     case EXISTENCE:
         NonexistenceProofBody nonexistenceProof;
     case NONEXISTENCE:
         ExistenceProofBody existenceProof;
     } body;
 };