Skip to content

Commit 4a2f572

Browse files
fix(specs): support synonyms type in camel case [skip-bc] (generated)
algolia/api-clients-automation#4031 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 0d33036 commit 4a2f572

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

algoliasearch/Models/Search/SynonymType.cs

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,24 @@ public enum SynonymType
4646
/// Enum Placeholder for value: placeholder
4747
/// </summary>
4848
[JsonPropertyName("placeholder")]
49-
Placeholder = 5
49+
Placeholder = 5,
50+
51+
/// <summary>
52+
/// Enum OneWaySynonym for value: oneWaySynonym
53+
/// </summary>
54+
[JsonPropertyName("oneWaySynonym")]
55+
OneWaySynonym = 6,
56+
57+
/// <summary>
58+
/// Enum AltCorrection1 for value: altCorrection1
59+
/// </summary>
60+
[JsonPropertyName("altCorrection1")]
61+
AltCorrection1 = 7,
62+
63+
/// <summary>
64+
/// Enum AltCorrection2 for value: altCorrection2
65+
/// </summary>
66+
[JsonPropertyName("altCorrection2")]
67+
AltCorrection2 = 8
5068
}
5169

0 commit comments

Comments
 (0)