Module Values.FailedAttachmentEventSource

A failed file upload during web experience chat.

Sourcetype nonrec t = {
  1. conversationId : ConversationId.t option;
    (*

    The identifier of the conversation associated with the failed file upload.

    *)
  2. userMessageId : MessageId.t option;
    (*

    The identifier of the end user chat message associated with the file upload.

    *)
  3. systemMessageId : MessageId.t option;
    (*

    The identifier of the AI-generated message associated with the file upload.

    *)
  4. attachment : AttachmentOutput.t option;
}
Sourceval make : ?conversationId:??? -> ?userMessageId:??? -> ?systemMessageId:??? -> ?attachment:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ConversationId.t | `Structure of (string * [> `Enum of string | `String of AttachmentName.t | `Structure of (string * [> `Enum of string | `String of ErrorMessage.t ]) list ]) 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