fix: correct nullability

This commit is contained in:
Stevan Freeborn
2024-07-03 13:58:44 -05:00
parent e3ba6a6287
commit fec7de2f66
@@ -50,7 +50,7 @@ public class MessageDelta
/// Gets the stop sequence.
/// </summary>
[JsonPropertyName("stop_sequence")]
public string StopSequence { get; init; } = string.Empty;
public string? StopSequence { get; init; }
[JsonConstructor]
internal MessageDelta()