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.
1 parent d2faab6 commit 9579c42Copy full SHA for 9579c42
sdk/src/main/java/io/opentdf/platform/sdk/Manifest.java
@@ -2,6 +2,7 @@
2
3
import com.google.gson.annotations.SerializedName;
4
5
+import java.util.ArrayList;
6
import java.util.List;
7
8
public class Manifest {
@@ -64,5 +65,5 @@ static public class Payload {
64
65
66
public EncryptionInformation encryptionInformation;
67
public Payload payload;
- public List<Assertion> assertions;
68
+ public List<Assertion> assertions = new ArrayList<>();
69
}
0 commit comments