Skip to content

Commit

Permalink
fix: make field truly optional (#12)
Browse files Browse the repository at this point in the history
Co-authored-by: DominicGBauer <[email protected]>
  • Loading branch information
DominicGBauer and DominicGBauer authored Apr 9, 2024
1 parent e53b874 commit ed71eb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ data class StreamingSyncCheckpointDiff(
@SerialName("last_op_id") val lastOpId: String,
@SerialName("updated_buckets") val updatedBuckets: List<BucketChecksum>,
@SerialName("removed_buckets") val removedBuckets: List<String>,
@SerialName("write_checkpoint") val writeCheckpoint: String?
@SerialName("write_checkpoint") val writeCheckpoint: String? = null
)

0 comments on commit ed71eb5

Please sign in to comment.