NamedEntity

@JsonClass(generateAdapter = true)
data class NamedEntity(    val _id: String?,     val name: String?,     val type: String?,     val number: Any?)

Models a named entity (i.e. name of a person, place, or organization) used in a piece of content.

Constructors

Link copied to clipboard
fun NamedEntity(    _id: String?,     name: String?,     type: String?,     number: Any?)

Properties

Link copied to clipboard
val _id: String?

A unique identifier for the concept of the named entity.

Link copied to clipboard
val name: String?

The actual string of text that was identified as a named entity.

Link copied to clipboard
val number: Any?

An optional relevancy for this named entity. (could be int or double)

Link copied to clipboard
val type: String?

A description of what the named entity is. E.g. 'organization', 'person', or 'location'.