Module Values.EmailOverviewChunkDataDetailsSource

Details of streaming chunk data for email overview including completion text and pagination tokens.

Sourcetype nonrec t = {
  1. completion : NonEmptySensitiveString.t option;
    (*

    The partial or complete overview text content in structured HTML format with customer issues, resolutions, and next steps.

    *)
  2. nextChunkToken : NextToken.t option;
    (*

    Token for retrieving the next chunk of streaming overview data, if available.

    *)
}
Sourceval make : ?completion:??? -> ?nextChunkToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptySensitiveString.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