Class DataEntry

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

public class DataEntry extends Object implements XdrElement
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;
 };