Module Values_2.RealTimeContactAnalysisTranscriptItemWithContentSource

Transcript representation containing Id, Content and list of character intervals that are associated with analysis data. For example, this object within an issue detected would describe both content that contains identified issue and intervals where that content is taken from.

Sourcetype nonrec t = {
  1. content : RealTimeContactAnalysisTranscriptContent.t option;
    (*

    Part of the transcript content that contains identified issue. Can be redacted

    *)
  2. id : RealTimeContactAnalysisId256.t option;
    (*

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

    *)
  3. characterOffsets : RealTimeContactAnalysisCharacterInterval.t option;
}
Sourceval make : ?content:??? -> ?id:??? -> ?characterOffsets:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RealTimeContactAnalysisTranscriptContent.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