Module Values_0.TranscriptCriteriaSource

A structure that defines search criteria base on words or phrases, participants in the Contact Lens conversational analytics transcript.

Sourcetype nonrec t = {
  1. participantRole : ParticipantRole.t;
    (*

    The participant role in a transcript

    *)
  2. searchText : SearchTextList.t;
    (*

    The words or phrases used to search within a transcript.

    *)
  3. matchType : SearchContactsMatchType.t;
    (*

    The match type combining search criteria using multiple search texts in a transcript criteria.

    *)
}
Sourceval context_ : string
Sourceval make : participantRole:ParticipantRole.t -> searchText:SearchTextList.t -> matchType:SearchContactsMatchType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of SearchText.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