Class ContractEvent

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

public class ContractEvent extends Object
ContractEvent's original definition in the XDR file is:
 struct ContractEvent
 {
     // We can use this to add more fields, or because it
     // is first, to change ContractEvent into a union.
     ExtensionPoint ext;

     Hash* contractID;
     ContractEventType type;

     union switch (int v)
     {
     case 0:
         struct
         {
             SCVal topics<>;
             SCVal data;
         } v0;
     }
     body;
 };