Skip to content

Commit 0b4c550

Browse files
committed
Update docs for Data object
1 parent d691ea2 commit 0b4c550

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/main/java/io/cryptolens/models/DataObject.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,27 @@
33
import com.google.gson.annotations.SerializedName;
44

55
public 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
}

0 commit comments

Comments
 (0)