File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
src/main/java/io/cryptolens/models Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 33import com .google .gson .annotations .SerializedName ;
44
55public class DataObject {
6+ /**
7+ * The unique identifier of the data object.
8+ */
69 @ SerializedName (value = "id" , alternate = {"Id" })
710 public int Id ;
11+
12+ /**
13+ * The name of the data object (max 10 chars).
14+ */
815 @ SerializedName (value = "name" , alternate = {"Name" })
916 public String Name ;
17+
18+ /**
19+ * A string value associated with the data object (max 10,000 chars).
20+ */
1021 @ SerializedName (value = "stringValue" , alternate = {"StringValue" })
1122 public String StringValue ;
23+
24+ /**
25+ * An int32 value associated with the data object.
26+ */
1227 @ SerializedName (value = "intValue" , alternate = {"IntValue" })
1328 public int IntValue ;
1429}
You can’t perform that action at this time.
0 commit comments