Module Values.ConversationLogsDataSourceSource

The data source that uses conversation logs.

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

    The bot Id from the conversation logs.

    *)
  2. botAliasId : BotAliasId.t;
    (*

    The bot alias Id from the conversation logs.

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

    The locale Id of the conversation log.

    *)
  4. filter : ConversationLogsDataSourceFilterBy.t;
    (*

    The filter for the data source of the conversation log.

    *)
}
Sourceval context_ : string
Sourceval make : botId:Id.t -> botAliasId:BotAliasId.t -> localeId:LocaleId.t -> filter:ConversationLogsDataSourceFilterBy.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.t | `Structure of (string * [> `Enum of string | `Timestamp of Timestamp.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