I’m using Java to access the API, and am attempting to view Task data by printing it to the console. One data field in particular is the notes field. When I view Task notes in JSON through the web browser, I can see that data field and its value just fine. However, when I access that same Task through Java and print the notes to the console, it comes up as null. In fact, when debugging and viewing the object attributes, almost all of them are null except for name, id, hearted, liked, numHearts, and numLikes. Many of the other attributes have values but are showing up as null in Java.
Is this an issue with the API, or am I not quite understanding how the Java objects are supposed to work?