Keyword

@JsonClass(generateAdapter = true)
data class Keyword(    val keyword: String?,     val score: Any?,     val tag: String?,     val frequency: Int?)

Models a keyword used in describing a piece of content.

Constructors

Link copied to clipboard
fun Keyword(    keyword: String?,     score: Any?,     tag: String?,     frequency: Int?)

Properties

Link copied to clipboard
val frequency: Int?

An optional count of the frequency of the keyword as it appears in the content it describes

Link copied to clipboard
val keyword: String?

The keyword used to describe a piece of content

Link copied to clipboard
val score: Any?

An arbitrary weighting to give the keyword, this is a javascript number so could be float or int

Link copied to clipboard
val tag: String?

The Part of Speech tag for this keyword.