diff --git a/src/Typesense/SearchParameters.cs b/src/Typesense/SearchParameters.cs
index 2c209f6..b05c631 100644
--- a/src/Typesense/SearchParameters.cs
+++ b/src/Typesense/SearchParameters.cs
@@ -269,6 +269,14 @@ public record SearchParameters
[JsonPropertyName("highlight_full_fields")]
public string? HighlightFullFields { get; set; }
+ ///
+ /// Comma separated list of fields that should be highlighted with snippetting.
+ /// Default: all queried fields will be highlighted.
+ /// Set to none to disable snippetting fully.
+ ///
+ [JsonPropertyName("highlight_fields")]
+ public string? HighlightFields { get; set; }
+
///
/// The number of tokens that should surround the highlighted text on each side.
///