We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
downloadFileCount
BoxZipDownloadStatus
1 parent d25638c commit 50c2249Copy full SHA for 50c2249
src/main/java/com/box/sdk/BoxZipDownloadStatus.java
@@ -83,7 +83,7 @@ void parseJSONMember(JsonObject.Member member) {
83
String memberName = member.getName();
84
if (memberName.equals("total_file_count")) {
85
this.totalFileCount = value.asInt();
86
- } else if (memberName.equals("download_file_count")) {
+ } else if (memberName.equals("downloaded_file_count")) {
87
this.downloadFileCount = value.asInt();
88
} else if (memberName.equals("skipped_file_count")) {
89
this.skippedFileCount = value.asInt();
0 commit comments