KeywordsResult
public struct KeywordsResult : Codable, Equatable
The important keywords in the content, organized by relevance.
-
Number of times the keyword appears in the analyzed text.
Declaration
Swift
public var count: Int?
-
Relevance score from 0 to 1. Higher values indicate greater relevance.
Declaration
Swift
public var relevance: Double?
-
The keyword text.
Declaration
Swift
public var text: String?
-
Emotion analysis results for the keyword, enabled with the
emotion
option.Declaration
Swift
public var emotion: EmotionScores?
-
Sentiment analysis results for the keyword, enabled with the
sentiment
option.Declaration
Swift
public var sentiment: FeatureSentimentResults?