Skip to content

Commit f3eaaf0

Browse files
committed
fix(NaturalLanguageUnderstanding): add Model param back to CategoriesOptions
1 parent a18658a commit f3eaaf0

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Scripts/Services/NaturalLanguageUnderstanding/V1/Model/CategoriesOptions.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,13 @@ public class CategoriesOptions
3737
/// </summary>
3838
[JsonProperty("limit", NullValueHandling = NullValueHandling.Ignore)]
3939
public long? Limit { get; set; }
40-
}
40+
/// <summary>
41+
/// Enter a [custom
42+
/// model](https://cloud.ibm.com/docs/services/natural-language-understanding?topic=natural-language-understanding-customizing)
43+
/// ID to override the standard categories model
44+
/// **Deprecated** the model parameter is no longer supported by the Natural Language Understanding service and will
45+
/// be removed in the next major release
46+
/// </summary>
47+
[JsonProperty("model", NullValueHandling = NullValueHandling.Ignore)]
48+
public string Model { get; set; } }
4149
}

0 commit comments

Comments
 (0)