Looking through the Box API reference, I noticed this JSON response from GET Folder Items
{
"total_count": 24,
"entries": [
{
"type": "folder",
"id": "***number removed for privacy***",
"sequence_id": "1",
"etag": "1",
"name": "Stephen Curry Three Pointers"
},
{
"type": "file",
"id": "***number removed for privacy***",
"sequence_id": "0",
"etag": "0",
"name": "Warriors.jpg"
}
],
"offset": 0,
"limit": 2,
"order": [
{
"by": "type",
"direction": "ASC"
},
{
"by": "name",
"direction": "ASC"
}
]
}And I was wondering how I could query for the `total_count` attribute using the Box Java SDK
I've also tried using BoxFolder methods such as `getInfo(BoxFolder.ALL_FIELDS)` and searching through the BoxFolder.Info object returned.
If it's not possible, that's fine but it's not made abundantly clear how to query for this in the Box Java SDK documentation and http://opensource.box.com/box-java-sdk/.