We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e357df0 commit 465dbe3Copy full SHA for 465dbe3
1 file changed
src/main/java/com/crowdin/client/sourcestrings/model/UploadStringsProgress.java
@@ -1,5 +1,7 @@
1
package com.crowdin.client.sourcestrings.model;
2
3
+import com.crowdin.client.core.http.impl.json.EmptyArrayToNullDeserializer;
4
+import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
5
import lombok.Data;
6
7
import java.util.Date;
@@ -25,6 +27,7 @@ public static class Attributes {
25
27
private String fileType;
26
28
private Integer parserVersion;
29
private List<Long> labelIds;
30
+ @JsonDeserialize(using = EmptyArrayToNullDeserializer.class)
31
private ImportOptions importOptions;
32
}
33
0 commit comments