Module Values.AttachmentOutputSource

The details of a file uploaded during chat.

Sourcetype nonrec t = {
  1. name : AttachmentName.t option;
    (*

    The name of a file uploaded during chat.

    *)
  2. status : AttachmentStatus.t option;
    (*

    The status of a file uploaded during chat.

    *)
  3. error : ErrorDetail.t option;
    (*

    An error associated with a file uploaded during chat.

    *)
  4. attachmentId : AttachmentId.t option;
    (*

    The unique identifier of the Amazon Q Business attachment.

    *)
  5. conversationId : ConversationId.t option;
    (*

    The unique identifier of the Amazon Q Business conversation.

    *)
}
Sourceval make : ?name:??? -> ?status:??? -> ?error:??? -> ?attachmentId:??? -> ?conversationId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AttachmentName.t | `Structure of (string * [> `Enum of string | `String of ErrorMessage.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