Module Values_2.RealTimeContactAnalysisTranscriptItemWithCharacterOffsetsSource

Transcript representation containing Id and list of character intervals that are associated with analysis data. For example, this object within a RealTimeContactAnalysisPointOfInterest in Category.MatchedDetails would have character interval describing part of the text that matched category.

Sourcetype nonrec t = {
  1. id : RealTimeContactAnalysisId256.t option;
    (*

    Transcript identifier. Matches the identifier from one of the TranscriptSegments.

    *)
  2. characterOffsets : RealTimeContactAnalysisCharacterInterval.t option;
    (*

    List of character intervals within transcript content/text.

    *)
}
Sourceval make : ?id:??? -> ?characterOffsets:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RealTimeContactAnalysisId256.t | `Structure of (string * [> `Integer of RealTimeContactAnalysisOffset.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