Module Values.SearchAssociatedTranscriptsRequestSource

Search for associated transcripts that meet the specified criteria.

Sourcetype nonrec t = {
  1. botId : Id.t;
    (*

    The unique identifier of the bot associated with the transcripts that you are searching.

    *)
  2. botVersion : BotVersion.t;
    (*

    The version of the bot containing the transcripts that you are searching.

    *)
  3. localeId : LocaleId.t;
    (*

    The identifier of the language and locale of the transcripts to search. The string must match one of the supported locales. For more information, see Supported languages

    *)
  4. botRecommendationId : Id.t;
    (*

    The unique identifier of the bot recommendation associated with the transcripts to search.

    *)
  5. searchOrder : SearchOrder.t option;
    (*

    How SearchResults are ordered. Valid values are Ascending or Descending. The default is Descending.

    *)
  6. filters : AssociatedTranscriptFilters.t;
    (*

    A list of filter objects.

    *)
  7. maxResults : MaxResults.t option;
    (*

    The maximum number of bot recommendations to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

    *)
  8. nextIndex : NextIndex.t option;
    (*

    If the response from the SearchAssociatedTranscriptsRequest operation contains more results than specified in the maxResults parameter, an index is returned in the response. Use that index in the nextIndex parameter to return the next page of results.

    *)
}
Sourceval context_ : string
Sourceval make : ?searchOrder:??? -> ?maxResults:??? -> ?nextIndex:??? -> botId:Id.t -> botVersion:BotVersion.t -> localeId:LocaleId.t -> botRecommendationId:Id.t -> filters:AssociatedTranscriptFilters.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of MaxResults.t | `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of FilterValue.t ] list ]) list ] list | `String of Id.t ]) 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