Standardize KT response field name to serializedResponse

This commit is contained in:
Katherine Yen
2024-11-04 17:01:11 -05:00
committed by Jon Chambers
parent 45fad7a6a9
commit bbb6d448db
3 changed files with 5 additions and 5 deletions

View File

@@ -16,5 +16,5 @@ public record KeyTransparencyDistinguishedKeyResponse(
@JsonSerialize(using = ByteArrayAdapter.Serializing.class)
@JsonDeserialize(using = ByteArrayAdapter.Deserializing.class)
@Schema(description = "The serialized `DistinguishedResponse` encoded in standard un-padded base64")
byte[] distinguishedKeyResponse
byte[] serializedResponse
) {}

View File

@@ -16,6 +16,6 @@ public record KeyTransparencyMonitorResponse(
@NotNull
@JsonSerialize(using = ByteArrayAdapter.Serializing.class)
@JsonDeserialize(using = ByteArrayAdapter.Deserializing.class)
@Schema(description = "The monitor response encoded in standard un-padded base64")
byte[] monitorResponse
@Schema(description = "The serialized `MonitorResponse` encoded in standard un-padded base64")
byte[] serializedResponse
) {}