Skip to content

Commit

Permalink
fix: make field truly optional
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicGBauer committed Apr 8, 2024
1 parent e53b874 commit 0c1be0d
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 0c1be0d

Please sign in to comment.