Hi,
Porting my Android app from Core API v1 to v2, I wonder how to get to metadata attributes such as modified time (server_modified / client_modified), version number, etc. from Java Core API v2. I am using syntax such as below to retrieve delta. The question is how to get the above attributes from metadata, which should be available according to v2 documentation. Could you provide an example how to make such calls? Thanks in advance.
ListFolderResult result = client.files().listFolder("");
for (Metadata metadata : result.getEntries()) {
...
}