Skip to content

Commit

Permalink
fix(specs): support synonyms type in camel case [skip-bc] (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#4031

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Clément Vannicatte <[email protected]>
  • Loading branch information
algolia-bot and shortcuts committed Oct 28, 2024
1 parent 0d33036 commit 4a2f572
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion algoliasearch/Models/Search/SynonymType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,24 @@ public enum SynonymType
/// Enum Placeholder for value: placeholder
/// </summary>
[JsonPropertyName("placeholder")]
Placeholder = 5
Placeholder = 5,

/// <summary>
/// Enum OneWaySynonym for value: oneWaySynonym
/// </summary>
[JsonPropertyName("oneWaySynonym")]
OneWaySynonym = 6,

/// <summary>
/// Enum AltCorrection1 for value: altCorrection1
/// </summary>
[JsonPropertyName("altCorrection1")]
AltCorrection1 = 7,

/// <summary>
/// Enum AltCorrection2 for value: altCorrection2
/// </summary>
[JsonPropertyName("altCorrection2")]
AltCorrection2 = 8
}

0 comments on commit 4a2f572

Please sign in to comment.