model.PredefinedLabelQuery.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tock-nlp-admin-server Show documentation
Show all versions of tock-nlp-admin-server Show documentation
Web app server for Tock NLP Admin
package ai.tock.nlp.admin.model
import java.util.Locale
data class PredefinedLabelQuery(
val entityTypeName: String,
val predefinedValue: String,
val locale: Locale,
val label: String
)