Module Values.MentionSentimentSource

Contains the sentiment and sentiment score for one mention of an entity. For more information about targeted sentiment, see Targeted sentiment in the Amazon Comprehend Developer Guide.

Sourcetype nonrec t = {
  1. sentiment : SentimentType.t option;
    (*

    The sentiment of the mention.

    *)
  2. sentimentScore : SentimentScore.t option;
}
Sourceval make : ?sentiment:??? -> ?sentimentScore:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Float of Float_.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t