From 9adb8ab7db90bd1f9cb43968e6308c6e532868b0 Mon Sep 17 00:00:00 2001 From: Sean Trantalis Date: Sat, 9 Nov 2024 20:53:15 -0500 Subject: [PATCH] fix: incorrect isStreamable serialized name --- sdk/src/main/java/io/opentdf/platform/sdk/Manifest.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sdk/src/main/java/io/opentdf/platform/sdk/Manifest.java b/sdk/src/main/java/io/opentdf/platform/sdk/Manifest.java index aca6d1cd..03075664 100644 --- a/sdk/src/main/java/io/opentdf/platform/sdk/Manifest.java +++ b/sdk/src/main/java/io/opentdf/platform/sdk/Manifest.java @@ -31,8 +31,10 @@ import java.util.Objects; /** - * The Manifest class represents a detailed structure encapsulating various aspects - * of data integrity, encryption, payload, and assertions within a certain context. + * The Manifest class represents a detailed structure encapsulating various + * aspects + * of data integrity, encryption, payload, and assertions within a certain + * context. */ public class Manifest { @@ -203,6 +205,7 @@ public int hashCode() { static public class Method { public String algorithm; public String iv; + @SerializedName(value = "isStreamable") public Boolean IsStreamable; @Override