-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(specs): dictionary entry for stopwords has type property (generated)
algolia/api-clients-automation#3456 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Kai Welke <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
- Loading branch information
1 parent
d13f700
commit 05af6cd
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
client/src/commonMain/kotlin/com/algolia/client/model/search/DictionaryEntryType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/** Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. */ | ||
package com.algolia.client.model.search | ||
|
||
import kotlinx.serialization.* | ||
|
||
/** | ||
* Whether a dictionary entry is provided by Algolia (standard), or has been added by you (custom). | ||
*/ | ||
@Serializable | ||
public enum class DictionaryEntryType(public val value: kotlin.String) { | ||
|
||
@SerialName(value = "custom") | ||
Custom("custom"), | ||
|
||
@SerialName(value = "standard") | ||
Standard("standard"); | ||
|
||
override fun toString(): kotlin.String = value | ||
} |