Module Values.SearchAssociatedTranscriptsResponseSource

Search for associated transcripts that meet the specified criteria.

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

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

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

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

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

    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 option;
    (*

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

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

    A index that indicates whether there are more results to return in a response to the SearchAssociatedTranscripts operation. If the nextIndex field is present, you send the contents as the nextIndex parameter of a SearchAssociatedTranscriptsRequest operation to get the next page of results.

    *)
  6. associatedTranscripts : AssociatedTranscriptList.t option;
    (*

    The object that contains the associated transcript that meet the criteria you specified.

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

    The total number of transcripts returned by the search.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?botId:??? -> ?botVersion:??? -> ?localeId:??? -> ?botRecommendationId:??? -> ?nextIndex:??? -> ?associatedTranscripts:??? -> ?totalResults:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NextIndex.t | `List of [> `Structure of (string * [> `String of Transcript.t ]) 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