Class DataEntry

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

public class DataEntry extends Object
DataEntry's original definition in the XDR file is:
 struct DataEntry
 {
     AccountID accountID; // account this data belongs to
     string64 dataName;
     DataValue dataValue;

     // reserved for future use
     union switch (int v)
     {
     case 0:
         void;
     }
     ext;
 };