Skip to content

Commit

Permalink
fix(specs): required prop for dictionaryEntry (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#3449

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Kai Welke <[email protected]>
Co-authored-by: Pierre Millot <[email protected]>
  • Loading branch information
3 people committed Jul 30, 2024
1 parent b317f84 commit fba53af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/algoliasearch/search/DictionaryEntry.scala
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import org.json4s.{Extraction, Formats, JField, JObject, JValue, Serializer, Typ
*/
case class DictionaryEntry(
objectID: String,
language: SupportedLanguage,
language: Option[SupportedLanguage] = scala.None,
word: Option[String] = scala.None,
words: Option[Seq[String]] = scala.None,
decomposition: Option[Seq[String]] = scala.None,
Expand Down

0 comments on commit fba53af

Please sign in to comment.